From cc4122b7ea7f8fed8a29bb212a8e77160999397c Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Wed, 7 Feb 2024 17:30:21 -0600 Subject: [PATCH 01/37] add new sdk --- .../azure_mgmt_cosmosdb/_configuration.py | 4 +- .../_cosmos_db_management_client.py | 26 +- .../azure_mgmt_cosmosdb/aio/_configuration.py | 4 +- .../aio/_cosmos_db_management_client.py | 26 +- .../aio/operations/__init__.py | 8 + .../_cassandra_clusters_operations.py | 387 +++++- .../_data_transfer_jobs_operations.py | 68 ++ .../_throughput_pool_account_operations.py | 503 ++++++++ .../_throughput_pool_accounts_operations.py | 147 +++ .../operations/_throughput_pool_operations.py | 714 +++++++++++ .../_throughput_pools_operations.py | 227 ++++ .../azure_mgmt_cosmosdb/models/__init__.py | 30 +- .../_cosmos_db_management_client_enums.py | 65 +- .../azure_mgmt_cosmosdb/models/_models_py3.py | 1052 ++++++++++++----- .../operations/__init__.py | 8 + .../_cassandra_clusters_operations.py | 518 +++++++- .../_cassandra_data_centers_operations.py | 10 +- .../_cassandra_resources_operations.py | 48 +- .../operations/_collection_operations.py | 6 +- .../_collection_partition_operations.py | 4 +- ..._collection_partition_region_operations.py | 2 +- .../_collection_region_operations.py | 2 +- .../_data_transfer_jobs_operations.py | 115 +- .../_database_account_region_operations.py | 2 +- .../_database_accounts_operations.py | 36 +- .../operations/_database_operations.py | 6 +- .../operations/_graph_resources_operations.py | 8 +- .../_gremlin_resources_operations.py | 34 +- .../operations/_locations_operations.py | 4 +- .../operations/_mongo_clusters_operations.py | 24 +- .../_mongo_db_resources_operations.py | 62 +- .../_notebook_workspaces_operations.py | 14 +- .../operations/_operations.py | 2 +- .../_partition_key_range_id_operations.py | 2 +- ...artition_key_range_id_region_operations.py | 2 +- .../operations/_percentile_operations.py | 2 +- .../_percentile_source_target_operations.py | 2 +- .../_percentile_target_operations.py | 2 +- ...private_endpoint_connections_operations.py | 8 +- .../_private_link_resources_operations.py | 4 +- ...restorable_database_accounts_operations.py | 6 +- ...restorable_gremlin_databases_operations.py | 2 +- .../_restorable_gremlin_graphs_operations.py | 2 +- ...restorable_gremlin_resources_operations.py | 2 +- ...storable_mongodb_collections_operations.py | 2 +- ...restorable_mongodb_databases_operations.py | 2 +- ...restorable_mongodb_resources_operations.py | 2 +- .../_restorable_sql_containers_operations.py | 2 +- .../_restorable_sql_databases_operations.py | 2 +- .../_restorable_sql_resources_operations.py | 2 +- .../_restorable_table_resources_operations.py | 2 +- .../_restorable_tables_operations.py | 2 +- .../operations/_service_operations.py | 8 +- .../operations/_sql_resources_operations.py | 92 +- .../operations/_table_resources_operations.py | 18 +- .../_throughput_pool_account_operations.py | 660 +++++++++++ .../_throughput_pool_accounts_operations.py | 189 +++ .../operations/_throughput_pool_operations.py | 872 ++++++++++++++ .../_throughput_pools_operations.py | 282 +++++ 59 files changed, 5781 insertions(+), 556 deletions(-) create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_account_operations.py create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_accounts_operations.py create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_operations.py create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pools_operations.py create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_account_operations.py create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_accounts_operations.py create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_operations.py create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pools_operations.py diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_configuration.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_configuration.py index eef70c07e43..0b8f259260a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_configuration.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_configuration.py @@ -29,14 +29,14 @@ class CosmosDBManagementClientConfiguration(Configuration): # pylint: disable=t :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: The ID of the target subscription. Required. :type subscription_id: str - :keyword api_version: Api Version. Default value is "2023-09-15-preview". Note that overriding + :keyword api_version: Api Version. Default value is "2024-02-15-preview". Note that overriding this default value may result in unsupported behavior. :paramtype api_version: str """ def __init__(self, credential: "TokenCredential", subscription_id: str, **kwargs: Any) -> None: super(CosmosDBManagementClientConfiguration, self).__init__(**kwargs) - api_version: str = kwargs.pop("api_version", "2023-09-15-preview") + api_version: str = kwargs.pop("api_version", "2024-02-15-preview") if credential is None: raise ValueError("Parameter 'credential' must not be None.") diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_cosmos_db_management_client.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_cosmos_db_management_client.py index eec6f8ca1ab..fb5a6759683 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_cosmos_db_management_client.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_cosmos_db_management_client.py @@ -56,6 +56,10 @@ ServiceOperations, SqlResourcesOperations, TableResourcesOperations, + ThroughputPoolAccountOperations, + ThroughputPoolAccountsOperations, + ThroughputPoolOperations, + ThroughputPoolsOperations, ) if TYPE_CHECKING: @@ -162,13 +166,23 @@ class CosmosDBManagementClient: # pylint: disable=client-accepts-api-version-ke azure.mgmt.cosmosdb.operations.RestorableTableResourcesOperations :ivar service: ServiceOperations operations :vartype service: azure.mgmt.cosmosdb.operations.ServiceOperations + :ivar throughput_pools: ThroughputPoolsOperations operations + :vartype throughput_pools: azure.mgmt.cosmosdb.operations.ThroughputPoolsOperations + :ivar throughput_pool: ThroughputPoolOperations operations + :vartype throughput_pool: azure.mgmt.cosmosdb.operations.ThroughputPoolOperations + :ivar throughput_pool_accounts: ThroughputPoolAccountsOperations operations + :vartype throughput_pool_accounts: + azure.mgmt.cosmosdb.operations.ThroughputPoolAccountsOperations + :ivar throughput_pool_account: ThroughputPoolAccountOperations operations + :vartype throughput_pool_account: + azure.mgmt.cosmosdb.operations.ThroughputPoolAccountOperations :param credential: Credential needed for the client to connect to Azure. Required. :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: The ID of the target subscription. Required. :type subscription_id: str :param base_url: Service URL. Default value is "https://management.azure.com". :type base_url: str - :keyword api_version: Api Version. Default value is "2023-09-15-preview". Note that overriding + :keyword api_version: Api Version. Default value is "2024-02-15-preview". Note that overriding this default value may result in unsupported behavior. :paramtype api_version: str :keyword int polling_interval: Default waiting time between two polls for LRO operations if no @@ -291,6 +305,16 @@ def __init__( self._client, self._config, self._serialize, self._deserialize ) self.service = ServiceOperations(self._client, self._config, self._serialize, self._deserialize) + self.throughput_pools = ThroughputPoolsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.throughput_pool = ThroughputPoolOperations(self._client, self._config, self._serialize, self._deserialize) + self.throughput_pool_accounts = ThroughputPoolAccountsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.throughput_pool_account = ThroughputPoolAccountOperations( + self._client, self._config, self._serialize, self._deserialize + ) def _send_request(self, request: HttpRequest, **kwargs: Any) -> HttpResponse: """Runs the network request through the client's chained policies. diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_configuration.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_configuration.py index 34c14f72606..dd43f11f446 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_configuration.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_configuration.py @@ -29,14 +29,14 @@ class CosmosDBManagementClientConfiguration(Configuration): # pylint: disable=t :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The ID of the target subscription. Required. :type subscription_id: str - :keyword api_version: Api Version. Default value is "2023-09-15-preview". Note that overriding + :keyword api_version: Api Version. Default value is "2024-02-15-preview". Note that overriding this default value may result in unsupported behavior. :paramtype api_version: str """ def __init__(self, credential: "AsyncTokenCredential", subscription_id: str, **kwargs: Any) -> None: super(CosmosDBManagementClientConfiguration, self).__init__(**kwargs) - api_version: str = kwargs.pop("api_version", "2023-09-15-preview") + api_version: str = kwargs.pop("api_version", "2024-02-15-preview") if credential is None: raise ValueError("Parameter 'credential' must not be None.") diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_cosmos_db_management_client.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_cosmos_db_management_client.py index f022f623d7e..4411fb0f067 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_cosmos_db_management_client.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_cosmos_db_management_client.py @@ -56,6 +56,10 @@ ServiceOperations, SqlResourcesOperations, TableResourcesOperations, + ThroughputPoolAccountOperations, + ThroughputPoolAccountsOperations, + ThroughputPoolOperations, + ThroughputPoolsOperations, ) if TYPE_CHECKING: @@ -165,13 +169,23 @@ class CosmosDBManagementClient: # pylint: disable=client-accepts-api-version-ke azure.mgmt.cosmosdb.aio.operations.RestorableTableResourcesOperations :ivar service: ServiceOperations operations :vartype service: azure.mgmt.cosmosdb.aio.operations.ServiceOperations + :ivar throughput_pools: ThroughputPoolsOperations operations + :vartype throughput_pools: azure.mgmt.cosmosdb.aio.operations.ThroughputPoolsOperations + :ivar throughput_pool: ThroughputPoolOperations operations + :vartype throughput_pool: azure.mgmt.cosmosdb.aio.operations.ThroughputPoolOperations + :ivar throughput_pool_accounts: ThroughputPoolAccountsOperations operations + :vartype throughput_pool_accounts: + azure.mgmt.cosmosdb.aio.operations.ThroughputPoolAccountsOperations + :ivar throughput_pool_account: ThroughputPoolAccountOperations operations + :vartype throughput_pool_account: + azure.mgmt.cosmosdb.aio.operations.ThroughputPoolAccountOperations :param credential: Credential needed for the client to connect to Azure. Required. :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The ID of the target subscription. Required. :type subscription_id: str :param base_url: Service URL. Default value is "https://management.azure.com". :type base_url: str - :keyword api_version: Api Version. Default value is "2023-09-15-preview". Note that overriding + :keyword api_version: Api Version. Default value is "2024-02-15-preview". Note that overriding this default value may result in unsupported behavior. :paramtype api_version: str :keyword int polling_interval: Default waiting time between two polls for LRO operations if no @@ -294,6 +308,16 @@ def __init__( self._client, self._config, self._serialize, self._deserialize ) self.service = ServiceOperations(self._client, self._config, self._serialize, self._deserialize) + self.throughput_pools = ThroughputPoolsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.throughput_pool = ThroughputPoolOperations(self._client, self._config, self._serialize, self._deserialize) + self.throughput_pool_accounts = ThroughputPoolAccountsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.throughput_pool_account = ThroughputPoolAccountOperations( + self._client, self._config, self._serialize, self._deserialize + ) def _send_request(self, request: HttpRequest, **kwargs: Any) -> Awaitable[AsyncHttpResponse]: """Runs the network request through the client's chained policies. diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/__init__.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/__init__.py index 1362bf5995b..f2932ba3818 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/__init__.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/__init__.py @@ -46,6 +46,10 @@ from ._restorable_tables_operations import RestorableTablesOperations from ._restorable_table_resources_operations import RestorableTableResourcesOperations from ._service_operations import ServiceOperations +from ._throughput_pools_operations import ThroughputPoolsOperations +from ._throughput_pool_operations import ThroughputPoolOperations +from ._throughput_pool_accounts_operations import ThroughputPoolAccountsOperations +from ._throughput_pool_account_operations import ThroughputPoolAccountOperations from ._patch import __all__ as _patch_all from ._patch import * # pylint: disable=unused-wildcard-import @@ -92,6 +96,10 @@ "RestorableTablesOperations", "RestorableTableResourcesOperations", "ServiceOperations", + "ThroughputPoolsOperations", + "ThroughputPoolOperations", + "ThroughputPoolAccountsOperations", + "ThroughputPoolAccountOperations", ] __all__.extend([p for p in _patch_all if p not in __all__]) _patch_sdk() diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py index 025e705037e..c7ed159ca77 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py @@ -36,11 +36,14 @@ build_deallocate_request, build_delete_request, build_get_backup_request, + build_get_command_async_request, build_get_request, + build_invoke_command_async_request, build_invoke_command_request, build_list_backups_request, build_list_by_resource_group_request, build_list_by_subscription_request, + build_list_command_request, build_start_request, build_status_request, build_update_request, @@ -50,7 +53,7 @@ ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] -class CassandraClustersOperations: +class CassandraClustersOperations: # pylint: disable=too-many-public-methods """ .. warning:: **DO NOT** instantiate this class directly. @@ -1064,6 +1067,388 @@ def get_long_running_output(pipeline_response): "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommand" } + async def _invoke_command_async_initial( + self, resource_group_name: str, cluster_name: str, body: Union[_models.CommandPostBody, IO], **kwargs: Any + ) -> Optional[_models.CommandPublicResource]: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Optional[_models.CommandPublicResource]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IOBase, bytes)): + _content = body + else: + _json = self._serialize.body(body, "CommandPostBody") + + request = build_invoke_command_async_request( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._invoke_command_async_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + response_headers = {} + if response.status_code == 200: + deserialized = self._deserialize("CommandPublicResource", pipeline_response) + + if response.status_code == 202: + response_headers["azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("azure-AsyncOperation") + ) + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + _invoke_command_async_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommandAsync" + } + + @overload + async def begin_invoke_command_async( + self, + resource_group_name: str, + cluster_name: str, + body: _models.CommandPostBody, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.CommandPublicResource]: + """Invoke a command like nodetool for cassandra maintenance asynchronously. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :param body: Specification which command to run where. Required. + :type body: ~azure.mgmt.cosmosdb.models.CommandPostBody + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either CommandPublicResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.CommandPublicResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_invoke_command_async( + self, + resource_group_name: str, + cluster_name: str, + body: IO, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.CommandPublicResource]: + """Invoke a command like nodetool for cassandra maintenance asynchronously. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :param body: Specification which command to run where. Required. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either CommandPublicResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.CommandPublicResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_invoke_command_async( + self, resource_group_name: str, cluster_name: str, body: Union[_models.CommandPostBody, IO], **kwargs: Any + ) -> AsyncLROPoller[_models.CommandPublicResource]: + """Invoke a command like nodetool for cassandra maintenance asynchronously. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :param body: Specification which command to run where. Is either a CommandPostBody type or a IO + type. Required. + :type body: ~azure.mgmt.cosmosdb.models.CommandPostBody or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either CommandPublicResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.CommandPublicResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.CommandPublicResource] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._invoke_command_async_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("CommandPublicResource", pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_invoke_command_async.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommandAsync" + } + + @distributed_trace + def list_command( + self, resource_group_name: str, cluster_name: str, **kwargs: Any + ) -> AsyncIterable["_models.CommandPublicResource"]: + """List all commands currently running on ring info. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CommandPublicResource or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.CommandPublicResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ListCommands] = kwargs.pop("cls", None) + + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + request = build_list_command_request( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_command.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListCommands", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + list_command.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/commands" + } + + @distributed_trace_async + async def get_command_async( + self, resource_group_name: str, cluster_name: str, command_id: str, **kwargs: Any + ) -> _models.ListCommands: + """Get details about a specified command that was run asynchronously. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :param command_id: Managed Cassandra cluster command id. Required. + :type command_id: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ListCommands or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.ListCommands + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ListCommands] = kwargs.pop("cls", None) + + request = build_get_command_async_request( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + command_id=command_id, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get_command_async.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ListCommands", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_command_async.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/commands/{commandId}" + } + @distributed_trace def list_backups( self, resource_group_name: str, cluster_name: str, **kwargs: Any diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_data_transfer_jobs_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_data_transfer_jobs_operations.py index 9f7c013b903..85daa00814d 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_data_transfer_jobs_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_data_transfer_jobs_operations.py @@ -31,6 +31,7 @@ from ..._vendor import _convert_request from ...operations._data_transfer_jobs_operations import ( build_cancel_request, + build_complete_request, build_create_request, build_get_request, build_list_by_database_account_request, @@ -480,6 +481,73 @@ async def cancel( "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}/cancel" } + @distributed_trace_async + async def complete( + self, resource_group_name: str, account_name: str, job_name: str, **kwargs: Any + ) -> _models.DataTransferJobGetResults: + """Completes a Data Transfer Online Job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. Required. + :type account_name: str + :param job_name: Name of the Data Transfer Job. Required. + :type job_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DataTransferJobGetResults or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.DataTransferJobGetResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.DataTransferJobGetResults] = kwargs.pop("cls", None) + + request = build_complete_request( + resource_group_name=resource_group_name, + account_name=account_name, + job_name=job_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.complete.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize("DataTransferJobGetResults", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + complete.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}/complete" + } + @distributed_trace def list_by_database_account( self, resource_group_name: str, account_name: str, **kwargs: Any diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_account_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_account_operations.py new file mode 100644 index 00000000000..94c43051d6c --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_account_operations.py @@ -0,0 +1,503 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from io import IOBase +from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload + +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._throughput_pool_account_operations import ( + build_create_request, + build_delete_request, + build_get_request, +) + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + + +class ThroughputPoolAccountOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.cosmosdb.aio.CosmosDBManagementClient`'s + :attr:`throughput_pool_account` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace_async + async def get( + self, resource_group_name: str, throughput_pool_name: str, throughput_pool_account_name: str, **kwargs: Any + ) -> _models.ThroughputPoolAccountResource: + """Retrieves the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ThroughputPoolAccountResource or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolAccountResource] = kwargs.pop("cls", None) + + request = build_get_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ThroughputPoolAccountResource", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } + + async def _create_initial( + self, + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + body: Union[_models.ThroughputPoolAccountResource, IO], + **kwargs: Any + ) -> _models.ThroughputPoolAccountResource: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolAccountResource] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IOBase, bytes)): + _content = body + else: + _json = self._serialize.body(body, "ThroughputPoolAccountResource") + + request = build_create_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._create_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize("ThroughputPoolAccountResource", pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize("ThroughputPoolAccountResource", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + _create_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } + + @overload + async def begin_create( + self, + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + body: _models.ThroughputPoolAccountResource, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolAccountResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :param body: The parameters to provide for the current ThroughputPoolAccount. Required. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolAccountResource or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_create( + self, + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + body: IO, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolAccountResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :param body: The parameters to provide for the current ThroughputPoolAccount. Required. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolAccountResource or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_create( + self, + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + body: Union[_models.ThroughputPoolAccountResource, IO], + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolAccountResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :param body: The parameters to provide for the current ThroughputPoolAccount. Is either a + ThroughputPoolAccountResource type or a IO type. Required. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolAccountResource or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolAccountResource] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._create_initial( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ThroughputPoolAccountResource", pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, + AsyncARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs), + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_create.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, resource_group_name: str, throughput_pool_name: str, throughput_pool_account_name: str, **kwargs: Any + ) -> None: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + + request = build_delete_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("azure-AsyncOperation") + ) + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + + if cls: + return cls(pipeline_response, None, response_headers) + + _delete_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } + + @distributed_trace_async + async def begin_delete( + self, resource_group_name: str, throughput_pool_name: str, throughput_pool_account_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Removes an existing Azure Cosmos DB database account from a throughput pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._delete_initial( # type: ignore + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_delete.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_accounts_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_accounts_operations.py new file mode 100644 index 00000000000..95a9210d260 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_accounts_operations.py @@ -0,0 +1,147 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar +import urllib.parse + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._throughput_pool_accounts_operations import build_list_request + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + + +class ThroughputPoolAccountsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.cosmosdb.aio.CosmosDBManagementClient`'s + :attr:`throughput_pool_accounts` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list( + self, resource_group_name: str, throughput_pool_name: str, **kwargs: Any + ) -> AsyncIterable["_models.ThroughputPoolAccountResource"]: + """Lists all the Azure Cosmos DB accounts available under the subscription. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ThroughputPoolAccountResource or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolAccountsListResult] = kwargs.pop("cls", None) + + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ThroughputPoolAccountsListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + list.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts" + } diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_operations.py new file mode 100644 index 00000000000..003eb2fedb5 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pool_operations.py @@ -0,0 +1,714 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from io import IOBase +from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload + +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._throughput_pool_operations import ( + build_create_or_update_request, + build_delete_request, + build_get_request, + build_update_request, +) + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + + +class ThroughputPoolOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.cosmosdb.aio.CosmosDBManagementClient`'s + :attr:`throughput_pool` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace_async + async def get( + self, resource_group_name: str, throughput_pool_name: str, **kwargs: Any + ) -> _models.ThroughputPoolResource: + """Retrieves the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ThroughputPoolResource or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.ThroughputPoolResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolResource] = kwargs.pop("cls", None) + + request = build_get_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + async def _create_or_update_initial( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Union[_models.ThroughputPoolResource, IO], + **kwargs: Any + ) -> _models.ThroughputPoolResource: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolResource] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IOBase, bytes)): + _content = body + else: + _json = self._serialize.body(body, "ThroughputPoolResource") + + request = build_create_or_update_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._create_or_update_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + _create_or_update_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: _models.ThroughputPoolResource, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current ThroughputPool. Required. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolResource + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: IO, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current ThroughputPool. Required. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Union[_models.ThroughputPoolResource, IO], + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current ThroughputPool. Is either a + ThroughputPoolResource type or a IO type. Required. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolResource or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolResource] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, + AsyncARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs), + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_create_or_update.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + async def _update_initial( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Optional[Union[_models.ThroughputPoolUpdate, IO]] = None, + **kwargs: Any + ) -> Optional[_models.ThroughputPoolResource]: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Optional[_models.ThroughputPoolResource]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IOBase, bytes)): + _content = body + else: + if body is not None: + _json = self._serialize.body(body, "ThroughputPoolUpdate") + else: + _json = None + + request = build_update_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._update_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + response_headers = {} + if response.status_code == 200: + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + + if response.status_code == 202: + response_headers["azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("azure-AsyncOperation") + ) + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + _update_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + @overload + async def begin_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Optional[_models.ThroughputPoolUpdate] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolResource]: + """Updates the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current Throughput Pool. Default value is None. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolUpdate + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Optional[IO] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolResource]: + """Updates the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current Throughput Pool. Default value is None. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Optional[Union[_models.ThroughputPoolUpdate, IO]] = None, + **kwargs: Any + ) -> AsyncLROPoller[_models.ThroughputPoolResource]: + """Updates the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current Throughput Pool. Is either a + ThroughputPoolUpdate type or a IO type. Default value is None. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolUpdate or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ThroughputPoolResource or the result + of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolResource] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._update_initial( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, + AsyncARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs), + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_update.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, resource_group_name: str, throughput_pool_name: str, **kwargs: Any + ) -> None: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + + request = build_delete_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("azure-AsyncOperation") + ) + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + + if cls: + return cls(pipeline_response, None, response_headers) + + _delete_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + @distributed_trace_async + async def begin_delete( + self, resource_group_name: str, throughput_pool_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._delete_initial( # type: ignore + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_delete.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pools_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pools_operations.py new file mode 100644 index 00000000000..7b2cfde4181 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_throughput_pools_operations.py @@ -0,0 +1,227 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar +import urllib.parse + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._throughput_pools_operations import build_list_by_resource_group_request, build_list_request + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + + +class ThroughputPoolsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.cosmosdb.aio.CosmosDBManagementClient`'s + :attr:`throughput_pools` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list(self, **kwargs: Any) -> AsyncIterable["_models.ThroughputPoolResource"]: + """Lists all the Azure Cosmos DB Throughput Pools available under the subscription. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ThroughputPoolResource or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolsListResult] = kwargs.pop("cls", None) + + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ThroughputPoolsListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + list.metadata = {"url": "/subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/throughputPools"} + + @distributed_trace + def list_by_resource_group( + self, resource_group_name: str, **kwargs: Any + ) -> AsyncIterable["_models.ThroughputPoolResource"]: + """List all the ThroughputPools in a given resource group. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ThroughputPoolResource or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolsListResult] = kwargs.pop("cls", None) + + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + request = build_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ThroughputPoolsListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + list_by_resource_group.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools" + } diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/__init__.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/__init__.py index ca16f8e33dc..8cec42d1aab 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/__init__.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/__init__.py @@ -64,7 +64,9 @@ from ._models_py3 import Column from ._models_py3 import CommandOutput from ._models_py3 import CommandPostBody +from ._models_py3 import CommandPublicResource from ._models_py3 import CompositePath +from ._models_py3 import ComputedProperty from ._models_py3 import ConflictResolutionPolicy from ._models_py3 import ConnectionError from ._models_py3 import ConnectionString @@ -140,6 +142,7 @@ from ._models_py3 import KeyWrapMetadata from ._models_py3 import ListBackups from ._models_py3 import ListClusters +from ._models_py3 import ListCommands from ._models_py3 import ListConnectionStringsResult from ._models_py3 import ListDataCenters from ._models_py3 import Location @@ -321,6 +324,12 @@ from ._models_py3 import TableListResult from ._models_py3 import TableResource from ._models_py3 import ThroughputPolicyResource +from ._models_py3 import ThroughputPoolAccountCreateParameters +from ._models_py3 import ThroughputPoolAccountResource +from ._models_py3 import ThroughputPoolAccountsListResult +from ._models_py3 import ThroughputPoolResource +from ._models_py3 import ThroughputPoolUpdate +from ._models_py3 import ThroughputPoolsListResult from ._models_py3 import ThroughputSettingsGetPropertiesResource from ._models_py3 import ThroughputSettingsGetResults from ._models_py3 import ThroughputSettingsResource @@ -335,12 +344,15 @@ from ._cosmos_db_management_client_enums import AnalyticalStorageSchemaType from ._cosmos_db_management_client_enums import ApiType from ._cosmos_db_management_client_enums import AuthenticationMethod +from ._cosmos_db_management_client_enums import AutoReplicate +from ._cosmos_db_management_client_enums import AzureConnectionType from ._cosmos_db_management_client_enums import BackupPolicyMigrationStatus from ._cosmos_db_management_client_enums import BackupPolicyType from ._cosmos_db_management_client_enums import BackupState from ._cosmos_db_management_client_enums import BackupStorageRedundancy from ._cosmos_db_management_client_enums import CheckNameAvailabilityReason from ._cosmos_db_management_client_enums import ClusterType +from ._cosmos_db_management_client_enums import CommandStatus from ._cosmos_db_management_client_enums import CompositePathSortOrder from ._cosmos_db_management_client_enums import ConflictResolutionMode from ._cosmos_db_management_client_enums import ConnectionState @@ -348,8 +360,8 @@ from ._cosmos_db_management_client_enums import ContinuousTier from ._cosmos_db_management_client_enums import CreateMode from ._cosmos_db_management_client_enums import CreatedByType -from ._cosmos_db_management_client_enums import CustomerManagedKeyStatus from ._cosmos_db_management_client_enums import DataTransferComponent +from ._cosmos_db_management_client_enums import DataTransferJobMode from ._cosmos_db_management_client_enums import DataType from ._cosmos_db_management_client_enums import DatabaseAccountKind from ._cosmos_db_management_client_enums import DefaultConsistencyLevel @@ -377,6 +389,7 @@ from ._cosmos_db_management_client_enums import ResourceIdentityType from ._cosmos_db_management_client_enums import RestoreMode from ._cosmos_db_management_client_enums import RoleDefinitionType +from ._cosmos_db_management_client_enums import ScheduledEventStrategy from ._cosmos_db_management_client_enums import ServerVersion from ._cosmos_db_management_client_enums import ServiceSize from ._cosmos_db_management_client_enums import ServiceStatus @@ -451,7 +464,9 @@ "Column", "CommandOutput", "CommandPostBody", + "CommandPublicResource", "CompositePath", + "ComputedProperty", "ConflictResolutionPolicy", "ConnectionError", "ConnectionString", @@ -527,6 +542,7 @@ "KeyWrapMetadata", "ListBackups", "ListClusters", + "ListCommands", "ListConnectionStringsResult", "ListDataCenters", "Location", @@ -708,6 +724,12 @@ "TableListResult", "TableResource", "ThroughputPolicyResource", + "ThroughputPoolAccountCreateParameters", + "ThroughputPoolAccountResource", + "ThroughputPoolAccountsListResult", + "ThroughputPoolResource", + "ThroughputPoolUpdate", + "ThroughputPoolsListResult", "ThroughputSettingsGetPropertiesResource", "ThroughputSettingsGetResults", "ThroughputSettingsResource", @@ -721,12 +743,15 @@ "AnalyticalStorageSchemaType", "ApiType", "AuthenticationMethod", + "AutoReplicate", + "AzureConnectionType", "BackupPolicyMigrationStatus", "BackupPolicyType", "BackupState", "BackupStorageRedundancy", "CheckNameAvailabilityReason", "ClusterType", + "CommandStatus", "CompositePathSortOrder", "ConflictResolutionMode", "ConnectionState", @@ -734,8 +759,8 @@ "ContinuousTier", "CreateMode", "CreatedByType", - "CustomerManagedKeyStatus", "DataTransferComponent", + "DataTransferJobMode", "DataType", "DatabaseAccountKind", "DefaultConsistencyLevel", @@ -763,6 +788,7 @@ "ResourceIdentityType", "RestoreMode", "RoleDefinitionType", + "ScheduledEventStrategy", "ServerVersion", "ServiceSize", "ServiceStatus", diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_cosmos_db_management_client_enums.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_cosmos_db_management_client_enums.py index 4e35f3f8fbf..5ce1705d1c4 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_cosmos_db_management_client_enums.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_cosmos_db_management_client_enums.py @@ -39,6 +39,21 @@ class AuthenticationMethod(str, Enum, metaclass=CaseInsensitiveEnumMeta): LDAP = "Ldap" +class AutoReplicate(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The form of AutoReplicate that is being used by this cluster.""" + + NONE = "None" + SYSTEM_KEYSPACES = "SystemKeyspaces" + ALL_KEYSPACES = "AllKeyspaces" + + +class AzureConnectionType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """How to connect to the azure services needed for running the cluster.""" + + NONE = "None" + VPN = "VPN" + + class BackupPolicyMigrationStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta): """Describes the status of migration between backup policy types.""" @@ -86,6 +101,17 @@ class ClusterType(str, Enum, metaclass=CaseInsensitiveEnumMeta): NON_PRODUCTION = "NonProduction" +class CommandStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Status of the command.""" + + DONE = "Done" + RUNNING = "Running" + ENQUEUE = "Enqueue" + PROCESSING = "Processing" + FINISHED = "Finished" + FAILED = "Failed" + + class CompositePathSortOrder(str, Enum, metaclass=CaseInsensitiveEnumMeta): """Sort order for composite paths.""" @@ -141,26 +167,6 @@ class CreateMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): POINT_IN_TIME_RESTORE = "PointInTimeRestore" -class CustomerManagedKeyStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """Indicates the status of the Customer Managed Key feature on the account. In case there are - errors, the property provides troubleshooting guidance. - """ - - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_AZURE_COSMOS_DB_SERVICE_IS_UNABLE_TO_OBTAIN_THE_AAD_AUTHENTICATION_TOKEN_FOR_THE_ACCOUNT_S_DEFAULT_IDENTITY_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE_AZURE_ACTIVE_DIRECTORY_TOKEN_ACQUISITION_ERROR4000_ = "Access to your account is currently revoked because the Azure Cosmos DB service is unable to obtain the AAD authentication token for the account's default identity; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-active-directory-token-acquisition-error (4000)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_AZURE_COSMOS_DB_ACCOUNT_S_KEY_VAULT_KEY_URI_DOES_NOT_FOLLOW_THE_EXPECTED_FORMAT_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE_IMPROPER_SYNTAX_DETECTED_ON_THE_KEY_VAULT_URI_PROPERTY4006_ = "Access to your account is currently revoked because the Azure Cosmos DB account's key vault key URI does not follow the expected format; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#improper-syntax-detected-on-the-key-vault-uri-property (4006)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_CURRENT_DEFAULT_IDENTITY_NO_LONGER_HAS_PERMISSION_TO_THE_ASSOCIATED_KEY_VAULT_KEY_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE_DEFAULT_IDENTITY_IS_UNAUTHORIZED_TO_ACCESS_THE_AZURE_KEY_VAULT_KEY4002_ = "Access to your account is currently revoked because the current default identity no longer has permission to the associated Key Vault key; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#default-identity-is-unauthorized-to-access-the-azure-key-vault-key (4002)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_AZURE_KEY_VAULT_DNS_NAME_SPECIFIED_BY_THE_ACCOUNT_S_KEYVAULTKEYURI_PROPERTY_COULD_NOT_BE_RESOLVED_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE_UNABLE_TO_RESOLVE_THE_KEY_VAULTS_DNS4009_ = "Access to your account is currently revoked because the Azure Key Vault DNS name specified by the account's keyvaultkeyuri property could not be resolved; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#unable-to-resolve-the-key-vaults-dns (4009)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_CORRESPONDENT_KEY_IS_NOT_FOUND_ON_THE_SPECIFIED_KEY_VAULT_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE_AZURE_KEY_VAULT_RESOURCE_NOT_FOUND4003_ = "Access to your account is currently revoked because the correspondent key is not found on the specified Key Vault; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found (4003)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_AZURE_COSMOS_DB_SERVICE_IS_UNABLE_TO_WRAP_OR_UNWRAP_THE_KEY_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE_INTERNAL_UNWRAPPING_PROCEDURE_ERROR4005_ = "Access to your account is currently revoked because the Azure Cosmos DB service is unable to wrap or unwrap the key; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#internal-unwrapping-procedure-error (4005)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_AZURE_COSMOS_DB_ACCOUNT_HAS_AN_UNDEFINED_DEFAULT_IDENTITY_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE_INVALID_AZURE_COSMOS_DB_DEFAULT_IDENTITY4015_ = "Access to your account is currently revoked because the Azure Cosmos DB account has an undefined default identity; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#invalid-azure-cosmos-db-default-identity (4015)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_ACCESS_RULES_ARE_BLOCKING_OUTBOUND_REQUESTS_TO_THE_AZURE_KEY_VAULT_SERVICE_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE4016_ = "Access to your account is currently revoked because the access rules are blocking outbound requests to the Azure Key Vault service; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide (4016)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_BECAUSE_THE_CORRESPONDENT_AZURE_KEY_VAULT_WAS_NOT_FOUND_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE_AZURE_KEY_VAULT_RESOURCE_NOT_FOUND4017_ = "Access to your account is currently revoked because the correspondent Azure Key Vault was not found; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found (4017)." - ACCESS_TO_YOUR_ACCOUNT_IS_CURRENTLY_REVOKED_FOR_MORE_DETAILS_ABOUT_THIS_ERROR_AND_HOW_TO_RESTORE_ACCESS_TO_YOUR_ACCOUNT_PLEASE_VISIT_HTTPS_LEARN_MICROSOFT_COM_EN_US_AZURE_COSMOS_DB_CMK_TROUBLESHOOTING_GUIDE = "Access to your account is currently revoked; for more details about this error and how to restore access to your account please visit https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide" - ACCESS_TO_THE_CONFIGURED_CUSTOMER_MANAGED_KEY_CONFIRMED_ = ( - "Access to the configured customer managed key confirmed." - ) - - class DatabaseAccountKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): """Indicates the type of database account. This can only be set at database account creation.""" @@ -178,6 +184,13 @@ class DataTransferComponent(str, Enum, metaclass=CaseInsensitiveEnumMeta): AZURE_BLOB_STORAGE = "AzureBlobStorage" +class DataTransferJobMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Mode of job execution.""" + + OFFLINE = "Offline" + ONLINE = "Online" + + class DataType(str, Enum, metaclass=CaseInsensitiveEnumMeta): """The datatype for which the indexing behavior is applied to.""" @@ -406,6 +419,14 @@ class RoleDefinitionType(str, Enum, metaclass=CaseInsensitiveEnumMeta): CUSTOM_ROLE = "CustomRole" +class ScheduledEventStrategy(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """How the nodes in the cluster react to scheduled events.""" + + IGNORE = "Ignore" + STOP_ANY = "StopAny" + STOP_BY_RACK = "StopByRack" + + class ServerVersion(str, Enum, metaclass=CaseInsensitiveEnumMeta): """Describes the ServerVersion of an a MongoDB account.""" @@ -460,6 +481,10 @@ class Status(str, Enum, metaclass=CaseInsensitiveEnumMeta): INTERNALLY_READY = "InternallyReady" ONLINE = "Online" DELETING = "Deleting" + SUCCEEDED = "Succeeded" + FAILED = "Failed" + CANCELED = "Canceled" + UPDATING = "Updating" class ThroughputPolicyType(str, Enum, metaclass=CaseInsensitiveEnumMeta): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models_py3.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models_py3.py index b6a13b9cba3..3fd8a456857 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models_py3.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models_py3.py @@ -8,13 +8,20 @@ # -------------------------------------------------------------------------- import datetime +import sys from typing import Any, Dict, List, Optional, TYPE_CHECKING, Union from .. import _serialization +if sys.version_info >= (3, 9): + from collections.abc import MutableMapping +else: + from typing import MutableMapping # type: ignore # pylint: disable=ungrouped-imports + if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports from .. import models as _models +JSON = MutableMapping[str, Any] # pylint: disable=unsubscriptable-object class AccountKeyMetadata(_serialization.Model): @@ -367,8 +374,7 @@ class DataTransferDataSourceSink(_serialization.Model): """Base class for all DataTransfer source/sink. You probably want to use the sub-classes and not this class directly. Known sub-classes are: - AzureBlobDataTransferDataSourceSink, CosmosCassandraDataTransferDataSourceSink, - CosmosMongoDataTransferDataSourceSink, CosmosSqlDataTransferDataSourceSink + AzureBlobDataTransferDataSourceSink, BaseCosmosDataTransferDataSourceSink All required parameters must be populated in order to send to Azure. @@ -388,9 +394,7 @@ class DataTransferDataSourceSink(_serialization.Model): _subtype_map = { "component": { "AzureBlobStorage": "AzureBlobDataTransferDataSourceSink", - "CosmosDBCassandra": "CosmosCassandraDataTransferDataSourceSink", - "CosmosDBMongo": "CosmosMongoDataTransferDataSourceSink", - "CosmosDBSql": "CosmosSqlDataTransferDataSourceSink", + "BaseCosmosDataTransferDataSourceSink": "BaseCosmosDataTransferDataSourceSink", } } @@ -640,23 +644,46 @@ def __init__( self.retention_in_hours = retention_in_hours -class BaseCosmosDataTransferDataSourceSink(_serialization.Model): +class BaseCosmosDataTransferDataSourceSink(DataTransferDataSourceSink): """A base CosmosDB data source/sink. + You probably want to use the sub-classes and not this class directly. Known sub-classes are: + CosmosCassandraDataTransferDataSourceSink, CosmosMongoDataTransferDataSourceSink, + CosmosSqlDataTransferDataSourceSink + + All required parameters must be populated in order to send to Azure. + + :ivar component: Known values are: "CosmosDBCassandra", "CosmosDBMongo", "CosmosDBSql", and + "AzureBlobStorage". + :vartype component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent :ivar remote_account_name: :vartype remote_account_name: str """ + _validation = { + "component": {"required": True}, + } + _attribute_map = { + "component": {"key": "component", "type": "str"}, "remote_account_name": {"key": "remoteAccountName", "type": "str"}, } + _subtype_map = { + "component": { + "CosmosDBCassandra": "CosmosCassandraDataTransferDataSourceSink", + "CosmosDBMongo": "CosmosMongoDataTransferDataSourceSink", + "CosmosDBSql": "CosmosSqlDataTransferDataSourceSink", + } + } + def __init__(self, *, remote_account_name: Optional[str] = None, **kwargs: Any) -> None: """ :keyword remote_account_name: :paramtype remote_account_name: str """ super().__init__(**kwargs) + self.component: str = "BaseCosmosDataTransferDataSourceSink" self.remote_account_name = remote_account_name @@ -2672,6 +2699,9 @@ class ClusterResourceProperties(_serialization.Model): # pylint: disable=too-ma and should stay true unless you are running a hybrid cluster where you are already doing your own repairs. :vartype repair_enabled: bool + :ivar auto_replicate: The form of AutoReplicate that is being used by this cluster. Known + values are: "None", "SystemKeyspaces", and "AllKeyspaces". + :vartype auto_replicate: str or ~azure.mgmt.cosmosdb.models.AutoReplicate :ivar client_certificates: List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not @@ -2692,6 +2722,9 @@ class ClusterResourceProperties(_serialization.Model): # pylint: disable=too-ma :ivar seed_nodes: List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes. :vartype seed_nodes: list[~azure.mgmt.cosmosdb.models.SeedNode] + :ivar external_data_centers: List of the data center names for unmanaged data centers in this + cluster to be included in auto-replication. + :vartype external_data_centers: list[str] :ivar hours_between_backups: (Deprecated) Number of hours to wait between taking a backup of the cluster. :vartype hours_between_backups: int @@ -2709,11 +2742,21 @@ class ClusterResourceProperties(_serialization.Model): # pylint: disable=too-ma :ivar backup_schedules: List of backup schedules that define when you want to back up your data. :vartype backup_schedules: list[~azure.mgmt.cosmosdb.models.BackupSchedule] + :ivar scheduled_event_strategy: How the nodes in the cluster react to scheduled events. Known + values are: "Ignore", "StopAny", and "StopByRack". + :vartype scheduled_event_strategy: str or ~azure.mgmt.cosmosdb.models.ScheduledEventStrategy + :ivar azure_connection_method: How to connect to the azure services needed for running the + cluster. Known values are: "None" and "VPN". + :vartype azure_connection_method: str or ~azure.mgmt.cosmosdb.models.AzureConnectionType + :ivar private_link_resource_id: If the Connection Method is Vpn, this is the Id of the private + link resource that the datacenters need to connect to. + :vartype private_link_resource_id: str """ _validation = { "gossip_certificates": {"readonly": True}, "seed_nodes": {"readonly": True}, + "private_link_resource_id": {"readonly": True}, } _attribute_map = { @@ -2726,11 +2769,13 @@ class ClusterResourceProperties(_serialization.Model): # pylint: disable=too-ma "initial_cassandra_admin_password": {"key": "initialCassandraAdminPassword", "type": "str"}, "prometheus_endpoint": {"key": "prometheusEndpoint", "type": "SeedNode"}, "repair_enabled": {"key": "repairEnabled", "type": "bool"}, + "auto_replicate": {"key": "autoReplicate", "type": "str"}, "client_certificates": {"key": "clientCertificates", "type": "[Certificate]"}, "external_gossip_certificates": {"key": "externalGossipCertificates", "type": "[Certificate]"}, "gossip_certificates": {"key": "gossipCertificates", "type": "[Certificate]"}, "external_seed_nodes": {"key": "externalSeedNodes", "type": "[SeedNode]"}, "seed_nodes": {"key": "seedNodes", "type": "[SeedNode]"}, + "external_data_centers": {"key": "externalDataCenters", "type": "[str]"}, "hours_between_backups": {"key": "hoursBetweenBackups", "type": "int"}, "deallocated": {"key": "deallocated", "type": "bool"}, "cassandra_audit_logging_enabled": {"key": "cassandraAuditLoggingEnabled", "type": "bool"}, @@ -2738,9 +2783,12 @@ class ClusterResourceProperties(_serialization.Model): # pylint: disable=too-ma "provision_error": {"key": "provisionError", "type": "CassandraError"}, "extensions": {"key": "extensions", "type": "[str]"}, "backup_schedules": {"key": "backupSchedules", "type": "[BackupSchedule]"}, + "scheduled_event_strategy": {"key": "scheduledEventStrategy", "type": "str"}, + "azure_connection_method": {"key": "azureConnectionMethod", "type": "str"}, + "private_link_resource_id": {"key": "privateLinkResourceId", "type": "str"}, } - def __init__( + def __init__( # pylint: disable=too-many-locals self, *, provisioning_state: Optional[Union[str, "_models.ManagedCassandraProvisioningState"]] = None, @@ -2752,9 +2800,11 @@ def __init__( initial_cassandra_admin_password: Optional[str] = None, prometheus_endpoint: Optional["_models.SeedNode"] = None, repair_enabled: Optional[bool] = None, + auto_replicate: Optional[Union[str, "_models.AutoReplicate"]] = None, client_certificates: Optional[List["_models.Certificate"]] = None, external_gossip_certificates: Optional[List["_models.Certificate"]] = None, external_seed_nodes: Optional[List["_models.SeedNode"]] = None, + external_data_centers: Optional[List[str]] = None, hours_between_backups: Optional[int] = None, deallocated: Optional[bool] = None, cassandra_audit_logging_enabled: Optional[bool] = None, @@ -2762,6 +2812,8 @@ def __init__( provision_error: Optional["_models.CassandraError"] = None, extensions: Optional[List[str]] = None, backup_schedules: Optional[List["_models.BackupSchedule"]] = None, + scheduled_event_strategy: Optional[Union[str, "_models.ScheduledEventStrategy"]] = None, + azure_connection_method: Optional[Union[str, "_models.AzureConnectionType"]] = None, **kwargs: Any ) -> None: """ @@ -2801,6 +2853,9 @@ def __init__( true, and should stay true unless you are running a hybrid cluster where you are already doing your own repairs. :paramtype repair_enabled: bool + :keyword auto_replicate: The form of AutoReplicate that is being used by this cluster. Known + values are: "None", "SystemKeyspaces", and "AllKeyspaces". + :paramtype auto_replicate: str or ~azure.mgmt.cosmosdb.models.AutoReplicate :keyword client_certificates: List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not @@ -2814,6 +2869,9 @@ def __init__( :keyword external_seed_nodes: List of IP addresses of seed nodes in unmanaged data centers. These will be added to the seed node lists of all managed nodes. :paramtype external_seed_nodes: list[~azure.mgmt.cosmosdb.models.SeedNode] + :keyword external_data_centers: List of the data center names for unmanaged data centers in + this cluster to be included in auto-replication. + :paramtype external_data_centers: list[str] :keyword hours_between_backups: (Deprecated) Number of hours to wait between taking a backup of the cluster. :paramtype hours_between_backups: int @@ -2831,6 +2889,12 @@ def __init__( :keyword backup_schedules: List of backup schedules that define when you want to back up your data. :paramtype backup_schedules: list[~azure.mgmt.cosmosdb.models.BackupSchedule] + :keyword scheduled_event_strategy: How the nodes in the cluster react to scheduled events. + Known values are: "Ignore", "StopAny", and "StopByRack". + :paramtype scheduled_event_strategy: str or ~azure.mgmt.cosmosdb.models.ScheduledEventStrategy + :keyword azure_connection_method: How to connect to the azure services needed for running the + cluster. Known values are: "None" and "VPN". + :paramtype azure_connection_method: str or ~azure.mgmt.cosmosdb.models.AzureConnectionType """ super().__init__(**kwargs) self.provisioning_state = provisioning_state @@ -2842,11 +2906,13 @@ def __init__( self.initial_cassandra_admin_password = initial_cassandra_admin_password self.prometheus_endpoint = prometheus_endpoint self.repair_enabled = repair_enabled + self.auto_replicate = auto_replicate self.client_certificates = client_certificates self.external_gossip_certificates = external_gossip_certificates self.gossip_certificates = None self.external_seed_nodes = external_seed_nodes self.seed_nodes = None + self.external_data_centers = external_data_centers self.hours_between_backups = hours_between_backups self.deallocated = deallocated self.cassandra_audit_logging_enabled = cassandra_audit_logging_enabled @@ -2854,6 +2920,9 @@ def __init__( self.provision_error = provision_error self.extensions = extensions self.backup_schedules = backup_schedules + self.scheduled_event_strategy = scheduled_event_strategy + self.azure_connection_method = azure_connection_method + self.private_link_resource_id = None class Column(_serialization.Model): @@ -2910,15 +2979,15 @@ class CommandPostBody(_serialization.Model): :ivar command: The command which should be run. Required. :vartype command: str :ivar arguments: The arguments for the command to be run. - :vartype arguments: dict[str, str] + :vartype arguments: JSON :ivar host: IP address of the cassandra host to run the command on. Required. :vartype host: str :ivar cassandra_stop_start: If true, stops cassandra before executing the command and then start it again. :vartype cassandra_stop_start: bool - :ivar readwrite: If true, allows the command to *write* to the cassandra directory, otherwise + :ivar read_write: If true, allows the command to *write* to the cassandra directory, otherwise read-only. - :vartype readwrite: bool + :vartype read_write: bool """ _validation = { @@ -2928,10 +2997,10 @@ class CommandPostBody(_serialization.Model): _attribute_map = { "command": {"key": "command", "type": "str"}, - "arguments": {"key": "arguments", "type": "{str}"}, + "arguments": {"key": "arguments", "type": "object"}, "host": {"key": "host", "type": "str"}, "cassandra_stop_start": {"key": "cassandra-stop-start", "type": "bool"}, - "readwrite": {"key": "readwrite", "type": "bool"}, + "read_write": {"key": "readWrite", "type": "bool"}, } def __init__( @@ -2939,31 +3008,125 @@ def __init__( *, command: str, host: str, - arguments: Optional[Dict[str, str]] = None, + arguments: Optional[JSON] = None, cassandra_stop_start: Optional[bool] = None, - readwrite: Optional[bool] = None, + read_write: Optional[bool] = None, **kwargs: Any ) -> None: """ :keyword command: The command which should be run. Required. :paramtype command: str :keyword arguments: The arguments for the command to be run. - :paramtype arguments: dict[str, str] + :paramtype arguments: JSON :keyword host: IP address of the cassandra host to run the command on. Required. :paramtype host: str :keyword cassandra_stop_start: If true, stops cassandra before executing the command and then start it again. :paramtype cassandra_stop_start: bool - :keyword readwrite: If true, allows the command to *write* to the cassandra directory, + :keyword read_write: If true, allows the command to *write* to the cassandra directory, + otherwise read-only. + :paramtype read_write: bool + """ + super().__init__(**kwargs) + self.command = command + self.arguments = arguments + self.host = host + self.cassandra_stop_start = cassandra_stop_start + self.read_write = read_write + + +class CommandPublicResource(_serialization.Model): + """resource representing a command. + + :ivar command: The command which should be run. + :vartype command: str + :ivar command_id: The unique id of command. + :vartype command_id: str + :ivar arguments: The arguments for the command to be run. + :vartype arguments: JSON + :ivar host: IP address of the cassandra host to run the command on. + :vartype host: str + :ivar is_admin: Whether command has admin privileges. + :vartype is_admin: bool + :ivar cassandra_stop_start: If true, stops cassandra before executing the command and then + start it again. + :vartype cassandra_stop_start: bool + :ivar read_write: If true, allows the command to *write* to the cassandra directory, otherwise + read-only. + :vartype read_write: bool + :ivar result: Result output of the command. + :vartype result: str + :ivar status: Status of the command. Known values are: "Done", "Running", "Enqueue", + "Processing", "Finished", and "Failed". + :vartype status: str or ~azure.mgmt.cosmosdb.models.CommandStatus + :ivar output_file: The name of the file where the result is written. + :vartype output_file: str + """ + + _attribute_map = { + "command": {"key": "command", "type": "str"}, + "command_id": {"key": "commandId", "type": "str"}, + "arguments": {"key": "arguments", "type": "object"}, + "host": {"key": "host", "type": "str"}, + "is_admin": {"key": "isAdmin", "type": "bool"}, + "cassandra_stop_start": {"key": "cassandraStopStart", "type": "bool"}, + "read_write": {"key": "readWrite", "type": "bool"}, + "result": {"key": "result", "type": "str"}, + "status": {"key": "status", "type": "str"}, + "output_file": {"key": "outputFile", "type": "str"}, + } + + def __init__( + self, + *, + command: Optional[str] = None, + command_id: Optional[str] = None, + arguments: Optional[JSON] = None, + host: Optional[str] = None, + is_admin: Optional[bool] = None, + cassandra_stop_start: Optional[bool] = None, + read_write: Optional[bool] = None, + result: Optional[str] = None, + status: Optional[Union[str, "_models.CommandStatus"]] = None, + output_file: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword command: The command which should be run. + :paramtype command: str + :keyword command_id: The unique id of command. + :paramtype command_id: str + :keyword arguments: The arguments for the command to be run. + :paramtype arguments: JSON + :keyword host: IP address of the cassandra host to run the command on. + :paramtype host: str + :keyword is_admin: Whether command has admin privileges. + :paramtype is_admin: bool + :keyword cassandra_stop_start: If true, stops cassandra before executing the command and then + start it again. + :paramtype cassandra_stop_start: bool + :keyword read_write: If true, allows the command to *write* to the cassandra directory, otherwise read-only. - :paramtype readwrite: bool + :paramtype read_write: bool + :keyword result: Result output of the command. + :paramtype result: str + :keyword status: Status of the command. Known values are: "Done", "Running", "Enqueue", + "Processing", "Finished", and "Failed". + :paramtype status: str or ~azure.mgmt.cosmosdb.models.CommandStatus + :keyword output_file: The name of the file where the result is written. + :paramtype output_file: str """ super().__init__(**kwargs) self.command = command + self.command_id = command_id self.arguments = arguments self.host = host + self.is_admin = is_admin self.cassandra_stop_start = cassandra_stop_start - self.readwrite = readwrite + self.read_write = read_write + self.result = result + self.status = status + self.output_file = output_file class CompositePath(_serialization.Model): @@ -3000,6 +3163,34 @@ def __init__( self.order = order +class ComputedProperty(_serialization.Model): + """The definition of a computed property. + + :ivar name: The name of a computed property, for example - "cp_lowerName". + :vartype name: str + :ivar query: The query that evaluates the value for computed property, for example - "SELECT + VALUE LOWER(c.name) FROM c". + :vartype query: str + """ + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "query": {"key": "query", "type": "str"}, + } + + def __init__(self, *, name: Optional[str] = None, query: Optional[str] = None, **kwargs: Any) -> None: + """ + :keyword name: The name of a computed property, for example - "cp_lowerName". + :paramtype name: str + :keyword query: The query that evaluates the value for computed property, for example - "SELECT + VALUE LOWER(c.name) FROM c". + :paramtype query: str + """ + super().__init__(**kwargs) + self.name = name + self.query = query + + class ConflictResolutionPolicy(_serialization.Model): """The conflict resolution policy for the container. @@ -3421,16 +3612,16 @@ def __init__( self.max_age_in_seconds = max_age_in_seconds -class CosmosCassandraDataTransferDataSourceSink(DataTransferDataSourceSink, BaseCosmosDataTransferDataSourceSink): +class CosmosCassandraDataTransferDataSourceSink(BaseCosmosDataTransferDataSourceSink): """A CosmosDB Cassandra API data source/sink. All required parameters must be populated in order to send to Azure. - :ivar remote_account_name: - :vartype remote_account_name: str :ivar component: Known values are: "CosmosDBCassandra", "CosmosDBMongo", "CosmosDBSql", and "AzureBlobStorage". :vartype component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + :ivar remote_account_name: + :vartype remote_account_name: str :ivar keyspace_name: Required. :vartype keyspace_name: str :ivar table_name: Required. @@ -3444,8 +3635,8 @@ class CosmosCassandraDataTransferDataSourceSink(DataTransferDataSourceSink, Base } _attribute_map = { - "remote_account_name": {"key": "remoteAccountName", "type": "str"}, "component": {"key": "component", "type": "str"}, + "remote_account_name": {"key": "remoteAccountName", "type": "str"}, "keyspace_name": {"key": "keyspaceName", "type": "str"}, "table_name": {"key": "tableName", "type": "str"}, } @@ -3462,22 +3653,21 @@ def __init__( :paramtype table_name: str """ super().__init__(remote_account_name=remote_account_name, **kwargs) - self.remote_account_name = remote_account_name self.component: str = "CosmosDBCassandra" self.keyspace_name = keyspace_name self.table_name = table_name -class CosmosMongoDataTransferDataSourceSink(DataTransferDataSourceSink, BaseCosmosDataTransferDataSourceSink): +class CosmosMongoDataTransferDataSourceSink(BaseCosmosDataTransferDataSourceSink): """A CosmosDB Mongo API data source/sink. All required parameters must be populated in order to send to Azure. - :ivar remote_account_name: - :vartype remote_account_name: str :ivar component: Known values are: "CosmosDBCassandra", "CosmosDBMongo", "CosmosDBSql", and "AzureBlobStorage". :vartype component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + :ivar remote_account_name: + :vartype remote_account_name: str :ivar database_name: Required. :vartype database_name: str :ivar collection_name: Required. @@ -3491,8 +3681,8 @@ class CosmosMongoDataTransferDataSourceSink(DataTransferDataSourceSink, BaseCosm } _attribute_map = { - "remote_account_name": {"key": "remoteAccountName", "type": "str"}, "component": {"key": "component", "type": "str"}, + "remote_account_name": {"key": "remoteAccountName", "type": "str"}, "database_name": {"key": "databaseName", "type": "str"}, "collection_name": {"key": "collectionName", "type": "str"}, } @@ -3509,22 +3699,21 @@ def __init__( :paramtype collection_name: str """ super().__init__(remote_account_name=remote_account_name, **kwargs) - self.remote_account_name = remote_account_name self.component: str = "CosmosDBMongo" self.database_name = database_name self.collection_name = collection_name -class CosmosSqlDataTransferDataSourceSink(DataTransferDataSourceSink, BaseCosmosDataTransferDataSourceSink): +class CosmosSqlDataTransferDataSourceSink(BaseCosmosDataTransferDataSourceSink): """A CosmosDB No Sql API data source/sink. All required parameters must be populated in order to send to Azure. - :ivar remote_account_name: - :vartype remote_account_name: str :ivar component: Known values are: "CosmosDBCassandra", "CosmosDBMongo", "CosmosDBSql", and "AzureBlobStorage". :vartype component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + :ivar remote_account_name: + :vartype remote_account_name: str :ivar database_name: Required. :vartype database_name: str :ivar container_name: Required. @@ -3538,8 +3727,8 @@ class CosmosSqlDataTransferDataSourceSink(DataTransferDataSourceSink, BaseCosmos } _attribute_map = { - "remote_account_name": {"key": "remoteAccountName", "type": "str"}, "component": {"key": "component", "type": "str"}, + "remote_account_name": {"key": "remoteAccountName", "type": "str"}, "database_name": {"key": "databaseName", "type": "str"}, "container_name": {"key": "containerName", "type": "str"}, } @@ -3556,7 +3745,6 @@ def __init__( :paramtype container_name: str """ super().__init__(remote_account_name=remote_account_name, **kwargs) - self.remote_account_name = remote_account_name self.component: str = "CosmosDBSql" self.database_name = database_name self.container_name = container_name @@ -3798,54 +3986,17 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): # pylint: d "Tls11", and "Tls12". :vartype minimal_tls_version: str or ~azure.mgmt.cosmosdb.models.MinimalTlsVersion :ivar customer_managed_key_status: Indicates the status of the Customer Managed Key feature on - the account. In case there are errors, the property provides troubleshooting guidance. Known - values are: "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to obtain the AAD authentication token for the account's default identity; for more - details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-active-directory-token-acquisition-error - (4000).", "Access to your account is currently revoked because the Azure Cosmos DB account's - key vault key URI does not follow the expected format; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#improper-syntax-detected-on-the-key-vault-uri-property - (4006).", "Access to your account is currently revoked because the current default identity no - longer has permission to the associated Key Vault key; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#default-identity-is-unauthorized-to-access-the-azure-key-vault-key - (4002).", "Access to your account is currently revoked because the Azure Key Vault DNS name - specified by the account's keyvaultkeyuri property could not be resolved; for more details - about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#unable-to-resolve-the-key-vaults-dns - (4009).", "Access to your account is currently revoked because the correspondent key is not - found on the specified Key Vault; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4003).", "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to wrap or unwrap the key; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#internal-unwrapping-procedure-error - (4005).", "Access to your account is currently revoked because the Azure Cosmos DB account has - an undefined default identity; for more details about this error and how to restore access to - your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#invalid-azure-cosmos-db-default-identity - (4015).", "Access to your account is currently revoked because the access rules are blocking - outbound requests to the Azure Key Vault service; for more details about this error and how to - restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide (4016).", "Access - to your account is currently revoked because the correspondent Azure Key Vault was not found; - for more details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4017).", "Access to your account is currently revoked; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide", and "Access to - the configured customer managed key confirmed.". - :vartype customer_managed_key_status: str or - ~azure.mgmt.cosmosdb.models.CustomerManagedKeyStatus + the account. In case there are errors, the property provides troubleshooting guidance. + :vartype customer_managed_key_status: str :ivar enable_priority_based_execution: Flag to indicate enabling/disabling of Priority Based Execution Preview feature on the account. :vartype enable_priority_based_execution: bool :ivar default_priority_level: Enum to indicate default Priority Level of request for Priority Based Execution. Known values are: "High" and "Low". :vartype default_priority_level: str or ~azure.mgmt.cosmosdb.models.DefaultPriorityLevel + :ivar enable_per_region_per_partition_autoscale: Flag to indicate enabling/disabling of + Per-Region Per-partition autoscale Preview feature on the account. + :vartype enable_per_region_per_partition_autoscale: bool """ _validation = { @@ -3907,6 +4058,10 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): # pylint: d "customer_managed_key_status": {"key": "properties.customerManagedKeyStatus", "type": "str"}, "enable_priority_based_execution": {"key": "properties.enablePriorityBasedExecution", "type": "bool"}, "default_priority_level": {"key": "properties.defaultPriorityLevel", "type": "str"}, + "enable_per_region_per_partition_autoscale": { + "key": "properties.enablePerRegionPerPartitionAutoscale", + "type": "bool", + }, } database_account_offer_type = "Standard" @@ -3949,9 +4104,10 @@ def __init__( # pylint: disable=too-many-locals enable_partition_merge: Optional[bool] = None, enable_burst_capacity: Optional[bool] = None, minimal_tls_version: Optional[Union[str, "_models.MinimalTlsVersion"]] = None, - customer_managed_key_status: Optional[Union[str, "_models.CustomerManagedKeyStatus"]] = None, + customer_managed_key_status: Optional[str] = None, enable_priority_based_execution: Optional[bool] = None, default_priority_level: Optional[Union[str, "_models.DefaultPriorityLevel"]] = None, + enable_per_region_per_partition_autoscale: Optional[bool] = None, **kwargs: Any ) -> None: """ @@ -4056,54 +4212,17 @@ def __init__( # pylint: disable=too-many-locals "Tls", "Tls11", and "Tls12". :paramtype minimal_tls_version: str or ~azure.mgmt.cosmosdb.models.MinimalTlsVersion :keyword customer_managed_key_status: Indicates the status of the Customer Managed Key feature - on the account. In case there are errors, the property provides troubleshooting guidance. Known - values are: "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to obtain the AAD authentication token for the account's default identity; for more - details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-active-directory-token-acquisition-error - (4000).", "Access to your account is currently revoked because the Azure Cosmos DB account's - key vault key URI does not follow the expected format; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#improper-syntax-detected-on-the-key-vault-uri-property - (4006).", "Access to your account is currently revoked because the current default identity no - longer has permission to the associated Key Vault key; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#default-identity-is-unauthorized-to-access-the-azure-key-vault-key - (4002).", "Access to your account is currently revoked because the Azure Key Vault DNS name - specified by the account's keyvaultkeyuri property could not be resolved; for more details - about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#unable-to-resolve-the-key-vaults-dns - (4009).", "Access to your account is currently revoked because the correspondent key is not - found on the specified Key Vault; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4003).", "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to wrap or unwrap the key; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#internal-unwrapping-procedure-error - (4005).", "Access to your account is currently revoked because the Azure Cosmos DB account has - an undefined default identity; for more details about this error and how to restore access to - your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#invalid-azure-cosmos-db-default-identity - (4015).", "Access to your account is currently revoked because the access rules are blocking - outbound requests to the Azure Key Vault service; for more details about this error and how to - restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide (4016).", "Access - to your account is currently revoked because the correspondent Azure Key Vault was not found; - for more details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4017).", "Access to your account is currently revoked; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide", and "Access to - the configured customer managed key confirmed.". - :paramtype customer_managed_key_status: str or - ~azure.mgmt.cosmosdb.models.CustomerManagedKeyStatus + on the account. In case there are errors, the property provides troubleshooting guidance. + :paramtype customer_managed_key_status: str :keyword enable_priority_based_execution: Flag to indicate enabling/disabling of Priority Based Execution Preview feature on the account. :paramtype enable_priority_based_execution: bool :keyword default_priority_level: Enum to indicate default Priority Level of request for Priority Based Execution. Known values are: "High" and "Low". :paramtype default_priority_level: str or ~azure.mgmt.cosmosdb.models.DefaultPriorityLevel + :keyword enable_per_region_per_partition_autoscale: Flag to indicate enabling/disabling of + Per-Region Per-partition autoscale Preview feature on the account. + :paramtype enable_per_region_per_partition_autoscale: bool """ super().__init__(location=location, tags=tags, identity=identity, **kwargs) self.kind = kind @@ -4142,6 +4261,7 @@ def __init__( # pylint: disable=too-many-locals self.customer_managed_key_status = customer_managed_key_status self.enable_priority_based_execution = enable_priority_based_execution self.default_priority_level = default_priority_level + self.enable_per_region_per_partition_autoscale = enable_per_region_per_partition_autoscale class DatabaseAccountGetResults(ARMResourceProperties): # pylint: disable=too-many-instance-attributes @@ -4286,54 +4406,17 @@ class DatabaseAccountGetResults(ARMResourceProperties): # pylint: disable=too-m "Tls11", and "Tls12". :vartype minimal_tls_version: str or ~azure.mgmt.cosmosdb.models.MinimalTlsVersion :ivar customer_managed_key_status: Indicates the status of the Customer Managed Key feature on - the account. In case there are errors, the property provides troubleshooting guidance. Known - values are: "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to obtain the AAD authentication token for the account's default identity; for more - details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-active-directory-token-acquisition-error - (4000).", "Access to your account is currently revoked because the Azure Cosmos DB account's - key vault key URI does not follow the expected format; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#improper-syntax-detected-on-the-key-vault-uri-property - (4006).", "Access to your account is currently revoked because the current default identity no - longer has permission to the associated Key Vault key; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#default-identity-is-unauthorized-to-access-the-azure-key-vault-key - (4002).", "Access to your account is currently revoked because the Azure Key Vault DNS name - specified by the account's keyvaultkeyuri property could not be resolved; for more details - about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#unable-to-resolve-the-key-vaults-dns - (4009).", "Access to your account is currently revoked because the correspondent key is not - found on the specified Key Vault; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4003).", "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to wrap or unwrap the key; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#internal-unwrapping-procedure-error - (4005).", "Access to your account is currently revoked because the Azure Cosmos DB account has - an undefined default identity; for more details about this error and how to restore access to - your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#invalid-azure-cosmos-db-default-identity - (4015).", "Access to your account is currently revoked because the access rules are blocking - outbound requests to the Azure Key Vault service; for more details about this error and how to - restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide (4016).", "Access - to your account is currently revoked because the correspondent Azure Key Vault was not found; - for more details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4017).", "Access to your account is currently revoked; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide", and "Access to - the configured customer managed key confirmed.". - :vartype customer_managed_key_status: str or - ~azure.mgmt.cosmosdb.models.CustomerManagedKeyStatus + the account. In case there are errors, the property provides troubleshooting guidance. + :vartype customer_managed_key_status: str :ivar enable_priority_based_execution: Flag to indicate enabling/disabling of Priority Based Execution Preview feature on the account. :vartype enable_priority_based_execution: bool :ivar default_priority_level: Enum to indicate default Priority Level of request for Priority Based Execution. Known values are: "High" and "Low". :vartype default_priority_level: str or ~azure.mgmt.cosmosdb.models.DefaultPriorityLevel + :ivar enable_per_region_per_partition_autoscale: Flag to indicate enabling/disabling of + Per-Region Per-partition autoscale Preview feature on the account. + :vartype enable_per_region_per_partition_autoscale: bool """ _validation = { @@ -4414,6 +4497,10 @@ class DatabaseAccountGetResults(ARMResourceProperties): # pylint: disable=too-m "customer_managed_key_status": {"key": "properties.customerManagedKeyStatus", "type": "str"}, "enable_priority_based_execution": {"key": "properties.enablePriorityBasedExecution", "type": "bool"}, "default_priority_level": {"key": "properties.defaultPriorityLevel", "type": "str"}, + "enable_per_region_per_partition_autoscale": { + "key": "properties.enablePerRegionPerPartitionAutoscale", + "type": "bool", + }, } def __init__( # pylint: disable=too-many-locals @@ -4453,9 +4540,10 @@ def __init__( # pylint: disable=too-many-locals enable_partition_merge: Optional[bool] = None, enable_burst_capacity: Optional[bool] = None, minimal_tls_version: Optional[Union[str, "_models.MinimalTlsVersion"]] = None, - customer_managed_key_status: Optional[Union[str, "_models.CustomerManagedKeyStatus"]] = None, + customer_managed_key_status: Optional[str] = None, enable_priority_based_execution: Optional[bool] = None, default_priority_level: Optional[Union[str, "_models.DefaultPriorityLevel"]] = None, + enable_per_region_per_partition_autoscale: Optional[bool] = None, **kwargs: Any ) -> None: """ @@ -4557,54 +4645,17 @@ def __init__( # pylint: disable=too-many-locals "Tls", "Tls11", and "Tls12". :paramtype minimal_tls_version: str or ~azure.mgmt.cosmosdb.models.MinimalTlsVersion :keyword customer_managed_key_status: Indicates the status of the Customer Managed Key feature - on the account. In case there are errors, the property provides troubleshooting guidance. Known - values are: "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to obtain the AAD authentication token for the account's default identity; for more - details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-active-directory-token-acquisition-error - (4000).", "Access to your account is currently revoked because the Azure Cosmos DB account's - key vault key URI does not follow the expected format; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#improper-syntax-detected-on-the-key-vault-uri-property - (4006).", "Access to your account is currently revoked because the current default identity no - longer has permission to the associated Key Vault key; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#default-identity-is-unauthorized-to-access-the-azure-key-vault-key - (4002).", "Access to your account is currently revoked because the Azure Key Vault DNS name - specified by the account's keyvaultkeyuri property could not be resolved; for more details - about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#unable-to-resolve-the-key-vaults-dns - (4009).", "Access to your account is currently revoked because the correspondent key is not - found on the specified Key Vault; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4003).", "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to wrap or unwrap the key; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#internal-unwrapping-procedure-error - (4005).", "Access to your account is currently revoked because the Azure Cosmos DB account has - an undefined default identity; for more details about this error and how to restore access to - your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#invalid-azure-cosmos-db-default-identity - (4015).", "Access to your account is currently revoked because the access rules are blocking - outbound requests to the Azure Key Vault service; for more details about this error and how to - restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide (4016).", "Access - to your account is currently revoked because the correspondent Azure Key Vault was not found; - for more details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4017).", "Access to your account is currently revoked; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide", and "Access to - the configured customer managed key confirmed.". - :paramtype customer_managed_key_status: str or - ~azure.mgmt.cosmosdb.models.CustomerManagedKeyStatus + on the account. In case there are errors, the property provides troubleshooting guidance. + :paramtype customer_managed_key_status: str :keyword enable_priority_based_execution: Flag to indicate enabling/disabling of Priority Based Execution Preview feature on the account. :paramtype enable_priority_based_execution: bool :keyword default_priority_level: Enum to indicate default Priority Level of request for Priority Based Execution. Known values are: "High" and "Low". :paramtype default_priority_level: str or ~azure.mgmt.cosmosdb.models.DefaultPriorityLevel + :keyword enable_per_region_per_partition_autoscale: Flag to indicate enabling/disabling of + Per-Region Per-partition autoscale Preview feature on the account. + :paramtype enable_per_region_per_partition_autoscale: bool """ super().__init__(location=location, tags=tags, identity=identity, **kwargs) self.kind = kind @@ -4652,6 +4703,7 @@ def __init__( # pylint: disable=too-many-locals self.customer_managed_key_status = customer_managed_key_status self.enable_priority_based_execution = enable_priority_based_execution self.default_priority_level = default_priority_level + self.enable_per_region_per_partition_autoscale = enable_per_region_per_partition_autoscale class DatabaseAccountKeysMetadata(_serialization.Model): @@ -4936,54 +4988,17 @@ class DatabaseAccountUpdateParameters(_serialization.Model): # pylint: disable= "Tls11", and "Tls12". :vartype minimal_tls_version: str or ~azure.mgmt.cosmosdb.models.MinimalTlsVersion :ivar customer_managed_key_status: Indicates the status of the Customer Managed Key feature on - the account. In case there are errors, the property provides troubleshooting guidance. Known - values are: "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to obtain the AAD authentication token for the account's default identity; for more - details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-active-directory-token-acquisition-error - (4000).", "Access to your account is currently revoked because the Azure Cosmos DB account's - key vault key URI does not follow the expected format; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#improper-syntax-detected-on-the-key-vault-uri-property - (4006).", "Access to your account is currently revoked because the current default identity no - longer has permission to the associated Key Vault key; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#default-identity-is-unauthorized-to-access-the-azure-key-vault-key - (4002).", "Access to your account is currently revoked because the Azure Key Vault DNS name - specified by the account's keyvaultkeyuri property could not be resolved; for more details - about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#unable-to-resolve-the-key-vaults-dns - (4009).", "Access to your account is currently revoked because the correspondent key is not - found on the specified Key Vault; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4003).", "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to wrap or unwrap the key; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#internal-unwrapping-procedure-error - (4005).", "Access to your account is currently revoked because the Azure Cosmos DB account has - an undefined default identity; for more details about this error and how to restore access to - your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#invalid-azure-cosmos-db-default-identity - (4015).", "Access to your account is currently revoked because the access rules are blocking - outbound requests to the Azure Key Vault service; for more details about this error and how to - restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide (4016).", "Access - to your account is currently revoked because the correspondent Azure Key Vault was not found; - for more details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4017).", "Access to your account is currently revoked; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide", and "Access to - the configured customer managed key confirmed.". - :vartype customer_managed_key_status: str or - ~azure.mgmt.cosmosdb.models.CustomerManagedKeyStatus + the account. In case there are errors, the property provides troubleshooting guidance. + :vartype customer_managed_key_status: str :ivar enable_priority_based_execution: Flag to indicate enabling/disabling of Priority Based Execution Preview feature on the account. :vartype enable_priority_based_execution: bool :ivar default_priority_level: Enum to indicate default Priority Level of request for Priority Based Execution. Known values are: "High" and "Low". :vartype default_priority_level: str or ~azure.mgmt.cosmosdb.models.DefaultPriorityLevel + :ivar enable_per_region_per_partition_autoscale: Flag to indicate enabling/disabling of + Per-Region Per-partition autoscale Preview feature on the account. + :vartype enable_per_region_per_partition_autoscale: bool """ _validation = { @@ -5033,6 +5048,10 @@ class DatabaseAccountUpdateParameters(_serialization.Model): # pylint: disable= "customer_managed_key_status": {"key": "properties.customerManagedKeyStatus", "type": "str"}, "enable_priority_based_execution": {"key": "properties.enablePriorityBasedExecution", "type": "bool"}, "default_priority_level": {"key": "properties.defaultPriorityLevel", "type": "str"}, + "enable_per_region_per_partition_autoscale": { + "key": "properties.enablePerRegionPerPartitionAutoscale", + "type": "bool", + }, } def __init__( # pylint: disable=too-many-locals @@ -5070,9 +5089,10 @@ def __init__( # pylint: disable=too-many-locals enable_partition_merge: Optional[bool] = None, enable_burst_capacity: Optional[bool] = None, minimal_tls_version: Optional[Union[str, "_models.MinimalTlsVersion"]] = None, - customer_managed_key_status: Optional[Union[str, "_models.CustomerManagedKeyStatus"]] = None, + customer_managed_key_status: Optional[str] = None, enable_priority_based_execution: Optional[bool] = None, default_priority_level: Optional[Union[str, "_models.DefaultPriorityLevel"]] = None, + enable_per_region_per_partition_autoscale: Optional[bool] = None, **kwargs: Any ) -> None: """ @@ -5169,54 +5189,17 @@ def __init__( # pylint: disable=too-many-locals "Tls", "Tls11", and "Tls12". :paramtype minimal_tls_version: str or ~azure.mgmt.cosmosdb.models.MinimalTlsVersion :keyword customer_managed_key_status: Indicates the status of the Customer Managed Key feature - on the account. In case there are errors, the property provides troubleshooting guidance. Known - values are: "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to obtain the AAD authentication token for the account's default identity; for more - details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-active-directory-token-acquisition-error - (4000).", "Access to your account is currently revoked because the Azure Cosmos DB account's - key vault key URI does not follow the expected format; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#improper-syntax-detected-on-the-key-vault-uri-property - (4006).", "Access to your account is currently revoked because the current default identity no - longer has permission to the associated Key Vault key; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#default-identity-is-unauthorized-to-access-the-azure-key-vault-key - (4002).", "Access to your account is currently revoked because the Azure Key Vault DNS name - specified by the account's keyvaultkeyuri property could not be resolved; for more details - about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#unable-to-resolve-the-key-vaults-dns - (4009).", "Access to your account is currently revoked because the correspondent key is not - found on the specified Key Vault; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4003).", "Access to your account is currently revoked because the Azure Cosmos DB service is - unable to wrap or unwrap the key; for more details about this error and how to restore access - to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#internal-unwrapping-procedure-error - (4005).", "Access to your account is currently revoked because the Azure Cosmos DB account has - an undefined default identity; for more details about this error and how to restore access to - your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#invalid-azure-cosmos-db-default-identity - (4015).", "Access to your account is currently revoked because the access rules are blocking - outbound requests to the Azure Key Vault service; for more details about this error and how to - restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide (4016).", "Access - to your account is currently revoked because the correspondent Azure Key Vault was not found; - for more details about this error and how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide#azure-key-vault-resource-not-found - (4017).", "Access to your account is currently revoked; for more details about this error and - how to restore access to your account please visit - https://learn.microsoft.com/en-us/azure/cosmos-db/cmk-troubleshooting-guide", and "Access to - the configured customer managed key confirmed.". - :paramtype customer_managed_key_status: str or - ~azure.mgmt.cosmosdb.models.CustomerManagedKeyStatus + on the account. In case there are errors, the property provides troubleshooting guidance. + :paramtype customer_managed_key_status: str :keyword enable_priority_based_execution: Flag to indicate enabling/disabling of Priority Based Execution Preview feature on the account. :paramtype enable_priority_based_execution: bool :keyword default_priority_level: Enum to indicate default Priority Level of request for Priority Based Execution. Known values are: "High" and "Low". :paramtype default_priority_level: str or ~azure.mgmt.cosmosdb.models.DefaultPriorityLevel + :keyword enable_per_region_per_partition_autoscale: Flag to indicate enabling/disabling of + Per-Region Per-partition autoscale Preview feature on the account. + :paramtype enable_per_region_per_partition_autoscale: bool """ super().__init__(**kwargs) self.tags = tags @@ -5255,6 +5238,7 @@ def __init__( # pylint: disable=too-many-locals self.customer_managed_key_status = customer_managed_key_status self.enable_priority_based_execution = enable_priority_based_execution self.default_priority_level = default_priority_level + self.enable_per_region_per_partition_autoscale = enable_per_region_per_partition_autoscale class DatabaseRestoreResource(_serialization.Model): @@ -5377,6 +5361,8 @@ class DataCenterResourceProperties(_serialization.Model): # pylint: disable=too :vartype deallocated: bool :ivar provision_error: Error related to resource provisioning. :vartype provision_error: ~azure.mgmt.cosmosdb.models.CassandraError + :ivar private_endpoint_ip_address: Ip of the VPN Endpoint for this data center. + :vartype private_endpoint_ip_address: str """ _validation = { @@ -5402,6 +5388,7 @@ class DataCenterResourceProperties(_serialization.Model): # pylint: disable=too }, "deallocated": {"key": "deallocated", "type": "bool"}, "provision_error": {"key": "provisionError", "type": "CassandraError"}, + "private_endpoint_ip_address": {"key": "privateEndpointIpAddress", "type": "str"}, } def __init__( @@ -5421,6 +5408,7 @@ def __init__( authentication_method_ldap_properties: Optional["_models.AuthenticationMethodLdapProperties"] = None, deallocated: Optional[bool] = None, provision_error: Optional["_models.CassandraError"] = None, + private_endpoint_ip_address: Optional[str] = None, **kwargs: Any ) -> None: """ @@ -5470,6 +5458,8 @@ def __init__( :paramtype deallocated: bool :keyword provision_error: Error related to resource provisioning. :paramtype provision_error: ~azure.mgmt.cosmosdb.models.CassandraError + :keyword private_endpoint_ip_address: Ip of the VPN Endpoint for this data center. + :paramtype private_endpoint_ip_address: str """ super().__init__(**kwargs) self.provisioning_state = provisioning_state @@ -5487,6 +5477,7 @@ def __init__( self.authentication_method_ldap_properties = authentication_method_ldap_properties self.deallocated = deallocated self.provision_error = provision_error + self.private_endpoint_ip_address = private_endpoint_ip_address class DataTransferJobFeedResults(_serialization.Model): @@ -5546,6 +5537,10 @@ class DataTransferJobGetResults(ARMProxyResource): # pylint: disable=too-many-i :vartype worker_count: int :ivar error: Error response for Faulted job. :vartype error: ~azure.mgmt.cosmosdb.models.ErrorResponse + :ivar duration: Total Duration of Job. + :vartype duration: str + :ivar mode: Mode of job execution. Known values are: "Offline" and "Online". + :vartype mode: str or ~azure.mgmt.cosmosdb.models.DataTransferJobMode """ _validation = { @@ -5559,6 +5554,7 @@ class DataTransferJobGetResults(ARMProxyResource): # pylint: disable=too-many-i "last_updated_utc_time": {"readonly": True}, "worker_count": {"minimum": 0}, "error": {"readonly": True}, + "duration": {"readonly": True}, } _attribute_map = { @@ -5574,6 +5570,8 @@ class DataTransferJobGetResults(ARMProxyResource): # pylint: disable=too-many-i "last_updated_utc_time": {"key": "properties.lastUpdatedUtcTime", "type": "iso-8601"}, "worker_count": {"key": "properties.workerCount", "type": "int"}, "error": {"key": "properties.error", "type": "ErrorResponse"}, + "duration": {"key": "properties.duration", "type": "str"}, + "mode": {"key": "properties.mode", "type": "str"}, } def __init__( @@ -5582,6 +5580,7 @@ def __init__( source: Optional["_models.DataTransferDataSourceSink"] = None, destination: Optional["_models.DataTransferDataSourceSink"] = None, worker_count: Optional[int] = None, + mode: Optional[Union[str, "_models.DataTransferJobMode"]] = None, **kwargs: Any ) -> None: """ @@ -5591,6 +5590,8 @@ def __init__( :paramtype destination: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink :keyword worker_count: Worker count. :paramtype worker_count: int + :keyword mode: Mode of job execution. Known values are: "Offline" and "Online". + :paramtype mode: str or ~azure.mgmt.cosmosdb.models.DataTransferJobMode """ super().__init__(**kwargs) self.job_name = None @@ -5602,9 +5603,11 @@ def __init__( self.last_updated_utc_time = None self.worker_count = worker_count self.error = None + self.duration = None + self.mode = mode -class DataTransferJobProperties(_serialization.Model): +class DataTransferJobProperties(_serialization.Model): # pylint: disable=too-many-instance-attributes """The properties of a DataTransfer Job. Variables are only populated by the server, and will be ignored when sending a request. @@ -5629,6 +5632,10 @@ class DataTransferJobProperties(_serialization.Model): :vartype worker_count: int :ivar error: Error response for Faulted job. :vartype error: ~azure.mgmt.cosmosdb.models.ErrorResponse + :ivar duration: Total Duration of Job. + :vartype duration: str + :ivar mode: Mode of job execution. Known values are: "Offline" and "Online". + :vartype mode: str or ~azure.mgmt.cosmosdb.models.DataTransferJobMode """ _validation = { @@ -5641,6 +5648,7 @@ class DataTransferJobProperties(_serialization.Model): "last_updated_utc_time": {"readonly": True}, "worker_count": {"minimum": 0}, "error": {"readonly": True}, + "duration": {"readonly": True}, } _attribute_map = { @@ -5653,6 +5661,8 @@ class DataTransferJobProperties(_serialization.Model): "last_updated_utc_time": {"key": "lastUpdatedUtcTime", "type": "iso-8601"}, "worker_count": {"key": "workerCount", "type": "int"}, "error": {"key": "error", "type": "ErrorResponse"}, + "duration": {"key": "duration", "type": "str"}, + "mode": {"key": "mode", "type": "str"}, } def __init__( @@ -5661,6 +5671,7 @@ def __init__( source: "_models.DataTransferDataSourceSink", destination: "_models.DataTransferDataSourceSink", worker_count: Optional[int] = None, + mode: Optional[Union[str, "_models.DataTransferJobMode"]] = None, **kwargs: Any ) -> None: """ @@ -5670,6 +5681,8 @@ def __init__( :paramtype destination: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink :keyword worker_count: Worker count. :paramtype worker_count: int + :keyword mode: Mode of job execution. Known values are: "Offline" and "Online". + :paramtype mode: str or ~azure.mgmt.cosmosdb.models.DataTransferJobMode """ super().__init__(**kwargs) self.job_name = None @@ -5681,6 +5694,8 @@ def __init__( self.last_updated_utc_time = None self.worker_count = worker_count self.error = None + self.duration = None + self.mode = mode class RegionalServiceResource(_serialization.Model): @@ -7781,6 +7796,29 @@ def __init__(self, *, value: Optional[List["_models.ClusterResource"]] = None, * self.value = value +class ListCommands(_serialization.Model): + """List of commands for cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Container for array of commands. + :vartype value: list[~azure.mgmt.cosmosdb.models.CommandPublicResource] + """ + + _validation = { + "value": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[CommandPublicResource]"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.value = None + + class ListConnectionStringsResult(_serialization.Model): """The connection strings for the given mongo cluster. @@ -7983,7 +8021,8 @@ class LocationProperties(_serialization.Model): have access in region for Availability Zones(Az). :vartype is_subscription_region_access_allowed_for_az: bool :ivar status: Enum to indicate current buildout status of the region. Known values are: - "Uninitialized", "Initializing", "InternallyReady", "Online", and "Deleting". + "Uninitialized", "Initializing", "InternallyReady", "Online", "Deleting", "Succeeded", + "Failed", "Canceled", and "Updating". :vartype status: str or ~azure.mgmt.cosmosdb.models.Status """ @@ -11632,11 +11671,15 @@ class RestoreParametersBase(_serialization.Model): :vartype restore_source: str :ivar restore_timestamp_in_utc: Time to which the account has to be restored (ISO-8601 format). :vartype restore_timestamp_in_utc: ~datetime.datetime + :ivar restore_with_ttl_disabled: Specifies whether the restored account will have Time-To-Live + disabled upon the successful restore. + :vartype restore_with_ttl_disabled: bool """ _attribute_map = { "restore_source": {"key": "restoreSource", "type": "str"}, "restore_timestamp_in_utc": {"key": "restoreTimestampInUtc", "type": "iso-8601"}, + "restore_with_ttl_disabled": {"key": "restoreWithTtlDisabled", "type": "bool"}, } def __init__( @@ -11644,6 +11687,7 @@ def __init__( *, restore_source: Optional[str] = None, restore_timestamp_in_utc: Optional[datetime.datetime] = None, + restore_with_ttl_disabled: Optional[bool] = None, **kwargs: Any ) -> None: """ @@ -11654,10 +11698,14 @@ def __init__( :keyword restore_timestamp_in_utc: Time to which the account has to be restored (ISO-8601 format). :paramtype restore_timestamp_in_utc: ~datetime.datetime + :keyword restore_with_ttl_disabled: Specifies whether the restored account will have + Time-To-Live disabled upon the successful restore. + :paramtype restore_with_ttl_disabled: bool """ super().__init__(**kwargs) self.restore_source = restore_source self.restore_timestamp_in_utc = restore_timestamp_in_utc + self.restore_with_ttl_disabled = restore_with_ttl_disabled class ResourceRestoreParameters(RestoreParametersBase): @@ -11669,11 +11717,15 @@ class ResourceRestoreParameters(RestoreParametersBase): :vartype restore_source: str :ivar restore_timestamp_in_utc: Time to which the account has to be restored (ISO-8601 format). :vartype restore_timestamp_in_utc: ~datetime.datetime + :ivar restore_with_ttl_disabled: Specifies whether the restored account will have Time-To-Live + disabled upon the successful restore. + :vartype restore_with_ttl_disabled: bool """ _attribute_map = { "restore_source": {"key": "restoreSource", "type": "str"}, "restore_timestamp_in_utc": {"key": "restoreTimestampInUtc", "type": "iso-8601"}, + "restore_with_ttl_disabled": {"key": "restoreWithTtlDisabled", "type": "bool"}, } def __init__( @@ -11681,6 +11733,7 @@ def __init__( *, restore_source: Optional[str] = None, restore_timestamp_in_utc: Optional[datetime.datetime] = None, + restore_with_ttl_disabled: Optional[bool] = None, **kwargs: Any ) -> None: """ @@ -11691,8 +11744,16 @@ def __init__( :keyword restore_timestamp_in_utc: Time to which the account has to be restored (ISO-8601 format). :paramtype restore_timestamp_in_utc: ~datetime.datetime + :keyword restore_with_ttl_disabled: Specifies whether the restored account will have + Time-To-Live disabled upon the successful restore. + :paramtype restore_with_ttl_disabled: bool """ - super().__init__(restore_source=restore_source, restore_timestamp_in_utc=restore_timestamp_in_utc, **kwargs) + super().__init__( + restore_source=restore_source, + restore_timestamp_in_utc=restore_timestamp_in_utc, + restore_with_ttl_disabled=restore_with_ttl_disabled, + **kwargs + ) class RestorableDatabaseAccountGetResult(_serialization.Model): @@ -11860,6 +11921,11 @@ class RestorableGremlinDatabasePropertiesResource(_serialization.Model): :ivar operation_type: The operation type of this database event. Known values are: "Create", "Replace", "Delete", "Recreate", and "SystemOperation". :vartype operation_type: str or ~azure.mgmt.cosmosdb.models.OperationType + :ivar can_undelete: A state of this database to identify if this database is restorable in same + account. + :vartype can_undelete: str + :ivar can_undelete_reason: The reason why this database can not be restored in same account. + :vartype can_undelete_reason: str :ivar event_timestamp: The time when this database event happened. :vartype event_timestamp: str :ivar owner_id: The name of this Gremlin database. @@ -11871,6 +11937,8 @@ class RestorableGremlinDatabasePropertiesResource(_serialization.Model): _validation = { "rid": {"readonly": True}, "operation_type": {"readonly": True}, + "can_undelete": {"readonly": True}, + "can_undelete_reason": {"readonly": True}, "event_timestamp": {"readonly": True}, "owner_id": {"readonly": True}, "owner_resource_id": {"readonly": True}, @@ -11879,6 +11947,8 @@ class RestorableGremlinDatabasePropertiesResource(_serialization.Model): _attribute_map = { "rid": {"key": "_rid", "type": "str"}, "operation_type": {"key": "operationType", "type": "str"}, + "can_undelete": {"key": "canUndelete", "type": "str"}, + "can_undelete_reason": {"key": "canUndeleteReason", "type": "str"}, "event_timestamp": {"key": "eventTimestamp", "type": "str"}, "owner_id": {"key": "ownerId", "type": "str"}, "owner_resource_id": {"key": "ownerResourceId", "type": "str"}, @@ -11889,6 +11959,8 @@ def __init__(self, **kwargs: Any) -> None: super().__init__(**kwargs) self.rid = None self.operation_type = None + self.can_undelete = None + self.can_undelete_reason = None self.event_timestamp = None self.owner_id = None self.owner_resource_id = None @@ -11969,6 +12041,11 @@ class RestorableGremlinGraphPropertiesResource(_serialization.Model): :ivar operation_type: The operation type of this graph event. Known values are: "Create", "Replace", "Delete", "Recreate", and "SystemOperation". :vartype operation_type: str or ~azure.mgmt.cosmosdb.models.OperationType + :ivar can_undelete: A state of this graph to identify if this graph is restorable in same + account. + :vartype can_undelete: str + :ivar can_undelete_reason: The reason why this graph can not be restored in same account. + :vartype can_undelete_reason: str :ivar event_timestamp: The time when this graph event happened. :vartype event_timestamp: str :ivar owner_id: The name of this Gremlin graph. @@ -11980,6 +12057,8 @@ class RestorableGremlinGraphPropertiesResource(_serialization.Model): _validation = { "rid": {"readonly": True}, "operation_type": {"readonly": True}, + "can_undelete": {"readonly": True}, + "can_undelete_reason": {"readonly": True}, "event_timestamp": {"readonly": True}, "owner_id": {"readonly": True}, "owner_resource_id": {"readonly": True}, @@ -11988,6 +12067,8 @@ class RestorableGremlinGraphPropertiesResource(_serialization.Model): _attribute_map = { "rid": {"key": "_rid", "type": "str"}, "operation_type": {"key": "operationType", "type": "str"}, + "can_undelete": {"key": "canUndelete", "type": "str"}, + "can_undelete_reason": {"key": "canUndeleteReason", "type": "str"}, "event_timestamp": {"key": "eventTimestamp", "type": "str"}, "owner_id": {"key": "ownerId", "type": "str"}, "owner_resource_id": {"key": "ownerResourceId", "type": "str"}, @@ -11998,6 +12079,8 @@ def __init__(self, **kwargs: Any) -> None: super().__init__(**kwargs) self.rid = None self.operation_type = None + self.can_undelete = None + self.can_undelete_reason = None self.event_timestamp = None self.owner_id = None self.owner_resource_id = None @@ -12191,6 +12274,11 @@ class RestorableMongodbCollectionPropertiesResource(_serialization.Model): :ivar operation_type: The operation type of this collection event. Known values are: "Create", "Replace", "Delete", "Recreate", and "SystemOperation". :vartype operation_type: str or ~azure.mgmt.cosmosdb.models.OperationType + :ivar can_undelete: A state of this collection to identify if this container is restorable in + same account. + :vartype can_undelete: str + :ivar can_undelete_reason: The reason why this collection can not be restored in same account. + :vartype can_undelete_reason: str :ivar event_timestamp: The time when this collection event happened. :vartype event_timestamp: str :ivar owner_id: The name of this MongoDB collection. @@ -12202,6 +12290,8 @@ class RestorableMongodbCollectionPropertiesResource(_serialization.Model): _validation = { "rid": {"readonly": True}, "operation_type": {"readonly": True}, + "can_undelete": {"readonly": True}, + "can_undelete_reason": {"readonly": True}, "event_timestamp": {"readonly": True}, "owner_id": {"readonly": True}, "owner_resource_id": {"readonly": True}, @@ -12210,6 +12300,8 @@ class RestorableMongodbCollectionPropertiesResource(_serialization.Model): _attribute_map = { "rid": {"key": "_rid", "type": "str"}, "operation_type": {"key": "operationType", "type": "str"}, + "can_undelete": {"key": "canUndelete", "type": "str"}, + "can_undelete_reason": {"key": "canUndeleteReason", "type": "str"}, "event_timestamp": {"key": "eventTimestamp", "type": "str"}, "owner_id": {"key": "ownerId", "type": "str"}, "owner_resource_id": {"key": "ownerResourceId", "type": "str"}, @@ -12220,6 +12312,8 @@ def __init__(self, **kwargs: Any) -> None: super().__init__(**kwargs) self.rid = None self.operation_type = None + self.can_undelete = None + self.can_undelete_reason = None self.event_timestamp = None self.owner_id = None self.owner_resource_id = None @@ -12300,6 +12394,11 @@ class RestorableMongodbDatabasePropertiesResource(_serialization.Model): :ivar operation_type: The operation type of this database event. Known values are: "Create", "Replace", "Delete", "Recreate", and "SystemOperation". :vartype operation_type: str or ~azure.mgmt.cosmosdb.models.OperationType + :ivar can_undelete: A state of this database to identify if this database is restorable in same + account. + :vartype can_undelete: str + :ivar can_undelete_reason: The reason why this database can not be restored in same account. + :vartype can_undelete_reason: str :ivar event_timestamp: The time when this database event happened. :vartype event_timestamp: str :ivar owner_id: The name of this MongoDB database. @@ -12311,6 +12410,8 @@ class RestorableMongodbDatabasePropertiesResource(_serialization.Model): _validation = { "rid": {"readonly": True}, "operation_type": {"readonly": True}, + "can_undelete": {"readonly": True}, + "can_undelete_reason": {"readonly": True}, "event_timestamp": {"readonly": True}, "owner_id": {"readonly": True}, "owner_resource_id": {"readonly": True}, @@ -12319,6 +12420,8 @@ class RestorableMongodbDatabasePropertiesResource(_serialization.Model): _attribute_map = { "rid": {"key": "_rid", "type": "str"}, "operation_type": {"key": "operationType", "type": "str"}, + "can_undelete": {"key": "canUndelete", "type": "str"}, + "can_undelete_reason": {"key": "canUndeleteReason", "type": "str"}, "event_timestamp": {"key": "eventTimestamp", "type": "str"}, "owner_id": {"key": "ownerId", "type": "str"}, "owner_resource_id": {"key": "ownerResourceId", "type": "str"}, @@ -12329,6 +12432,8 @@ def __init__(self, **kwargs: Any) -> None: super().__init__(**kwargs) self.rid = None self.operation_type = None + self.can_undelete = None + self.can_undelete_reason = None self.event_timestamp = None self.owner_id = None self.owner_resource_id = None @@ -12480,6 +12585,11 @@ class RestorableSqlContainerPropertiesResource(_serialization.Model): :ivar operation_type: The operation type of this container event. Known values are: "Create", "Replace", "Delete", "Recreate", and "SystemOperation". :vartype operation_type: str or ~azure.mgmt.cosmosdb.models.OperationType + :ivar can_undelete: A state of this container to identify if this container is restorable in + same account. + :vartype can_undelete: str + :ivar can_undelete_reason: The reason why this container can not be restored in same account. + :vartype can_undelete_reason: str :ivar event_timestamp: The when this container event happened. :vartype event_timestamp: str :ivar owner_id: The name of this SQL container. @@ -12494,6 +12604,8 @@ class RestorableSqlContainerPropertiesResource(_serialization.Model): _validation = { "rid": {"readonly": True}, "operation_type": {"readonly": True}, + "can_undelete": {"readonly": True}, + "can_undelete_reason": {"readonly": True}, "event_timestamp": {"readonly": True}, "owner_id": {"readonly": True}, "owner_resource_id": {"readonly": True}, @@ -12502,6 +12614,8 @@ class RestorableSqlContainerPropertiesResource(_serialization.Model): _attribute_map = { "rid": {"key": "_rid", "type": "str"}, "operation_type": {"key": "operationType", "type": "str"}, + "can_undelete": {"key": "canUndelete", "type": "str"}, + "can_undelete_reason": {"key": "canUndeleteReason", "type": "str"}, "event_timestamp": {"key": "eventTimestamp", "type": "str"}, "owner_id": {"key": "ownerId", "type": "str"}, "owner_resource_id": {"key": "ownerResourceId", "type": "str"}, @@ -12519,6 +12633,8 @@ def __init__( super().__init__(**kwargs) self.rid = None self.operation_type = None + self.can_undelete = None + self.can_undelete_reason = None self.event_timestamp = None self.owner_id = None self.owner_resource_id = None @@ -12557,6 +12673,8 @@ class SqlContainerResource(_serialization.Model): # pylint: disable=too-many-in :ivar materialized_view_definition: The configuration for defining Materialized Views. This must be specified only for creating a Materialized View container. :vartype materialized_view_definition: ~azure.mgmt.cosmosdb.models.MaterializedViewDefinition + :ivar computed_properties: List of computed properties. + :vartype computed_properties: list[~azure.mgmt.cosmosdb.models.ComputedProperty] """ _validation = { @@ -12575,6 +12693,7 @@ class SqlContainerResource(_serialization.Model): # pylint: disable=too-many-in "restore_parameters": {"key": "restoreParameters", "type": "ResourceRestoreParameters"}, "create_mode": {"key": "createMode", "type": "str"}, "materialized_view_definition": {"key": "materializedViewDefinition", "type": "MaterializedViewDefinition"}, + "computed_properties": {"key": "computedProperties", "type": "[ComputedProperty]"}, } def __init__( @@ -12591,6 +12710,7 @@ def __init__( restore_parameters: Optional["_models.ResourceRestoreParameters"] = None, create_mode: Optional[Union[str, "_models.CreateMode"]] = None, materialized_view_definition: Optional["_models.MaterializedViewDefinition"] = None, + computed_properties: Optional[List["_models.ComputedProperty"]] = None, **kwargs: Any ) -> None: """ @@ -12621,6 +12741,8 @@ def __init__( :keyword materialized_view_definition: The configuration for defining Materialized Views. This must be specified only for creating a Materialized View container. :paramtype materialized_view_definition: ~azure.mgmt.cosmosdb.models.MaterializedViewDefinition + :keyword computed_properties: List of computed properties. + :paramtype computed_properties: list[~azure.mgmt.cosmosdb.models.ComputedProperty] """ super().__init__(**kwargs) self.id = id @@ -12634,6 +12756,7 @@ def __init__( self.restore_parameters = restore_parameters self.create_mode = create_mode self.materialized_view_definition = materialized_view_definition + self.computed_properties = computed_properties class RestorableSqlContainerPropertiesResourceContainer( @@ -12679,6 +12802,8 @@ class RestorableSqlContainerPropertiesResourceContainer( :ivar materialized_view_definition: The configuration for defining Materialized Views. This must be specified only for creating a Materialized View container. :vartype materialized_view_definition: ~azure.mgmt.cosmosdb.models.MaterializedViewDefinition + :ivar computed_properties: List of computed properties. + :vartype computed_properties: list[~azure.mgmt.cosmosdb.models.ComputedProperty] :ivar self_property: A system generated property that specifies the addressable path of the container resource. :vartype self_property: str @@ -12707,6 +12832,7 @@ class RestorableSqlContainerPropertiesResourceContainer( "restore_parameters": {"key": "restoreParameters", "type": "ResourceRestoreParameters"}, "create_mode": {"key": "createMode", "type": "str"}, "materialized_view_definition": {"key": "materializedViewDefinition", "type": "MaterializedViewDefinition"}, + "computed_properties": {"key": "computedProperties", "type": "[ComputedProperty]"}, "self_property": {"key": "_self", "type": "str"}, } @@ -12724,6 +12850,7 @@ def __init__( restore_parameters: Optional["_models.ResourceRestoreParameters"] = None, create_mode: Optional[Union[str, "_models.CreateMode"]] = None, materialized_view_definition: Optional["_models.MaterializedViewDefinition"] = None, + computed_properties: Optional[List["_models.ComputedProperty"]] = None, **kwargs: Any ) -> None: """ @@ -12754,6 +12881,8 @@ def __init__( :keyword materialized_view_definition: The configuration for defining Materialized Views. This must be specified only for creating a Materialized View container. :paramtype materialized_view_definition: ~azure.mgmt.cosmosdb.models.MaterializedViewDefinition + :keyword computed_properties: List of computed properties. + :paramtype computed_properties: list[~azure.mgmt.cosmosdb.models.ComputedProperty] """ super().__init__( id=id, @@ -12767,6 +12896,7 @@ def __init__( restore_parameters=restore_parameters, create_mode=create_mode, materialized_view_definition=materialized_view_definition, + computed_properties=computed_properties, **kwargs ) self.rid = None @@ -12784,6 +12914,7 @@ def __init__( self.restore_parameters = restore_parameters self.create_mode = create_mode self.materialized_view_definition = materialized_view_definition + self.computed_properties = computed_properties class RestorableSqlContainersListResult(_serialization.Model): @@ -12861,6 +12992,11 @@ class RestorableSqlDatabasePropertiesResource(_serialization.Model): :ivar operation_type: The operation type of this database event. Known values are: "Create", "Replace", "Delete", "Recreate", and "SystemOperation". :vartype operation_type: str or ~azure.mgmt.cosmosdb.models.OperationType + :ivar can_undelete: A state of this database to identify if this database is restorable in same + account. + :vartype can_undelete: str + :ivar can_undelete_reason: The reason why this database can not be restored in same account. + :vartype can_undelete_reason: str :ivar event_timestamp: The time when this database event happened. :vartype event_timestamp: str :ivar owner_id: The name of the SQL database. @@ -12874,6 +13010,8 @@ class RestorableSqlDatabasePropertiesResource(_serialization.Model): _validation = { "rid": {"readonly": True}, "operation_type": {"readonly": True}, + "can_undelete": {"readonly": True}, + "can_undelete_reason": {"readonly": True}, "event_timestamp": {"readonly": True}, "owner_id": {"readonly": True}, "owner_resource_id": {"readonly": True}, @@ -12882,6 +13020,8 @@ class RestorableSqlDatabasePropertiesResource(_serialization.Model): _attribute_map = { "rid": {"key": "_rid", "type": "str"}, "operation_type": {"key": "operationType", "type": "str"}, + "can_undelete": {"key": "canUndelete", "type": "str"}, + "can_undelete_reason": {"key": "canUndeleteReason", "type": "str"}, "event_timestamp": {"key": "eventTimestamp", "type": "str"}, "owner_id": {"key": "ownerId", "type": "str"}, "owner_resource_id": {"key": "ownerResourceId", "type": "str"}, @@ -12899,6 +13039,8 @@ def __init__( super().__init__(**kwargs) self.rid = None self.operation_type = None + self.can_undelete = None + self.can_undelete_reason = None self.event_timestamp = None self.owner_id = None self.owner_resource_id = None @@ -13181,6 +13323,11 @@ class RestorableTablePropertiesResource(_serialization.Model): :ivar operation_type: The operation type of this table event. Known values are: "Create", "Replace", "Delete", "Recreate", and "SystemOperation". :vartype operation_type: str or ~azure.mgmt.cosmosdb.models.OperationType + :ivar can_undelete: A state of this table to identify if this table is restorable in same + account. + :vartype can_undelete: str + :ivar can_undelete_reason: The reason why this table can not be restored in same account. + :vartype can_undelete_reason: str :ivar event_timestamp: The time when this table event happened. :vartype event_timestamp: str :ivar owner_id: The name of this Table. @@ -13192,6 +13339,8 @@ class RestorableTablePropertiesResource(_serialization.Model): _validation = { "rid": {"readonly": True}, "operation_type": {"readonly": True}, + "can_undelete": {"readonly": True}, + "can_undelete_reason": {"readonly": True}, "event_timestamp": {"readonly": True}, "owner_id": {"readonly": True}, "owner_resource_id": {"readonly": True}, @@ -13200,6 +13349,8 @@ class RestorableTablePropertiesResource(_serialization.Model): _attribute_map = { "rid": {"key": "_rid", "type": "str"}, "operation_type": {"key": "operationType", "type": "str"}, + "can_undelete": {"key": "canUndelete", "type": "str"}, + "can_undelete_reason": {"key": "canUndeleteReason", "type": "str"}, "event_timestamp": {"key": "eventTimestamp", "type": "str"}, "owner_id": {"key": "ownerId", "type": "str"}, "owner_resource_id": {"key": "ownerResourceId", "type": "str"}, @@ -13210,6 +13361,8 @@ def __init__(self, **kwargs: Any) -> None: super().__init__(**kwargs) self.rid = None self.operation_type = None + self.can_undelete = None + self.can_undelete_reason = None self.event_timestamp = None self.owner_id = None self.owner_resource_id = None @@ -13303,6 +13456,9 @@ class RestoreParameters(RestoreParametersBase): :vartype restore_source: str :ivar restore_timestamp_in_utc: Time to which the account has to be restored (ISO-8601 format). :vartype restore_timestamp_in_utc: ~datetime.datetime + :ivar restore_with_ttl_disabled: Specifies whether the restored account will have Time-To-Live + disabled upon the successful restore. + :vartype restore_with_ttl_disabled: bool :ivar restore_mode: Describes the mode of the restore. "PointInTime" :vartype restore_mode: str or ~azure.mgmt.cosmosdb.models.RestoreMode :ivar databases_to_restore: List of specific databases available for restore. @@ -13319,6 +13475,7 @@ class RestoreParameters(RestoreParametersBase): _attribute_map = { "restore_source": {"key": "restoreSource", "type": "str"}, "restore_timestamp_in_utc": {"key": "restoreTimestampInUtc", "type": "iso-8601"}, + "restore_with_ttl_disabled": {"key": "restoreWithTtlDisabled", "type": "bool"}, "restore_mode": {"key": "restoreMode", "type": "str"}, "databases_to_restore": {"key": "databasesToRestore", "type": "[DatabaseRestoreResource]"}, "gremlin_databases_to_restore": { @@ -13334,6 +13491,7 @@ def __init__( *, restore_source: Optional[str] = None, restore_timestamp_in_utc: Optional[datetime.datetime] = None, + restore_with_ttl_disabled: Optional[bool] = None, restore_mode: Optional[Union[str, "_models.RestoreMode"]] = None, databases_to_restore: Optional[List["_models.DatabaseRestoreResource"]] = None, gremlin_databases_to_restore: Optional[List["_models.GremlinDatabaseRestoreResource"]] = None, @@ -13349,6 +13507,9 @@ def __init__( :keyword restore_timestamp_in_utc: Time to which the account has to be restored (ISO-8601 format). :paramtype restore_timestamp_in_utc: ~datetime.datetime + :keyword restore_with_ttl_disabled: Specifies whether the restored account will have + Time-To-Live disabled upon the successful restore. + :paramtype restore_with_ttl_disabled: bool :keyword restore_mode: Describes the mode of the restore. "PointInTime" :paramtype restore_mode: str or ~azure.mgmt.cosmosdb.models.RestoreMode :keyword databases_to_restore: List of specific databases available for restore. @@ -13362,7 +13523,12 @@ def __init__( :keyword source_backup_location: The source backup location for restore. :paramtype source_backup_location: str """ - super().__init__(restore_source=restore_source, restore_timestamp_in_utc=restore_timestamp_in_utc, **kwargs) + super().__init__( + restore_source=restore_source, + restore_timestamp_in_utc=restore_timestamp_in_utc, + restore_with_ttl_disabled=restore_with_ttl_disabled, + **kwargs + ) self.restore_mode = restore_mode self.databases_to_restore = databases_to_restore self.gremlin_databases_to_restore = gremlin_databases_to_restore @@ -13813,6 +13979,8 @@ class SqlContainerGetPropertiesResource( :ivar materialized_view_definition: The configuration for defining Materialized Views. This must be specified only for creating a Materialized View container. :vartype materialized_view_definition: ~azure.mgmt.cosmosdb.models.MaterializedViewDefinition + :ivar computed_properties: List of computed properties. + :vartype computed_properties: list[~azure.mgmt.cosmosdb.models.ComputedProperty] """ _validation = { @@ -13837,6 +14005,7 @@ class SqlContainerGetPropertiesResource( "restore_parameters": {"key": "restoreParameters", "type": "ResourceRestoreParameters"}, "create_mode": {"key": "createMode", "type": "str"}, "materialized_view_definition": {"key": "materializedViewDefinition", "type": "MaterializedViewDefinition"}, + "computed_properties": {"key": "computedProperties", "type": "[ComputedProperty]"}, } def __init__( @@ -13853,6 +14022,7 @@ def __init__( restore_parameters: Optional["_models.ResourceRestoreParameters"] = None, create_mode: Optional[Union[str, "_models.CreateMode"]] = None, materialized_view_definition: Optional["_models.MaterializedViewDefinition"] = None, + computed_properties: Optional[List["_models.ComputedProperty"]] = None, **kwargs: Any ) -> None: """ @@ -13883,6 +14053,8 @@ def __init__( :keyword materialized_view_definition: The configuration for defining Materialized Views. This must be specified only for creating a Materialized View container. :paramtype materialized_view_definition: ~azure.mgmt.cosmosdb.models.MaterializedViewDefinition + :keyword computed_properties: List of computed properties. + :paramtype computed_properties: list[~azure.mgmt.cosmosdb.models.ComputedProperty] """ super().__init__( id=id, @@ -13896,6 +14068,7 @@ def __init__( restore_parameters=restore_parameters, create_mode=create_mode, materialized_view_definition=materialized_view_definition, + computed_properties=computed_properties, **kwargs ) self.rid = None @@ -13912,6 +14085,7 @@ def __init__( self.restore_parameters = restore_parameters self.create_mode = create_mode self.materialized_view_definition = materialized_view_definition + self.computed_properties = computed_properties class SqlContainerGetResults(ARMResourceProperties): @@ -15979,6 +16153,300 @@ def __init__( self.increment_percent = increment_percent +class ThroughputPoolAccountCreateParameters(_serialization.Model): + """Parameters for creating a Azure Cosmos DB throughput pool account. + + :ivar tags: Tags are a list of key-value pairs that describe the resource. These tags can be + used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can + be provided for a resource. Each tag must have a key no greater than 128 characters and value + no greater than 256 characters. For example, the default experience for a template type is set + with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", + "Graph", "DocumentDB", and "MongoDB". + :vartype tags: dict[str, str] + :ivar account_resource_identifier: The resource identifier of global database account in the + throughputPool. + :vartype account_resource_identifier: str + :ivar account_location: The location of global database account in the throughputPool. + :vartype account_location: str + """ + + _attribute_map = { + "tags": {"key": "tags", "type": "{str}"}, + "account_resource_identifier": {"key": "properties.accountResourceIdentifier", "type": "str"}, + "account_location": {"key": "properties.accountLocation", "type": "str"}, + } + + def __init__( + self, + *, + tags: Optional[Dict[str, str]] = None, + account_resource_identifier: Optional[str] = None, + account_location: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword tags: Tags are a list of key-value pairs that describe the resource. These tags can be + used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can + be provided for a resource. Each tag must have a key no greater than 128 characters and value + no greater than 256 characters. For example, the default experience for a template type is set + with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", + "Graph", "DocumentDB", and "MongoDB". + :paramtype tags: dict[str, str] + :keyword account_resource_identifier: The resource identifier of global database account in the + throughputPool. + :paramtype account_resource_identifier: str + :keyword account_location: The location of global database account in the throughputPool. + :paramtype account_location: str + """ + super().__init__(**kwargs) + self.tags = tags + self.account_resource_identifier = account_resource_identifier + self.account_location = account_location + + +class ThroughputPoolAccountResource(ProxyResourceAutoGenerated): + """An Azure Cosmos DB Throughputpool Account. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.cosmosdb.models.SystemData + :ivar provisioning_state: A provisioning state of the ThroughputPool Account. Known values are: + "Uninitialized", "Initializing", "InternallyReady", "Online", "Deleting", "Succeeded", + "Failed", "Canceled", and "Updating". + :vartype provisioning_state: str or ~azure.mgmt.cosmosdb.models.Status + :ivar account_resource_identifier: The resource identifier of global database account in the + throughputPool. + :vartype account_resource_identifier: str + :ivar account_location: The location of global database account in the throughputPool. + :vartype account_location: str + :ivar account_instance_id: The instance id of global database account in the throughputPool. + :vartype account_instance_id: str + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + "account_instance_id": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, + "account_resource_identifier": {"key": "properties.accountResourceIdentifier", "type": "str"}, + "account_location": {"key": "properties.accountLocation", "type": "str"}, + "account_instance_id": {"key": "properties.accountInstanceId", "type": "str"}, + } + + def __init__( + self, + *, + provisioning_state: Optional[Union[str, "_models.Status"]] = None, + account_resource_identifier: Optional[str] = None, + account_location: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword provisioning_state: A provisioning state of the ThroughputPool Account. Known values + are: "Uninitialized", "Initializing", "InternallyReady", "Online", "Deleting", "Succeeded", + "Failed", "Canceled", and "Updating". + :paramtype provisioning_state: str or ~azure.mgmt.cosmosdb.models.Status + :keyword account_resource_identifier: The resource identifier of global database account in the + throughputPool. + :paramtype account_resource_identifier: str + :keyword account_location: The location of global database account in the throughputPool. + :paramtype account_location: str + """ + super().__init__(**kwargs) + self.provisioning_state = provisioning_state + self.account_resource_identifier = account_resource_identifier + self.account_location = account_location + self.account_instance_id = None + + +class ThroughputPoolAccountsListResult(_serialization.Model): + """The List operation response, that contains the global database accounts and their properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of global database accounts in a throughput pool and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :ivar next_link: The link used to get the next page of results. + :vartype next_link: str + """ + + _validation = { + "value": {"readonly": True}, + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[ThroughputPoolAccountResource]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.value = None + self.next_link = None + + +class ThroughputPoolResource(TrackedResource): + """An Azure Cosmos DB Throughputpool. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.cosmosdb.models.SystemData + :ivar tags: Resource tags. + :vartype tags: dict[str, str] + :ivar location: The geo-location where the resource lives. Required. + :vartype location: str + :ivar provisioning_state: A provisioning state of the ThroughputPool. Known values are: + "Uninitialized", "Initializing", "InternallyReady", "Online", "Deleting", "Succeeded", + "Failed", "Canceled", and "Updating". + :vartype provisioning_state: str or ~azure.mgmt.cosmosdb.models.Status + :ivar max_throughput: Value for throughput to be shared among CosmosDB resources in the pool. + :vartype max_throughput: int + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + "location": {"required": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "tags": {"key": "tags", "type": "{str}"}, + "location": {"key": "location", "type": "str"}, + "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, + "max_throughput": {"key": "properties.maxThroughput", "type": "int"}, + } + + def __init__( + self, + *, + location: str, + tags: Optional[Dict[str, str]] = None, + provisioning_state: Optional[Union[str, "_models.Status"]] = None, + max_throughput: Optional[int] = None, + **kwargs: Any + ) -> None: + """ + :keyword tags: Resource tags. + :paramtype tags: dict[str, str] + :keyword location: The geo-location where the resource lives. Required. + :paramtype location: str + :keyword provisioning_state: A provisioning state of the ThroughputPool. Known values are: + "Uninitialized", "Initializing", "InternallyReady", "Online", "Deleting", "Succeeded", + "Failed", "Canceled", and "Updating". + :paramtype provisioning_state: str or ~azure.mgmt.cosmosdb.models.Status + :keyword max_throughput: Value for throughput to be shared among CosmosDB resources in the + pool. + :paramtype max_throughput: int + """ + super().__init__(tags=tags, location=location, **kwargs) + self.provisioning_state = provisioning_state + self.max_throughput = max_throughput + + +class ThroughputPoolsListResult(_serialization.Model): + """The List operation response, that contains the throughput pools and their properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of throughput pools and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :ivar next_link: The link used to get the next page of results. + :vartype next_link: str + """ + + _validation = { + "value": {"readonly": True}, + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[ThroughputPoolResource]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.value = None + self.next_link = None + + +class ThroughputPoolUpdate(_serialization.Model): + """Represents a throughput pool resource for updates. + + :ivar provisioning_state: A provisioning state of the ThroughputPool. Known values are: + "Uninitialized", "Initializing", "InternallyReady", "Online", "Deleting", "Succeeded", + "Failed", "Canceled", and "Updating". + :vartype provisioning_state: str or ~azure.mgmt.cosmosdb.models.Status + :ivar max_throughput: Value for throughput to be shared among CosmosDB resources in the pool. + :vartype max_throughput: int + """ + + _attribute_map = { + "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, + "max_throughput": {"key": "properties.maxThroughput", "type": "int"}, + } + + def __init__( + self, + *, + provisioning_state: Optional[Union[str, "_models.Status"]] = None, + max_throughput: Optional[int] = None, + **kwargs: Any + ) -> None: + """ + :keyword provisioning_state: A provisioning state of the ThroughputPool. Known values are: + "Uninitialized", "Initializing", "InternallyReady", "Online", "Deleting", "Succeeded", + "Failed", "Canceled", and "Updating". + :paramtype provisioning_state: str or ~azure.mgmt.cosmosdb.models.Status + :keyword max_throughput: Value for throughput to be shared among CosmosDB resources in the + pool. + :paramtype max_throughput: int + """ + super().__init__(**kwargs) + self.provisioning_state = provisioning_state + self.max_throughput = max_throughput + + class ThroughputSettingsResource(_serialization.Model): """Cosmos DB resource throughput object. Either throughput is required or autoscaleSettings is required, but not both. diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/__init__.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/__init__.py index 1362bf5995b..f2932ba3818 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/__init__.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/__init__.py @@ -46,6 +46,10 @@ from ._restorable_tables_operations import RestorableTablesOperations from ._restorable_table_resources_operations import RestorableTableResourcesOperations from ._service_operations import ServiceOperations +from ._throughput_pools_operations import ThroughputPoolsOperations +from ._throughput_pool_operations import ThroughputPoolOperations +from ._throughput_pool_accounts_operations import ThroughputPoolAccountsOperations +from ._throughput_pool_account_operations import ThroughputPoolAccountOperations from ._patch import __all__ as _patch_all from ._patch import * # pylint: disable=unused-wildcard-import @@ -92,6 +96,10 @@ "RestorableTablesOperations", "RestorableTableResourcesOperations", "ServiceOperations", + "ThroughputPoolsOperations", + "ThroughputPoolOperations", + "ThroughputPoolAccountsOperations", + "ThroughputPoolAccountOperations", ] __all__.extend([p for p in _patch_all if p not in __all__]) _patch_sdk() diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py index 6e8e82f4709..c462fdfba74 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py @@ -43,7 +43,7 @@ def build_list_by_subscription_request(subscription_id: str, **kwargs: Any) -> H _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -69,7 +69,7 @@ def build_list_by_resource_group_request(resource_group_name: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -99,7 +99,7 @@ def build_get_request(resource_group_name: str, cluster_name: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -134,7 +134,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -169,7 +169,7 @@ def build_create_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -207,7 +207,7 @@ def build_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -245,7 +245,7 @@ def build_invoke_command_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -277,13 +277,124 @@ def build_invoke_command_request( return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) +def build_invoke_command_async_request( + resource_group_name: str, cluster_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommandAsync", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "clusterName": _SERIALIZER.url( + "cluster_name", cluster_name, "str", max_length=100, min_length=1, pattern=r"^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_command_request( + resource_group_name: str, cluster_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/commands", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "clusterName": _SERIALIZER.url( + "cluster_name", cluster_name, "str", max_length=100, min_length=1, pattern=r"^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_command_async_request( + resource_group_name: str, cluster_name: str, command_id: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/commands/{commandId}", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "clusterName": _SERIALIZER.url( + "cluster_name", cluster_name, "str", max_length=100, min_length=1, pattern=r"^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$" + ), + "commandId": _SERIALIZER.url( + "command_id", command_id, "str", max_length=100, min_length=1, pattern=r"^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + def build_list_backups_request( resource_group_name: str, cluster_name: str, subscription_id: str, **kwargs: Any ) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -318,7 +429,7 @@ def build_get_backup_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -359,7 +470,7 @@ def build_deallocate_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -396,7 +507,7 @@ def build_start_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -431,7 +542,7 @@ def build_status_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -460,7 +571,7 @@ def build_status_request( return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -class CassandraClustersOperations: +class CassandraClustersOperations: # pylint: disable=too-many-public-methods """ .. warning:: **DO NOT** instantiate this class directly. @@ -1472,6 +1583,387 @@ def get_long_running_output(pipeline_response): "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommand" } + def _invoke_command_async_initial( + self, resource_group_name: str, cluster_name: str, body: Union[_models.CommandPostBody, IO], **kwargs: Any + ) -> Optional[_models.CommandPublicResource]: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Optional[_models.CommandPublicResource]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IOBase, bytes)): + _content = body + else: + _json = self._serialize.body(body, "CommandPostBody") + + request = build_invoke_command_async_request( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._invoke_command_async_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + response_headers = {} + if response.status_code == 200: + deserialized = self._deserialize("CommandPublicResource", pipeline_response) + + if response.status_code == 202: + response_headers["azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("azure-AsyncOperation") + ) + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + _invoke_command_async_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommandAsync" + } + + @overload + def begin_invoke_command_async( + self, + resource_group_name: str, + cluster_name: str, + body: _models.CommandPostBody, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.CommandPublicResource]: + """Invoke a command like nodetool for cassandra maintenance asynchronously. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :param body: Specification which command to run where. Required. + :type body: ~azure.mgmt.cosmosdb.models.CommandPostBody + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either CommandPublicResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.CommandPublicResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_invoke_command_async( + self, + resource_group_name: str, + cluster_name: str, + body: IO, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.CommandPublicResource]: + """Invoke a command like nodetool for cassandra maintenance asynchronously. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :param body: Specification which command to run where. Required. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either CommandPublicResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.CommandPublicResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_invoke_command_async( + self, resource_group_name: str, cluster_name: str, body: Union[_models.CommandPostBody, IO], **kwargs: Any + ) -> LROPoller[_models.CommandPublicResource]: + """Invoke a command like nodetool for cassandra maintenance asynchronously. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :param body: Specification which command to run where. Is either a CommandPostBody type or a IO + type. Required. + :type body: ~azure.mgmt.cosmosdb.models.CommandPostBody or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either CommandPublicResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.CommandPublicResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.CommandPublicResource] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._invoke_command_async_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("CommandPublicResource", pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_invoke_command_async.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommandAsync" + } + + @distributed_trace + def list_command( + self, resource_group_name: str, cluster_name: str, **kwargs: Any + ) -> Iterable["_models.CommandPublicResource"]: + """List all commands currently running on ring info. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CommandPublicResource or the result of + cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.CommandPublicResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ListCommands] = kwargs.pop("cls", None) + + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + request = build_list_command_request( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_command.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListCommands", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + list_command.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/commands" + } + + @distributed_trace + def get_command_async( + self, resource_group_name: str, cluster_name: str, command_id: str, **kwargs: Any + ) -> _models.ListCommands: + """Get details about a specified command that was run asynchronously. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. Required. + :type cluster_name: str + :param command_id: Managed Cassandra cluster command id. Required. + :type command_id: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ListCommands or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.ListCommands + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ListCommands] = kwargs.pop("cls", None) + + request = build_get_command_async_request( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + command_id=command_id, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get_command_async.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ListCommands", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_command_async.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/commands/{commandId}" + } + @distributed_trace def list_backups( self, resource_group_name: str, cluster_name: str, **kwargs: Any diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_data_centers_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_data_centers_operations.py index 3e02fa5b430..245ec0561ac 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_data_centers_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_data_centers_operations.py @@ -43,7 +43,7 @@ def build_list_request(resource_group_name: str, cluster_name: str, subscription _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -78,7 +78,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -121,7 +121,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -164,7 +164,7 @@ def build_create_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -210,7 +210,7 @@ def build_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_resources_operations.py index 735cd18d369..5f97dc723f5 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_resources_operations.py @@ -45,7 +45,7 @@ def build_list_cassandra_keyspaces_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -80,7 +80,7 @@ def build_get_cassandra_keyspace_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -116,7 +116,7 @@ def build_create_update_cassandra_keyspace_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -154,7 +154,7 @@ def build_delete_cassandra_keyspace_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -185,7 +185,7 @@ def build_get_cassandra_keyspace_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -221,7 +221,7 @@ def build_update_cassandra_keyspace_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -260,7 +260,7 @@ def build_migrate_cassandra_keyspace_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -296,7 +296,7 @@ def build_migrate_cassandra_keyspace_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -332,7 +332,7 @@ def build_list_cassandra_tables_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -373,7 +373,7 @@ def build_get_cassandra_table_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -415,7 +415,7 @@ def build_create_update_cassandra_table_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -459,7 +459,7 @@ def build_delete_cassandra_table_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -496,7 +496,7 @@ def build_get_cassandra_table_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -538,7 +538,7 @@ def build_update_cassandra_table_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -583,7 +583,7 @@ def build_migrate_cassandra_table_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -625,7 +625,7 @@ def build_migrate_cassandra_table_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -662,7 +662,7 @@ def build_list_cassandra_views_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -698,7 +698,7 @@ def build_get_cassandra_view_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -735,7 +735,7 @@ def build_create_update_cassandra_view_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -774,7 +774,7 @@ def build_delete_cassandra_view_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -806,7 +806,7 @@ def build_get_cassandra_view_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -843,7 +843,7 @@ def build_update_cassandra_view_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -883,7 +883,7 @@ def build_migrate_cassandra_view_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -920,7 +920,7 @@ def build_migrate_cassandra_view_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_operations.py index 8d65ad3c145..33293f87c88 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_operations.py @@ -49,7 +49,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -94,7 +94,7 @@ def build_list_usages_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -138,7 +138,7 @@ def build_list_metric_definitions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_operations.py index c6a18a27cf0..ea3952715c0 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_operations.py @@ -49,7 +49,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -94,7 +94,7 @@ def build_list_usages_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_region_operations.py index d26412c69d1..440924eacad 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_region_operations.py @@ -50,7 +50,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_region_operations.py index 8adb9f5a1d0..fcfa3105bf2 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_region_operations.py @@ -50,7 +50,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_data_transfer_jobs_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_data_transfer_jobs_operations.py index 6f15ee21b7e..67469b724af 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_data_transfer_jobs_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_data_transfer_jobs_operations.py @@ -43,7 +43,7 @@ def build_create_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -82,7 +82,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -118,7 +118,7 @@ def build_pause_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -154,7 +154,7 @@ def build_resume_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -190,7 +190,7 @@ def build_cancel_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -220,13 +220,49 @@ def build_cancel_request( return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) +def build_complete_request( + resource_group_name: str, account_name: str, job_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}/complete", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "accountName": _SERIALIZER.url( + "account_name", account_name, "str", max_length=50, min_length=3, pattern=r"^[a-z0-9]+(-[a-z0-9]+)*" + ), + "jobName": _SERIALIZER.url("job_name", job_name, "str"), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + def build_list_by_database_account_request( resource_group_name: str, account_name: str, subscription_id: str, **kwargs: Any ) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -693,6 +729,73 @@ def cancel( "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}/cancel" } + @distributed_trace + def complete( + self, resource_group_name: str, account_name: str, job_name: str, **kwargs: Any + ) -> _models.DataTransferJobGetResults: + """Completes a Data Transfer Online Job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. Required. + :type account_name: str + :param job_name: Name of the Data Transfer Job. Required. + :type job_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DataTransferJobGetResults or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.DataTransferJobGetResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.DataTransferJobGetResults] = kwargs.pop("cls", None) + + request = build_complete_request( + resource_group_name=resource_group_name, + account_name=account_name, + job_name=job_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.complete.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize("DataTransferJobGetResults", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + complete.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}/complete" + } + @distributed_trace def list_by_database_account( self, resource_group_name: str, account_name: str, **kwargs: Any diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_account_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_account_region_operations.py index 286728855ac..dfcd307c6d3 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_account_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_account_region_operations.py @@ -42,7 +42,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_accounts_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_accounts_operations.py index 47b3e88213a..340621f814e 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_accounts_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_accounts_operations.py @@ -43,7 +43,7 @@ def build_get_request(resource_group_name: str, account_name: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -78,7 +78,7 @@ def build_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -116,7 +116,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -153,7 +153,7 @@ def build_delete_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -183,7 +183,7 @@ def build_failover_priority_change_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) # Construct URL _url = kwargs.pop( @@ -216,7 +216,7 @@ def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -240,7 +240,7 @@ def build_list_by_resource_group_request(resource_group_name: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -272,7 +272,7 @@ def build_list_keys_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -307,7 +307,7 @@ def build_list_connection_strings_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -342,7 +342,7 @@ def build_offline_region_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -380,7 +380,7 @@ def build_online_region_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -418,7 +418,7 @@ def build_get_read_only_keys_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -453,7 +453,7 @@ def build_list_read_only_keys_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -488,7 +488,7 @@ def build_regenerate_key_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) # Construct URL _url = kwargs.pop( @@ -520,7 +520,7 @@ def build_regenerate_key_request( def build_check_name_exists_request(account_name: str, **kwargs: Any) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop("template_url", "/providers/Microsoft.DocumentDB/databaseAccountNames/{accountName}") path_format_arguments = { @@ -543,7 +543,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -579,7 +579,7 @@ def build_list_usages_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -616,7 +616,7 @@ def build_list_metric_definitions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_operations.py index 56d077db797..a182738bc56 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_operations.py @@ -42,7 +42,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -85,7 +85,7 @@ def build_list_usages_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -123,7 +123,7 @@ def build_list_metric_definitions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_graph_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_graph_resources_operations.py index a5a47be6fdf..9e37c1f73f2 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_graph_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_graph_resources_operations.py @@ -45,7 +45,7 @@ def build_list_graphs_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -80,7 +80,7 @@ def build_get_graph_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -116,7 +116,7 @@ def build_create_update_graph_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -154,7 +154,7 @@ def build_delete_graph_resource_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_gremlin_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_gremlin_resources_operations.py index e94cc0b1299..92ab9371073 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_gremlin_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_gremlin_resources_operations.py @@ -45,7 +45,7 @@ def build_list_gremlin_databases_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -80,7 +80,7 @@ def build_get_gremlin_database_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -116,7 +116,7 @@ def build_create_update_gremlin_database_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -154,7 +154,7 @@ def build_delete_gremlin_database_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -185,7 +185,7 @@ def build_get_gremlin_database_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -221,7 +221,7 @@ def build_update_gremlin_database_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -260,7 +260,7 @@ def build_migrate_gremlin_database_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -296,7 +296,7 @@ def build_migrate_gremlin_database_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -332,7 +332,7 @@ def build_list_gremlin_graphs_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -373,7 +373,7 @@ def build_get_gremlin_graph_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -415,7 +415,7 @@ def build_create_update_gremlin_graph_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -459,7 +459,7 @@ def build_delete_gremlin_graph_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -496,7 +496,7 @@ def build_get_gremlin_graph_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -538,7 +538,7 @@ def build_update_gremlin_graph_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -583,7 +583,7 @@ def build_migrate_gremlin_graph_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -625,7 +625,7 @@ def build_migrate_gremlin_graph_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -667,7 +667,7 @@ def build_retrieve_continuous_backup_information_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_locations_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_locations_operations.py index 0a008718c6a..edd03a87a0c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_locations_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_locations_operations.py @@ -40,7 +40,7 @@ def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -64,7 +64,7 @@ def build_get_request(location: str, subscription_id: str, **kwargs: Any) -> Htt _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_clusters_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_clusters_operations.py index 1aa9008cf68..c933db7203a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_clusters_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_clusters_operations.py @@ -43,7 +43,7 @@ def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -67,7 +67,7 @@ def build_list_by_resource_group_request(resource_group_name: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -99,7 +99,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -142,7 +142,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -182,7 +182,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -222,7 +222,7 @@ def build_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -265,7 +265,7 @@ def build_create_or_update_firewall_rule_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -316,7 +316,7 @@ def build_delete_firewall_rule_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -364,7 +364,7 @@ def build_get_firewall_rule_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -412,7 +412,7 @@ def build_list_firewall_rules_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -450,7 +450,7 @@ def build_check_name_availability_request(location: str, subscription_id: str, * _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -483,7 +483,7 @@ def build_list_connection_strings_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_db_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_db_resources_operations.py index 6c70bb6f85c..01c6a9f32d0 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_db_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_db_resources_operations.py @@ -45,7 +45,7 @@ def build_list_mongo_db_databases_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -80,7 +80,7 @@ def build_get_mongo_db_database_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -116,7 +116,7 @@ def build_create_update_mongo_db_database_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -154,7 +154,7 @@ def build_delete_mongo_db_database_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -185,7 +185,7 @@ def build_get_mongo_db_database_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -221,7 +221,7 @@ def build_update_mongo_db_database_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -260,7 +260,7 @@ def build_migrate_mongo_db_database_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -296,7 +296,7 @@ def build_migrate_mongo_db_database_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -332,7 +332,7 @@ def build_mongo_db_database_retrieve_throughput_distribution_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -371,7 +371,7 @@ def build_mongo_db_database_redistribute_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -415,7 +415,7 @@ def build_mongo_db_container_retrieve_throughput_distribution_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -460,7 +460,7 @@ def build_mongo_db_container_redistribute_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -500,7 +500,7 @@ def build_list_mongo_db_collections_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -541,7 +541,7 @@ def build_get_mongo_db_collection_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -583,7 +583,7 @@ def build_create_update_mongo_db_collection_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -627,7 +627,7 @@ def build_delete_mongo_db_collection_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -659,7 +659,7 @@ def build_mongo_db_database_partition_merge_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -703,7 +703,7 @@ def build_list_mongo_db_collection_partition_merge_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -748,7 +748,7 @@ def build_get_mongo_db_collection_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -790,7 +790,7 @@ def build_update_mongo_db_collection_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -835,7 +835,7 @@ def build_migrate_mongo_db_collection_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -877,7 +877,7 @@ def build_migrate_mongo_db_collection_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -914,7 +914,7 @@ def build_get_mongo_role_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -950,7 +950,7 @@ def build_create_update_mongo_role_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -989,7 +989,7 @@ def build_delete_mongo_role_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1025,7 +1025,7 @@ def build_list_mongo_role_definitions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1060,7 +1060,7 @@ def build_get_mongo_user_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1096,7 +1096,7 @@ def build_create_update_mongo_user_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -1135,7 +1135,7 @@ def build_delete_mongo_user_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1171,7 +1171,7 @@ def build_list_mongo_user_definitions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1211,7 +1211,7 @@ def build_retrieve_continuous_backup_information_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_notebook_workspaces_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_notebook_workspaces_operations.py index 8abe0ce3cad..987bb3c814b 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_notebook_workspaces_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_notebook_workspaces_operations.py @@ -45,7 +45,7 @@ def build_list_by_database_account_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -84,7 +84,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -124,7 +124,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -167,7 +167,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -207,7 +207,7 @@ def build_list_connection_info_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -247,7 +247,7 @@ def build_regenerate_auth_token_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -287,7 +287,7 @@ def build_start_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_operations.py index 680d97dbb0d..3a95d4f0aaa 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_operations.py @@ -40,7 +40,7 @@ def build_list_request(**kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_operations.py index 405a0d39898..844f81950b0 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_operations.py @@ -50,7 +50,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_region_operations.py index c8ecb4823b2..12c5a233355 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_region_operations.py @@ -51,7 +51,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_operations.py index 5c9500e42cc..0b1fd3db5b2 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_operations.py @@ -42,7 +42,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_source_target_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_source_target_operations.py index 121828110dc..7466153d87f 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_source_target_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_source_target_operations.py @@ -49,7 +49,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_target_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_target_operations.py index a72446afd86..258597e3a11 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_target_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_target_operations.py @@ -42,7 +42,7 @@ def build_list_metrics_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_endpoint_connections_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_endpoint_connections_operations.py index 5bed4f54e32..d0d4085d564 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_endpoint_connections_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_endpoint_connections_operations.py @@ -45,7 +45,7 @@ def build_list_by_database_account_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -84,7 +84,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -126,7 +126,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -171,7 +171,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_link_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_link_resources_operations.py index cc24b810fec..cf97528b4d7 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_link_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_link_resources_operations.py @@ -42,7 +42,7 @@ def build_list_by_database_account_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -77,7 +77,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_database_accounts_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_database_accounts_operations.py index 96d97afc695..66d54b23bd9 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_database_accounts_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_database_accounts_operations.py @@ -40,7 +40,7 @@ def build_list_by_location_request(location: str, subscription_id: str, **kwargs _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -68,7 +68,7 @@ def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -94,7 +94,7 @@ def build_get_by_location_request(location: str, instance_id: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_databases_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_databases_operations.py index 9d170d4bafb..5504a60b24e 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_databases_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_databases_operations.py @@ -40,7 +40,7 @@ def build_list_request(location: str, instance_id: str, subscription_id: str, ** _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_graphs_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_graphs_operations.py index e18eaffa86d..a50849e0f74 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_graphs_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_graphs_operations.py @@ -49,7 +49,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_resources_operations.py index cc6fc73044f..083947b352c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_gremlin_resources_operations.py @@ -48,7 +48,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_collections_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_collections_operations.py index e57871288fd..f351550f6c8 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_collections_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_collections_operations.py @@ -49,7 +49,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_databases_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_databases_operations.py index 4a71e8752d0..a89fc61b455 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_databases_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_databases_operations.py @@ -40,7 +40,7 @@ def build_list_request(location: str, instance_id: str, subscription_id: str, ** _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_resources_operations.py index 466bbdb5186..e44fc0faa75 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_resources_operations.py @@ -48,7 +48,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_containers_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_containers_operations.py index 24605e4ec6a..3256b65bd7d 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_containers_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_containers_operations.py @@ -49,7 +49,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_databases_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_databases_operations.py index 94bbfd97324..b1bb980e23b 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_databases_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_databases_operations.py @@ -40,7 +40,7 @@ def build_list_request(location: str, instance_id: str, subscription_id: str, ** _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_resources_operations.py index 8f33ebb8941..7d71166ee9d 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_resources_operations.py @@ -48,7 +48,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_table_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_table_resources_operations.py index 29006432ae6..41a16a3f5b0 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_table_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_table_resources_operations.py @@ -48,7 +48,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_tables_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_tables_operations.py index e70b7a32eff..eb7d5b0cff3 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_tables_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_tables_operations.py @@ -48,7 +48,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_service_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_service_operations.py index a31a3f8d2de..7f71e4e25e4 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_service_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_service_operations.py @@ -43,7 +43,7 @@ def build_list_request(resource_group_name: str, account_name: str, subscription _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -78,7 +78,7 @@ def build_create_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -117,7 +117,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -153,7 +153,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_sql_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_sql_resources_operations.py index fbd7e568a0f..97dc590500d 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_sql_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_sql_resources_operations.py @@ -45,7 +45,7 @@ def build_list_sql_databases_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -80,7 +80,7 @@ def build_get_sql_database_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -116,7 +116,7 @@ def build_create_update_sql_database_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -154,7 +154,7 @@ def build_delete_sql_database_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -185,7 +185,7 @@ def build_get_sql_database_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -221,7 +221,7 @@ def build_update_sql_database_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -260,7 +260,7 @@ def build_migrate_sql_database_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -296,7 +296,7 @@ def build_migrate_sql_database_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -332,7 +332,7 @@ def build_list_client_encryption_keys_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -373,7 +373,7 @@ def build_get_client_encryption_key_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -415,7 +415,7 @@ def build_create_update_client_encryption_key_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -455,7 +455,7 @@ def build_list_sql_containers_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -496,7 +496,7 @@ def build_get_sql_container_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -538,7 +538,7 @@ def build_create_update_sql_container_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -582,7 +582,7 @@ def build_delete_sql_container_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -614,7 +614,7 @@ def build_sql_database_partition_merge_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -658,7 +658,7 @@ def build_list_sql_container_partition_merge_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -703,7 +703,7 @@ def build_get_sql_container_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -745,7 +745,7 @@ def build_update_sql_container_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -790,7 +790,7 @@ def build_migrate_sql_container_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -832,7 +832,7 @@ def build_migrate_sql_container_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -869,7 +869,7 @@ def build_sql_database_retrieve_throughput_distribution_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -908,7 +908,7 @@ def build_sql_database_redistribute_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -952,7 +952,7 @@ def build_sql_container_retrieve_throughput_distribution_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -997,7 +997,7 @@ def build_sql_container_redistribute_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -1042,7 +1042,7 @@ def build_list_sql_stored_procedures_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1085,7 +1085,7 @@ def build_get_sql_stored_procedure_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1129,7 +1129,7 @@ def build_create_update_sql_stored_procedure_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -1175,7 +1175,7 @@ def build_delete_sql_stored_procedure_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -1213,7 +1213,7 @@ def build_list_sql_user_defined_functions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1256,7 +1256,7 @@ def build_get_sql_user_defined_function_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1300,7 +1300,7 @@ def build_create_update_sql_user_defined_function_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -1346,7 +1346,7 @@ def build_delete_sql_user_defined_function_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -1384,7 +1384,7 @@ def build_list_sql_triggers_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1427,7 +1427,7 @@ def build_get_sql_trigger_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1471,7 +1471,7 @@ def build_create_update_sql_trigger_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -1517,7 +1517,7 @@ def build_delete_sql_trigger_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -1550,7 +1550,7 @@ def build_get_sql_role_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1586,7 +1586,7 @@ def build_create_update_sql_role_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -1625,7 +1625,7 @@ def build_delete_sql_role_definition_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1661,7 +1661,7 @@ def build_list_sql_role_definitions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1696,7 +1696,7 @@ def build_get_sql_role_assignment_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1732,7 +1732,7 @@ def build_create_update_sql_role_assignment_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -1771,7 +1771,7 @@ def build_delete_sql_role_assignment_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1807,7 +1807,7 @@ def build_list_sql_role_assignments_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1847,7 +1847,7 @@ def build_retrieve_continuous_backup_information_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_table_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_table_resources_operations.py index c12a5182d34..07119656369 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_table_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_table_resources_operations.py @@ -45,7 +45,7 @@ def build_list_tables_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -80,7 +80,7 @@ def build_get_table_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -116,7 +116,7 @@ def build_create_update_table_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -154,7 +154,7 @@ def build_delete_table_request( ) -> HttpRequest: _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) # Construct URL _url = kwargs.pop( "template_url", @@ -185,7 +185,7 @@ def build_get_table_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -221,7 +221,7 @@ def build_update_table_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -260,7 +260,7 @@ def build_migrate_table_to_autoscale_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -296,7 +296,7 @@ def build_migrate_table_to_manual_throughput_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -332,7 +332,7 @@ def build_retrieve_continuous_backup_information_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2023-09-15-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_account_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_account_operations.py new file mode 100644 index 00000000000..147f5a326c3 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_account_operations.py @@ -0,0 +1,660 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from io import IOBase +from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload + +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._serialization import Serializer +from .._vendor import _convert_request + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_get_request( + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "throughputPoolName": _SERIALIZER.url( + "throughput_pool_name", + throughput_pool_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + "throughputPoolAccountName": _SERIALIZER.url( + "throughput_pool_account_name", + throughput_pool_account_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_create_request( + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "throughputPoolName": _SERIALIZER.url( + "throughput_pool_name", + throughput_pool_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + "throughputPoolAccountName": _SERIALIZER.url( + "throughput_pool_account_name", + throughput_pool_account_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "throughputPoolName": _SERIALIZER.url( + "throughput_pool_name", + throughput_pool_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + "throughputPoolAccountName": _SERIALIZER.url( + "throughput_pool_account_name", + throughput_pool_account_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +class ThroughputPoolAccountOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.cosmosdb.CosmosDBManagementClient`'s + :attr:`throughput_pool_account` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def get( + self, resource_group_name: str, throughput_pool_name: str, throughput_pool_account_name: str, **kwargs: Any + ) -> _models.ThroughputPoolAccountResource: + """Retrieves the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ThroughputPoolAccountResource or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolAccountResource] = kwargs.pop("cls", None) + + request = build_get_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ThroughputPoolAccountResource", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } + + def _create_initial( + self, + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + body: Union[_models.ThroughputPoolAccountResource, IO], + **kwargs: Any + ) -> _models.ThroughputPoolAccountResource: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolAccountResource] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IOBase, bytes)): + _content = body + else: + _json = self._serialize.body(body, "ThroughputPoolAccountResource") + + request = build_create_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._create_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize("ThroughputPoolAccountResource", pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize("ThroughputPoolAccountResource", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + _create_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } + + @overload + def begin_create( + self, + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + body: _models.ThroughputPoolAccountResource, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolAccountResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :param body: The parameters to provide for the current ThroughputPoolAccount. Required. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolAccountResource or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_create( + self, + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + body: IO, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolAccountResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :param body: The parameters to provide for the current ThroughputPoolAccount. Required. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolAccountResource or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_create( + self, + resource_group_name: str, + throughput_pool_name: str, + throughput_pool_account_name: str, + body: Union[_models.ThroughputPoolAccountResource, IO], + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolAccountResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :param body: The parameters to provide for the current ThroughputPoolAccount. Is either a + ThroughputPoolAccountResource type or a IO type. Required. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolAccountResource or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolAccountResource] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._create_initial( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ThroughputPoolAccountResource", pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_create.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, resource_group_name: str, throughput_pool_name: str, throughput_pool_account_name: str, **kwargs: Any + ) -> None: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + + request = build_delete_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("azure-AsyncOperation") + ) + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + + if cls: + return cls(pipeline_response, None, response_headers) + + _delete_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } + + @distributed_trace + def begin_delete( + self, resource_group_name: str, throughput_pool_name: str, throughput_pool_account_name: str, **kwargs: Any + ) -> LROPoller[None]: + """Removes an existing Azure Cosmos DB database account from a throughput pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param throughput_pool_account_name: Cosmos DB global database account in a Throughput Pool. + Required. + :type throughput_pool_account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._delete_initial( # type: ignore + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + throughput_pool_account_name=throughput_pool_account_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_delete.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts/{throughputPoolAccountName}" + } diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_accounts_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_accounts_operations.py new file mode 100644 index 00000000000..411f7c27b8a --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_accounts_operations.py @@ -0,0 +1,189 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar +import urllib.parse + +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._serialization import Serializer +from .._vendor import _convert_request + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request( + resource_group_name: str, throughput_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "throughputPoolName": _SERIALIZER.url( + "throughput_pool_name", + throughput_pool_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +class ThroughputPoolAccountsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.cosmosdb.CosmosDBManagementClient`'s + :attr:`throughput_pool_accounts` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list( + self, resource_group_name: str, throughput_pool_name: str, **kwargs: Any + ) -> Iterable["_models.ThroughputPoolAccountResource"]: + """Lists all the Azure Cosmos DB accounts available under the subscription. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ThroughputPoolAccountResource or the result of + cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.ThroughputPoolAccountResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolAccountsListResult] = kwargs.pop("cls", None) + + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ThroughputPoolAccountsListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + list.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}/throughputPoolAccounts" + } diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_operations.py new file mode 100644 index 00000000000..20432bbdb18 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pool_operations.py @@ -0,0 +1,872 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from io import IOBase +from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload + +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._serialization import Serializer +from .._vendor import _convert_request + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_get_request( + resource_group_name: str, throughput_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "throughputPoolName": _SERIALIZER.url( + "throughput_pool_name", + throughput_pool_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_create_or_update_request( + resource_group_name: str, throughput_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "throughputPoolName": _SERIALIZER.url( + "throughput_pool_name", + throughput_pool_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_update_request( + resource_group_name: str, throughput_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "throughputPoolName": _SERIALIZER.url( + "throughput_pool_name", + throughput_pool_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PATCH", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, throughput_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "throughputPoolName": _SERIALIZER.url( + "throughput_pool_name", + throughput_pool_name, + "str", + max_length=50, + min_length=3, + pattern=r"^[a-z0-9]+(-[a-z0-9]+)*", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +class ThroughputPoolOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.cosmosdb.CosmosDBManagementClient`'s + :attr:`throughput_pool` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def get(self, resource_group_name: str, throughput_pool_name: str, **kwargs: Any) -> _models.ThroughputPoolResource: + """Retrieves the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ThroughputPoolResource or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.ThroughputPoolResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolResource] = kwargs.pop("cls", None) + + request = build_get_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + def _create_or_update_initial( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Union[_models.ThroughputPoolResource, IO], + **kwargs: Any + ) -> _models.ThroughputPoolResource: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolResource] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IOBase, bytes)): + _content = body + else: + _json = self._serialize.body(body, "ThroughputPoolResource") + + request = build_create_or_update_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._create_or_update_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + _create_or_update_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: _models.ThroughputPoolResource, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current ThroughputPool. Required. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolResource + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: IO, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current ThroughputPool. Required. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Union[_models.ThroughputPoolResource, IO], + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolResource]: + """Creates or updates an Azure Cosmos DB ThroughputPool account. The "Update" method is preferred + when performing updates on an account. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current ThroughputPool. Is either a + ThroughputPoolResource type or a IO type. Required. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolResource or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolResource] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_create_or_update.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + def _update_initial( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Optional[Union[_models.ThroughputPoolUpdate, IO]] = None, + **kwargs: Any + ) -> Optional[_models.ThroughputPoolResource]: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Optional[_models.ThroughputPoolResource]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IOBase, bytes)): + _content = body + else: + if body is not None: + _json = self._serialize.body(body, "ThroughputPoolUpdate") + else: + _json = None + + request = build_update_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._update_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + response_headers = {} + if response.status_code == 200: + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + + if response.status_code == 202: + response_headers["azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("azure-AsyncOperation") + ) + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + _update_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + @overload + def begin_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Optional[_models.ThroughputPoolUpdate] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolResource]: + """Updates the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current Throughput Pool. Default value is None. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolUpdate + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Optional[IO] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolResource]: + """Updates the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current Throughput Pool. Default value is None. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_update( + self, + resource_group_name: str, + throughput_pool_name: str, + body: Optional[Union[_models.ThroughputPoolUpdate, IO]] = None, + **kwargs: Any + ) -> LROPoller[_models.ThroughputPoolResource]: + """Updates the properties of an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :param body: The parameters to provide for the current Throughput Pool. Is either a + ThroughputPoolUpdate type or a IO type. Default value is None. + :type body: ~azure.mgmt.cosmosdb.models.ThroughputPoolUpdate or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ThroughputPoolResource or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ThroughputPoolResource] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._update_initial( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ThroughputPoolResource", pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_update.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, resource_group_name: str, throughput_pool_name: str, **kwargs: Any + ) -> None: + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + + request = build_delete_request( + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("azure-AsyncOperation") + ) + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + + if cls: + return cls(pipeline_response, None, response_headers) + + _delete_initial.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } + + @distributed_trace + def begin_delete(self, resource_group_name: str, throughput_pool_name: str, **kwargs: Any) -> LROPoller[None]: + """Deletes an existing Azure Cosmos DB Throughput Pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param throughput_pool_name: Cosmos DB Throughput Pool name. Required. + :type throughput_pool_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._delete_initial( # type: ignore + resource_group_name=resource_group_name, + throughput_pool_name=throughput_pool_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + begin_delete.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools/{throughputPoolName}" + } diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pools_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pools_operations.py new file mode 100644 index 00000000000..058d7a0bd1d --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_throughput_pools_operations.py @@ -0,0 +1,282 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar +import urllib.parse + +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._serialization import Serializer +from .._vendor import _convert_request + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/throughputPools") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_by_resource_group_request(resource_group_name: str, subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2024-02-15-preview")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools", + ) # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str", min_length=1), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +class ThroughputPoolsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.cosmosdb.CosmosDBManagementClient`'s + :attr:`throughput_pools` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list(self, **kwargs: Any) -> Iterable["_models.ThroughputPoolResource"]: + """Lists all the Azure Cosmos DB Throughput Pools available under the subscription. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ThroughputPoolResource or the result of + cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolsListResult] = kwargs.pop("cls", None) + + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ThroughputPoolsListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + list.metadata = {"url": "/subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/throughputPools"} + + @distributed_trace + def list_by_resource_group( + self, resource_group_name: str, **kwargs: Any + ) -> Iterable["_models.ThroughputPoolResource"]: + """List all the ThroughputPools in a given resource group. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ThroughputPoolResource or the result of + cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.ThroughputPoolResource] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ThroughputPoolsListResult] = kwargs.pop("cls", None) + + error_map = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + request = build_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata["url"], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ThroughputPoolsListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponseAutoGenerated, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + list_by_resource_group.metadata = { + "url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/throughputPools" + } From 5f1d5a7ffdf7cb9cdf6b7fe4fb777af3072fa19b Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Wed, 7 Feb 2024 18:06:15 -0600 Subject: [PATCH 02/37] update version --- src/cosmosdb-preview/HISTORY.rst | 4 ++++ src/cosmosdb-preview/setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/HISTORY.rst b/src/cosmosdb-preview/HISTORY.rst index e2e7005c5bc..928b8e33fcb 100644 --- a/src/cosmosdb-preview/HISTORY.rst +++ b/src/cosmosdb-preview/HISTORY.rst @@ -2,12 +2,16 @@ Release History =============== +0.27.0 + +++++++ 0.26.0 * Add '--enable-priority-based-execution' and '--default-priority-level' parameter for create/update database account. * Add support for cross account container copy * Add Non-CMK to CMK support * Removed preview tag from CMK related properties +++++++ 0.25.0 * Add support for performing database merge for Sql and MongoDB database account. diff --git a/src/cosmosdb-preview/setup.py b/src/cosmosdb-preview/setup.py index d3b2e52a8e7..79c2e0c8c9d 100644 --- a/src/cosmosdb-preview/setup.py +++ b/src/cosmosdb-preview/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.26.0' +VERSION = '0.27.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From b7ccf0a60f2b402e959d736d4e637f7478abecf6 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Wed, 14 Feb 2024 13:47:02 -0600 Subject: [PATCH 03/37] update sdk --- .../aio/operations/_cassandra_clusters_operations.py | 6 +++--- .../operations/_cassandra_clusters_operations.py | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py index c7ed159ca77..7aa3cd9d75e 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py @@ -1608,7 +1608,7 @@ async def get_backup( } async def _deallocate_initial( # pylint: disable=inconsistent-return-statements - self, resource_group_name: str, cluster_name: str, x_ms_force_deallocate: Optional[bool] = None, **kwargs: Any + self, resource_group_name: str, cluster_name: str, x_ms_force_deallocate: Optional[str] = None, **kwargs: Any ) -> None: error_map = { 401: ClientAuthenticationError, @@ -1657,7 +1657,7 @@ async def _deallocate_initial( # pylint: disable=inconsistent-return-statements @distributed_trace_async async def begin_deallocate( - self, resource_group_name: str, cluster_name: str, x_ms_force_deallocate: Optional[bool] = None, **kwargs: Any + self, resource_group_name: str, cluster_name: str, x_ms_force_deallocate: Optional[str] = None, **kwargs: Any ) -> AsyncLROPoller[None]: """Deallocate the Managed Cassandra Cluster and Associated Data Centers. Deallocation will deallocate the host virtual machine of this cluster, and reserved the data disk. This won't do @@ -1671,7 +1671,7 @@ async def begin_deallocate( :param x_ms_force_deallocate: Force to deallocate a cluster of Cluster Type Production. Force to deallocate a cluster of Cluster Type Production might cause data loss. Default value is None. - :type x_ms_force_deallocate: bool + :type x_ms_force_deallocate: str :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py index c462fdfba74..ff732e6869d 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py @@ -464,7 +464,7 @@ def build_deallocate_request( cluster_name: str, subscription_id: str, *, - x_ms_force_deallocate: Optional[bool] = None, + x_ms_force_deallocate: Optional[str] = None, **kwargs: Any ) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) @@ -495,7 +495,7 @@ def build_deallocate_request( # Construct headers if x_ms_force_deallocate is not None: - _headers["x-ms-force-deallocate"] = _SERIALIZER.header("x_ms_force_deallocate", x_ms_force_deallocate, "bool") + _headers["x-ms-force-deallocate"] = _SERIALIZER.header("x_ms_force_deallocate", x_ms_force_deallocate, "str") _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) @@ -2123,7 +2123,7 @@ def get_backup( } def _deallocate_initial( # pylint: disable=inconsistent-return-statements - self, resource_group_name: str, cluster_name: str, x_ms_force_deallocate: Optional[bool] = None, **kwargs: Any + self, resource_group_name: str, cluster_name: str, x_ms_force_deallocate: Optional[str] = None, **kwargs: Any ) -> None: error_map = { 401: ClientAuthenticationError, @@ -2172,7 +2172,7 @@ def _deallocate_initial( # pylint: disable=inconsistent-return-statements @distributed_trace def begin_deallocate( - self, resource_group_name: str, cluster_name: str, x_ms_force_deallocate: Optional[bool] = None, **kwargs: Any + self, resource_group_name: str, cluster_name: str, x_ms_force_deallocate: Optional[str] = None, **kwargs: Any ) -> LROPoller[None]: """Deallocate the Managed Cassandra Cluster and Associated Data Centers. Deallocation will deallocate the host virtual machine of this cluster, and reserved the data disk. This won't do @@ -2186,7 +2186,7 @@ def begin_deallocate( :param x_ms_force_deallocate: Force to deallocate a cluster of Cluster Type Production. Force to deallocate a cluster of Cluster Type Production might cause data loss. Default value is None. - :type x_ms_force_deallocate: bool + :type x_ms_force_deallocate: str :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this From c54e806b28479dbdb3bcb877e62883e04a5d3233 Mon Sep 17 00:00:00 2001 From: Kushal Warke Date: Fri, 16 Feb 2024 15:10:10 +0530 Subject: [PATCH 04/37] cli changes for PRPP --- .../azext_cosmosdb_preview/_params.py | 1 + .../azext_cosmosdb_preview/custom.py | 18 ++++++++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index b3f1a5ccfec..ee39095bcae 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -340,6 +340,7 @@ def load_arguments(self, _): c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.", is_preview=True) c.argument('enable_priority_based_execution', options_list=['--enable-priority-based-execution', '--enable-pbe'], arg_type=get_three_state_flag(), help="Flag to enable priority based execution on the account.", is_preview=True) c.argument('default_priority_level', arg_type=get_enum_type(DefaultPriorityLevel), help="Default Priority Level of Request if not specified.", is_preview=True) + c.argument('enable_perregion_perpartition_autoscale', options_list=['--enable_perregion_perpartition_autoscale', '-e'], arg_type=get_three_state_flag(), help="Enable or disable PerRegionPerPartitionAutoscale.") with self.argument_context('cosmosdb update') as c: c.argument('key_uri', help="The URI of the key vault", is_preview=True) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 35e14132046..014bd8f47ea 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -779,7 +779,8 @@ def cli_cosmosdb_create(cmd, enable_materialized_views=None, enable_burst_capacity=None, enable_priority_based_execution=None, - default_priority_level=None): + default_priority_level=None, + enable_perregion_perpartition_autoscale=None): """Create a new Azure Cosmos DB database account.""" from azure.cli.core.commands.client_factory import get_mgmt_service_client @@ -835,7 +836,8 @@ def cli_cosmosdb_create(cmd, enable_materialized_views=enable_materialized_views, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, - default_priority_level=default_priority_level) + default_priority_level=default_priority_level, + enable_perregion_perpartition_autoscale=enable_perregion_perpartition_autoscale) # pylint: disable=too-many-branches @@ -869,7 +871,8 @@ def cli_cosmosdb_update(client, enable_materialized_views=None, enable_burst_capacity=None, enable_priority_based_execution=None, - default_priority_level=None): + default_priority_level=None, + enable_perregion_perpartition_autoscale=None): """Update an existing Azure Cosmos DB database account. """ existing = client.get(resource_group_name, account_name) @@ -962,7 +965,8 @@ def cli_cosmosdb_update(client, enable_materialized_views=enable_materialized_views, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, - default_priority_level=default_priority_level) + default_priority_level=default_priority_level, + enable_perregion_perpartition_autoscale=enable_perregion_perpartition_autoscale) async_docdb_update = client.begin_update(resource_group_name, account_name, params) docdb_account = async_docdb_update.result() @@ -1167,7 +1171,8 @@ def _create_database_account(client, enable_burst_capacity=None, source_backup_location=None, enable_priority_based_execution=None, - default_priority_level=None): + default_priority_level=None, + enable_perregion_perpartition_autoscale=None): consistency_policy = None if default_consistency_level is not None: @@ -1306,7 +1311,8 @@ def _create_database_account(client, enable_materialized_views=enable_materialized_views, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, - default_priority_level=default_priority_level + default_priority_level=default_priority_level, + enable_perregion_perpartition_autoscale=enable_perregion_perpartition_autoscale ) async_docdb_create = client.begin_create_or_update(resource_group_name, account_name, params) From 53b0ab3179d1c877655f5a1a8363f8aa78bfcf94 Mon Sep 17 00:00:00 2001 From: Kushal Warke Date: Mon, 19 Feb 2024 16:17:21 +0530 Subject: [PATCH 05/37] variable name fix, added test case --- .../azext_cosmosdb_preview/_params.py | 2 +- .../azext_cosmosdb_preview/custom.py | 12 +- ...le_per_region_per_partition_autoscale.yaml | 2008 +++++++++++++++++ ...region-per-partition-autoscale-scenario.py | 50 + 4 files changed, 2065 insertions(+), 7 deletions(-) create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-enable-per-region-per-partition-autoscale-scenario.py diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index ee39095bcae..147dc76d7fe 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -340,7 +340,7 @@ def load_arguments(self, _): c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.", is_preview=True) c.argument('enable_priority_based_execution', options_list=['--enable-priority-based-execution', '--enable-pbe'], arg_type=get_three_state_flag(), help="Flag to enable priority based execution on the account.", is_preview=True) c.argument('default_priority_level', arg_type=get_enum_type(DefaultPriorityLevel), help="Default Priority Level of Request if not specified.", is_preview=True) - c.argument('enable_perregion_perpartition_autoscale', options_list=['--enable_perregion_perpartition_autoscale', '-e'], arg_type=get_three_state_flag(), help="Enable or disable PerRegionPerPartitionAutoscale.") + c.argument('enable_per_region_per_partition_autoscale', arg_type=get_three_state_flag(), help="Enable or disable PerRegionPerPartitionAutoscale.", is_preview=True) with self.argument_context('cosmosdb update') as c: c.argument('key_uri', help="The URI of the key vault", is_preview=True) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 014bd8f47ea..805f016c962 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -780,7 +780,7 @@ def cli_cosmosdb_create(cmd, enable_burst_capacity=None, enable_priority_based_execution=None, default_priority_level=None, - enable_perregion_perpartition_autoscale=None): + enable_per_region_per_partition_autoscale=None): """Create a new Azure Cosmos DB database account.""" from azure.cli.core.commands.client_factory import get_mgmt_service_client @@ -837,7 +837,7 @@ def cli_cosmosdb_create(cmd, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, - enable_perregion_perpartition_autoscale=enable_perregion_perpartition_autoscale) + enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale) # pylint: disable=too-many-branches @@ -872,7 +872,7 @@ def cli_cosmosdb_update(client, enable_burst_capacity=None, enable_priority_based_execution=None, default_priority_level=None, - enable_perregion_perpartition_autoscale=None): + enable_per_region_per_partition_autoscale=None): """Update an existing Azure Cosmos DB database account. """ existing = client.get(resource_group_name, account_name) @@ -966,7 +966,7 @@ def cli_cosmosdb_update(client, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, - enable_perregion_perpartition_autoscale=enable_perregion_perpartition_autoscale) + enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale) async_docdb_update = client.begin_update(resource_group_name, account_name, params) docdb_account = async_docdb_update.result() @@ -1172,7 +1172,7 @@ def _create_database_account(client, source_backup_location=None, enable_priority_based_execution=None, default_priority_level=None, - enable_perregion_perpartition_autoscale=None): + enable_per_region_per_partition_autoscale=None): consistency_policy = None if default_consistency_level is not None: @@ -1312,7 +1312,7 @@ def _create_database_account(client, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, - enable_perregion_perpartition_autoscale=enable_perregion_perpartition_autoscale + enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale ) async_docdb_create = client.begin_create_or_update(resource_group_name, account_name, params) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml new file mode 100644 index 00000000000..27c7940fbee --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml @@ -0,0 +1,2008 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cosmosTest?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest","name":"cosmosTest","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DONT + CREATE NEW RESOURCES HERE":"TRUE"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Feb 2024 10:20:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7FFEE2A4C77247CB971097B791471E97 Ref B: MAA201060516027 Ref C: 2024-02-19T10:20:19Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "enablePerRegionPerPartitionAutoscale": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '290' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:20:25.2858337Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:20:25.2858337Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:20:25.2858337Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:20:25.2858337Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:20:25.2858337Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 + cache-control: + - no-store, no-cache + content-length: + - '2811' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:20:26 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Qu5f4O46bcw1eSE-flppoM7ueD1QO33-dZEKrbdvgBdfEdtQyZZIqjmxilPyJ_CR0HrlvyTaIEasnRbHR_H2dI9D0WKIU028HUWiEZ904CaI3oyE3XElskzCngiQVKp7s20WKG5-ccSjnKGTQSrA53iIgBHHyoTqY9H8mCtFZwSf5RxDfboIDEwIH49Qj2UHfYpXHHxVpp6uUVXZX7w7tGF44rVh4VDiZ01WltsDnLK_BsLHI-zgA9o_j8M2U_067LzXbMX3GQbsAJTKovdSCOaSymx8pjvLLUUb6adF8qwepY6NkiMPXdBCveWb-Li5UEH19gy0vplHNfsK-BjNbA&h=xTPS5VhEuL7j7DFh6GFsrnv7gRJq3BQt2sxxuY277B0 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: F7FDB4D3E6CB428EB9F78856260CCEE5 Ref B: MAA201060516023 Ref C: 2024-02-19T10:20:19Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:20:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CA9A13277497421986ED602EF8F33BBE Ref B: MAA201060516031 Ref C: 2024-02-19T10:20:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:20:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4F50481F2A0947EF9F0EBF3714F165C0 Ref B: MAA201060514009 Ref C: 2024-02-19T10:20:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:21:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B8CE3768D06A4623A10F091D20C1B588 Ref B: MAA201060514051 Ref C: 2024-02-19T10:21:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:21:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DBAB5649FAF749C28D14C5DB6A86B20A Ref B: MAA201060513033 Ref C: 2024-02-19T10:21:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:22:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BAEB93C439A747C99674BC25D1E0267E Ref B: MAA201060516053 Ref C: 2024-02-19T10:22:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3225' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:22:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E8B6C1FFD2304A539826A958A2E06C3C Ref B: MAA201060515009 Ref C: 2024-02-19T10:22:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3225' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:22:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D5EA4E565DE14DE9A61763823F8D2AB2 Ref B: MAA201060516037 Ref C: 2024-02-19T10:22:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3225' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:22:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FC46545DBE1544B689278179EAC02961 Ref B: MAA201060516049 Ref C: 2024-02-19T10:22:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3225' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:22:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 776ABA10EF8F4909A28BB7B96ECC01CE Ref B: MAA201060513025 Ref C: 2024-02-19T10:22:31Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"apiProperties": {}, "enablePerRegionPerPartitionAutoscale": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + Content-Length: + - '84' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=iWo7wNOZCFTNkE02bGnhiji7xOI2ZXgbGBmphxOSGMrcusorKu9ztxCD8DhgNLIVwC16LDQCPgra_hmXMcHuGqpQkH6QPHqTe6-MiwdRdC65fDGkbf7zf868FqBqanVxy03SNQe1RBPIdRnQJeYCiQbOTHfTVn4lLJFFX74dkoWVfE6sidhofC6gwLzu4j3bN2tWiw9ZKUiHKGrwUqr-gg_i_irINB_fkXUiowrfNUVl1mYQN5vOil8zV7U8YzwjyPmZVH-2ZdiStQiI0Ka_wz6GAmljydcxWP7k_U7UTAvBJmS0kZFRK24eHV9tWVZpSm2OZQidQrQBOM_0Ys8UpA&h=mMrQvlzF8ehj5jq4SM8u92Kk7jpckQC5WHESoEEDnF0 + cache-control: + - no-store, no-cache + content-length: + - '3224' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:22:41 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=u5-s05nFsKrzUfkaN342mXnauQGSxT9pdd_i9cLtGOBPKDV9mqw_hIeYcI8ZswplSkiwzxRL8GzjPTZSHP4tAKVwoyUB7M1BZtCrtvWZascjiS5NOBYwdtfU03YbVE1tSNANQTtTHVAH60pDQZLS0TxNqUcz-NIYEUvMqc5pXe1jl4puKISnzP9qxZn8iSgGCuN_ZZX_L_WiAutQ9aMzuLBJAUu29lUScY8Nf4fvqgek1I5CSv6hNt-vFXbucbP_fTkq9Tjnmu_2mVOHn3aCfGoGqoMlkesFfTgiBZXUaOPVYVec2nFoAd3vcKQnkAWb-Pane3KxMtFlXNb4OXv48Q&h=96YMBz99KO-Zvs9b0-GRepcGsa6j8Ayejk7AJw2ohms + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: CD79221CCCFC450582C8A1F0A4B25DED Ref B: MAA201060513021 Ref C: 2024-02-19T10:22:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=iWo7wNOZCFTNkE02bGnhiji7xOI2ZXgbGBmphxOSGMrcusorKu9ztxCD8DhgNLIVwC16LDQCPgra_hmXMcHuGqpQkH6QPHqTe6-MiwdRdC65fDGkbf7zf868FqBqanVxy03SNQe1RBPIdRnQJeYCiQbOTHfTVn4lLJFFX74dkoWVfE6sidhofC6gwLzu4j3bN2tWiw9ZKUiHKGrwUqr-gg_i_irINB_fkXUiowrfNUVl1mYQN5vOil8zV7U8YzwjyPmZVH-2ZdiStQiI0Ka_wz6GAmljydcxWP7k_U7UTAvBJmS0kZFRK24eHV9tWVZpSm2OZQidQrQBOM_0Ys8UpA&h=mMrQvlzF8ehj5jq4SM8u92Kk7jpckQC5WHESoEEDnF0 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:22:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 76AA9C3A831E4A77909A44D3B1404C67 Ref B: MAA201060515027 Ref C: 2024-02-19T10:22:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=iWo7wNOZCFTNkE02bGnhiji7xOI2ZXgbGBmphxOSGMrcusorKu9ztxCD8DhgNLIVwC16LDQCPgra_hmXMcHuGqpQkH6QPHqTe6-MiwdRdC65fDGkbf7zf868FqBqanVxy03SNQe1RBPIdRnQJeYCiQbOTHfTVn4lLJFFX74dkoWVfE6sidhofC6gwLzu4j3bN2tWiw9ZKUiHKGrwUqr-gg_i_irINB_fkXUiowrfNUVl1mYQN5vOil8zV7U8YzwjyPmZVH-2ZdiStQiI0Ka_wz6GAmljydcxWP7k_U7UTAvBJmS0kZFRK24eHV9tWVZpSm2OZQidQrQBOM_0Ys8UpA&h=mMrQvlzF8ehj5jq4SM8u92Kk7jpckQC5WHESoEEDnF0 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:23:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D9B12ED872BE4B37B47855245B091E64 Ref B: MAA201060516035 Ref C: 2024-02-19T10:23:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=iWo7wNOZCFTNkE02bGnhiji7xOI2ZXgbGBmphxOSGMrcusorKu9ztxCD8DhgNLIVwC16LDQCPgra_hmXMcHuGqpQkH6QPHqTe6-MiwdRdC65fDGkbf7zf868FqBqanVxy03SNQe1RBPIdRnQJeYCiQbOTHfTVn4lLJFFX74dkoWVfE6sidhofC6gwLzu4j3bN2tWiw9ZKUiHKGrwUqr-gg_i_irINB_fkXUiowrfNUVl1mYQN5vOil8zV7U8YzwjyPmZVH-2ZdiStQiI0Ka_wz6GAmljydcxWP7k_U7UTAvBJmS0kZFRK24eHV9tWVZpSm2OZQidQrQBOM_0Ys8UpA&h=mMrQvlzF8ehj5jq4SM8u92Kk7jpckQC5WHESoEEDnF0 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:23:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F5B0F0CA1CC340548FAA67741AB3DF59 Ref B: MAA201060516019 Ref C: 2024-02-19T10:23:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3251' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:23:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0FBA20CBF6CB4D64BA3BC7291C48E33F Ref B: MAA201060513035 Ref C: 2024-02-19T10:23:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3251' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:23:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 96B43A6B50E74C29B8940A3AA7924E8E Ref B: MAA201060513025 Ref C: 2024-02-19T10:23:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3251' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:23:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3F848F9F3CBC4506A92ADE03071DF3B0 Ref B: MAA201060513035 Ref C: 2024-02-19T10:23:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3251' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:23:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2492D179CC7E4F1D92AAA091E44C4064 Ref B: MAA201060514031 Ref C: 2024-02-19T10:23:47Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"apiProperties": {}, "enablePerRegionPerPartitionAutoscale": + true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + Content-Length: + - '83' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362415034&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=j8FhnalzbVSKtgv2WHymChqxMwxtcWsUguS6pkynd-v_s4WNAMGtezYWVaOLVF2GOzJJhoRB0R8iCjyGkVj5a4X8iM32w-COaOD6dkVED0y8HiNkBQ1n9_XVwt-a1pCmN8v8351djKrof3YhDsfAw5wk1XaLyG9vLpL5U_Vob_7Lu6Q1wuCcrEiG90Nwz_mOrTUOSIiPTmYRFjGu2cN4ZCGeiHMDTzXEvBRbPwXded8LBP8_rdBEzLiXFvaxXgpHe9X4Q_Rqy9KzAL8_8kvwbTKqkqch7l7tN7414owWXU2axrfu5u5sLaJe65OUKVfazLXyt0Pi13BkPm2QANiuVw&h=YWfmV631DZl8ewrwM6sSw3RNkkUxwdMmTHPqwjlD7Zo + cache-control: + - no-store, no-cache + content-length: + - '3250' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:23:55 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362572463&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=EKh6WO0VRyHo8rCSQACyIGjRUE2n9yBjYdwnf7St_LiAEogZrTIwlEDzcE319WXN1-09nn9lqrwswl3bPsV4uZAjWCX31YMYqxi9tADjnotamxX_68TLWLUMOupJsPMEZiMJ50rmHF-pQhV2PMR7c2aeTU5MnsxOD-0is1FpkWNZjMzT-Dbeg7xL5qm37D6TjD6Mz6QjiDUWvLqfDinoGXIbq9zsyS5fT5BoIQZHDka8OqbwXX7ZqEuAKmNwxG7Loh5Fb120-0Eia3qQZnnHNRO9QchiisehumEwCkwhaKAPSlMczbnALdkwLl9GYyt7Vn-tqzlwLkmyqbtn7bf2dQ&h=1ZBBC36OVU2i6DLjh2aziucufjfEutZh3d_Pstj3J30 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: E8743A93BC0B44F6988803A11803AF19 Ref B: MAA201060513051 Ref C: 2024-02-19T10:23:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362415034&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=j8FhnalzbVSKtgv2WHymChqxMwxtcWsUguS6pkynd-v_s4WNAMGtezYWVaOLVF2GOzJJhoRB0R8iCjyGkVj5a4X8iM32w-COaOD6dkVED0y8HiNkBQ1n9_XVwt-a1pCmN8v8351djKrof3YhDsfAw5wk1XaLyG9vLpL5U_Vob_7Lu6Q1wuCcrEiG90Nwz_mOrTUOSIiPTmYRFjGu2cN4ZCGeiHMDTzXEvBRbPwXded8LBP8_rdBEzLiXFvaxXgpHe9X4Q_Rqy9KzAL8_8kvwbTKqkqch7l7tN7414owWXU2axrfu5u5sLaJe65OUKVfazLXyt0Pi13BkPm2QANiuVw&h=YWfmV631DZl8ewrwM6sSw3RNkkUxwdMmTHPqwjlD7Zo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:23:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 500B76C6DF1347B2A0C079ECCE5894F1 Ref B: MAA201060514011 Ref C: 2024-02-19T10:23:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362415034&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=j8FhnalzbVSKtgv2WHymChqxMwxtcWsUguS6pkynd-v_s4WNAMGtezYWVaOLVF2GOzJJhoRB0R8iCjyGkVj5a4X8iM32w-COaOD6dkVED0y8HiNkBQ1n9_XVwt-a1pCmN8v8351djKrof3YhDsfAw5wk1XaLyG9vLpL5U_Vob_7Lu6Q1wuCcrEiG90Nwz_mOrTUOSIiPTmYRFjGu2cN4ZCGeiHMDTzXEvBRbPwXded8LBP8_rdBEzLiXFvaxXgpHe9X4Q_Rqy9KzAL8_8kvwbTKqkqch7l7tN7414owWXU2axrfu5u5sLaJe65OUKVfazLXyt0Pi13BkPm2QANiuVw&h=YWfmV631DZl8ewrwM6sSw3RNkkUxwdMmTHPqwjlD7Zo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:24:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C274F07605A9436BAE329973FA68B6B9 Ref B: MAA201060516039 Ref C: 2024-02-19T10:24:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362415034&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=j8FhnalzbVSKtgv2WHymChqxMwxtcWsUguS6pkynd-v_s4WNAMGtezYWVaOLVF2GOzJJhoRB0R8iCjyGkVj5a4X8iM32w-COaOD6dkVED0y8HiNkBQ1n9_XVwt-a1pCmN8v8351djKrof3YhDsfAw5wk1XaLyG9vLpL5U_Vob_7Lu6Q1wuCcrEiG90Nwz_mOrTUOSIiPTmYRFjGu2cN4ZCGeiHMDTzXEvBRbPwXded8LBP8_rdBEzLiXFvaxXgpHe9X4Q_Rqy9KzAL8_8kvwbTKqkqch7l7tN7414owWXU2axrfu5u5sLaJe65OUKVfazLXyt0Pi13BkPm2QANiuVw&h=YWfmV631DZl8ewrwM6sSw3RNkkUxwdMmTHPqwjlD7Zo + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:24:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 50494BFD9E7D46FDB185C651136AEC16 Ref B: MAA201060516025 Ref C: 2024-02-19T10:24:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3250' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:24:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7E1CB3B86E624348B93BD031D5804D48 Ref B: MAA201060515045 Ref C: 2024-02-19T10:24:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3250' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:24:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 68193E82512148D2A8FFE29755539027 Ref B: MAA201060514031 Ref C: 2024-02-19T10:24:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3250' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:25:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3A9AD3D9339844A88A6F8BB88E9AB21C Ref B: MAA201060514035 Ref C: 2024-02-19T10:24:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:25:01 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationResults/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022211612&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=i5Hr88ZMtY8TzkigYz6KkiqJwTnv4S3423mKL6eWZ6Tbi0rsL1tfBKbv_bOvPniwesROSFGc1FnR9W4D01eK7EnIoDOX5gO-Xl7S3cipEGt_GRUU0rdpiumdd9eH-TMPTq7TWNxzNT8mVNnCBwjHZjtnYSfwSKjfk4iLYAA8EsIgiyy06uTAKSNUtx3ubkxMDHl2Mv_Giov509OVwKgw5MpKD8YlrjaCNUPx3pf0PcWn0B1c_RfS3p06l_xgvfN-9EkJc3201vhsAIFOf-2GeD9FRj5sd0LcFCDeMG6WoBmwkgw6pw8tw5hDJHnQlv1TeX5x6EjS8Be6irnFB3CpEw&h=rHHrnd1d8qEhPqvSLWSnryt3Mjk5VXWYhP5FxQ_1aW0 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 5237CC9935DE49DCA9D17B6FAEAF8AA5 Ref B: MAA201060516009 Ref C: 2024-02-19T10:25:00Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:25:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7870CB44E5DC405E930A51F27AEBE987 Ref B: MAA201060514011 Ref C: 2024-02-19T10:25:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:25:33 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C476F1494FC0486EBE13EA8470B67F73 Ref B: MAA201060514037 Ref C: 2024-02-19T10:25:33Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:26:04 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 12A510C2D608476CA0AEDD2A5C58E1D9 Ref B: MAA201060513047 Ref C: 2024-02-19T10:26:04Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:26:34 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BFAFF39D43F0431BA715AB27A8F86C3A Ref B: MAA201060513019 Ref C: 2024-02-19T10:26:34Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:27:04 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 887B0B092784492784E8DE36CF1763C4 Ref B: MAA201060515023 Ref C: 2024-02-19T10:27:05Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:27:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B2FF725EB920471F99F89FCD8E81C594 Ref B: MAA201060513053 Ref C: 2024-02-19T10:27:35Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:28:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BF7BA01F1C3A4F528113843E246E7620 Ref B: MAA201060513033 Ref C: 2024-02-19T10:28:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:28:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2CB6D2EF7A934F2D8FD9524927E170BA Ref B: MAA201060513035 Ref C: 2024-02-19T10:28:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:29:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8A6804FDCB8F4CBBAA0DBE60D8031076 Ref B: MAA201060513027 Ref C: 2024-02-19T10:29:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:29:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C1AA0EFFC28B4824921A7A66C58267F9 Ref B: MAA201060516021 Ref C: 2024-02-19T10:29:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:30:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 18ABF12D89544753BAEA5F7A30C9E5D4 Ref B: MAA201060513053 Ref C: 2024-02-19T10:30:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:30:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5B8B10C079C9495898BABD9AEDDBF62A Ref B: MAA201060515009 Ref C: 2024-02-19T10:30:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:31:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4095AFBA75174027AF5F6764A2786EE4 Ref B: MAA201060516037 Ref C: 2024-02-19T10:31:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:31:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CAFE8138CA46441090009768ABD9D060 Ref B: MAA201060513027 Ref C: 2024-02-19T10:31:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:32:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B1B87091FAA14C169C617751881E61A3 Ref B: MAA201060516027 Ref C: 2024-02-19T10:32:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Mon, 19 Feb 2024 10:32:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2FC8E5B79D39497693AF7EE9975C2B07 Ref B: MAA201060516009 Ref C: 2024-02-19T10:32:42Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-enable-per-region-per-partition-autoscale-scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-enable-per-region-per-partition-autoscale-scenario.py new file mode 100644 index 00000000000..70b952269a0 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-enable-per-region-per-partition-autoscale-scenario.py @@ -0,0 +1,50 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import os + +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) + +class Cosmosdb_previewEnablePerRegionPerPartitionAutoscaleScenarioTest(ScenarioTest): + + @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_sql_enable_per_region_per_partition_autoscale', location='australiaeast') + def test_cosmosdb_enable_per_region_per_partition_autoscale(self): + col = self.create_random_name(prefix='cli', length=15) + db_name = self.create_random_name(prefix='cli', length=15) + # Assumption: There exists a cosmosTest rg. + self.kwargs.update({ + 'rg' : 'cosmosTest', + 'acc': 'prpp-test-38129749818', + 'loc': 'australiaeast', + 'tar': '0=1200 1=1200', + 'src': '2' + }) + + #create enablePerRegionPerPartitionAutoscale enabled account + self.cmd('az cosmosdb create -n {acc} -g {rg} --enable-per-region-per-partition-autoscale true') + self.cmd('az cosmosdb show -n {acc} -g {rg}', checks=[ + self.check('enablePerRegionPerPartitionAutoscale', True), + ]) + print('Created enablePerRegionPerPartitionAutoscale enabled account') + + #disable enablePerRegionPerPartitionAutoscale + self.cmd('az cosmosdb update -n {acc} -g {rg} --enable-per-region-per-partition-autoscale false') + self.cmd('az cosmosdb show -n {acc} -g {rg}', checks=[ + self.check('enablePerRegionPerPartitionAutoscale', False), + ]) + print('Disabled enablePerRegionPerPartitionAutoscale') + + #enable enablePerRegionPerPartitionAutoscale + self.cmd('az cosmosdb update -n {acc} -g {rg} --enable-per-region-per-partition-autoscale true') + self.cmd('az cosmosdb show -n {acc} -g {rg}', checks=[ + self.check('enablePerRegionPerPartitionAutoscale', True), + ]) + print('Enabled enablePerRegionPerPartitionAutoscale') + + #delete account + self.cmd('az cosmosdb delete -n {acc} -g {rg} --yes') + \ No newline at end of file From 374e7f7031611eabaa7ebe57aa63a3d7e11307d1 Mon Sep 17 00:00:00 2001 From: Nitesh Vijay Date: Tue, 16 Jan 2024 19:22:09 +0530 Subject: [PATCH 06/37] Add mode in copy job (cherry picked from commit a28144517ad4022098561e83d8607c93933dd36c) --- src/cosmosdb-preview/azext_cosmosdb_preview/_params.py | 1 + src/cosmosdb-preview/azext_cosmosdb_preview/custom.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index b3f1a5ccfec..77425842198 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -464,6 +464,7 @@ def load_arguments(self, _): c.argument('dest_nosql', nargs='+', arg_group='Azure Cosmos DB API for NoSQL container copy', action=AddSqlContainerAction, help='Destination NoSql container details') c.argument('host_copy_on_src', arg_type=get_three_state_flag(), help=argparse.SUPPRESS) c.argument('worker_count', type=int, help=argparse.SUPPRESS) + c.argument('mode', help='Copy Mode (Online / Offline)') for scope in [ 'cosmosdb copy list', diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 35e14132046..de44fd05313 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -1606,7 +1606,8 @@ def cosmosdb_copy_job(client, dest_mongo=None, job_name=None, worker_count=0, - host_copy_on_src=False): + host_copy_on_src=False, + mode="Offline"): job_create_properties = {} is_cross_account = src_account != dest_account remote_account_name = dest_account if host_copy_on_src else src_account @@ -1673,6 +1674,8 @@ def cosmosdb_copy_job(client, if worker_count > 0: job_create_properties['worker_count'] = worker_count + job_create_properties['mode'] = mode + job_create_parameters = {} job_create_parameters['properties'] = job_create_properties From f9e78fc8a5920e7cb43026e9e8b9254b896770ba Mon Sep 17 00:00:00 2001 From: Nitesh Vijay Date: Mon, 19 Feb 2024 17:51:25 +0530 Subject: [PATCH 07/37] Add complete job API (cherry picked from commit 3d721cb017b60e7fe65e0a5963ccbe7d295a4860) (cherry picked from commit f4e6f01f99eb1299e8c536423f074e9832b71e16) --- src/cosmosdb-preview/azext_cosmosdb_preview/_help.py | 9 +++++++++ src/cosmosdb-preview/azext_cosmosdb_preview/_params.py | 6 ++++-- src/cosmosdb-preview/azext_cosmosdb_preview/commands.py | 1 + 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_help.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_help.py index 75aee59c127..23e42a6983c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_help.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_help.py @@ -884,6 +884,15 @@ az cosmosdb copy cancel -g "rg1" --account-name "acc1" --job-name "j1" """ +helps['cosmosdb copy complete'] = """ + type: command + short-summary: "Completes an online container copy job." + examples: + - name: Complete job j1 + text: |- + az cosmosdb copy complete -g "rg1" --account-name "acc1" --job-name "j1" +""" + helps['cosmosdb sql container merge'] = """ type: command short-summary: "Merges the partitions of a sql container." diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 77425842198..ac4045e7f64 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -471,7 +471,8 @@ def load_arguments(self, _): 'cosmosdb copy show', 'cosmosdb copy pause', 'cosmosdb copy resume', - 'cosmosdb copy cancel']: + 'cosmosdb copy cancel', + 'cosmosdb copy complete']: with self.argument_context(scope) as c: c.argument('account_name', options_list=["--account-name", "-a"], id_part=None, required=True, help='Azure Cosmos DB account name where the job is created. Use --dest-account value from create job command.') @@ -479,7 +480,8 @@ def load_arguments(self, _): 'cosmosdb copy show', 'cosmosdb copy pause', 'cosmosdb copy resume', - 'cosmosdb copy cancel']: + 'cosmosdb copy cancel', + 'cosmosdb copy complete']: with self.argument_context(scope) as c: c.argument('job_name', options_list=['--job-name', '-n'], help='Name of the container copy job.', required=True) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/commands.py b/src/cosmosdb-preview/azext_cosmosdb_preview/commands.py index 59e26cb7069..d55053546cb 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/commands.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/commands.py @@ -211,6 +211,7 @@ def load_command_table(self, _): g.command('pause', 'pause') g.command('resume', 'resume') g.command('cancel', 'cancel') + g.command('complete', 'complete') # Merge partitions for Sql containers cosmosdb_sql_sdk = CliCommandType( From 1a61375dc0448d5601d56e506d20c5b34b0f851c Mon Sep 17 00:00:00 2001 From: Nitesh Vijay Date: Tue, 20 Feb 2024 11:04:23 +0530 Subject: [PATCH 08/37] Add test --- .../test_cosmosdb_copy_cassandra.yaml | 360 ++- .../recordings/test_cosmosdb_copy_mongo.yaml | 402 ++- .../recordings/test_cosmosdb_copy_nosql.yaml | 2150 +++++++++++++++-- .../latest/test_cosmosdb-copy-scenario.py | 27 +- 4 files changed, 2263 insertions(+), 676 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml index d174db357ea..02db0723c0c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml @@ -13,31 +13,33 @@ interactions: ParameterSetName: - -n -g --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_copy_cassandra","date":"2023-10-12T11:00:33Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2024-02-19T18:02:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '400' + - '334' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Oct 2023 11:00:37 GMT + - Mon, 19 Feb 2024 18:02:45 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4471B7E958CD4093B039B951A187E04C Ref B: MAA201060515037 Ref C: 2024-02-19T18:02:45Z' status: code: 200 message: OK @@ -62,46 +64,44 @@ interactions: ParameterSetName: - -n -g --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:00:41.6715929Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f2bd1002-1e56-40df-b47f-c36be38f95e4","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:02:49.6701254Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7f5a9a10-6646-4216-9ac8-d76366dc53fc","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:00:41.6715929Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:00:41.6715929Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:00:41.6715929Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:00:41.6715929Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:02:49.6701254Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:02:49.6701254Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:02:49.6701254Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:02:49.6701254Z"}}},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cec1409b-fecd-48fa-b719-46852ec6fa1e?api-version=2023-09-15-preview&t=638327052432447211&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FBrx2VRrtw-jAgJrkzP-pzoEdmUnBQ4QcgYvsk9qnk8hRqurne1hFtXgAG603BXBbljl-N0BOJbl8r67MQ1BYqjbqR1BDpbH8Unz4sXdUky6142xm-VtzsObV_MI_USZoIgMEmBwBCNlaTOnIU1zRU8NLE3Apc5I5eJTCNoPnSOnMB2VBAuJhjKWhj7zqP4ulh-V0vQZfyXHeub7atB0olnKRi9QItIb91O2MKSY5BuZ7MzGF6VHjjcpVgQyYZoCIifSyJdle6eCdKlK18_v3ySAyha2-jFAc_iEOD9EAZJfgWFdmE84f7PhuZTfE7C5G2JslUZTj_48ZM2bDPp6NQ&h=idox0ktZcO0rAYSAnHnD8UYazTw-5dIpOAQbf8i2Ub4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I cache-control: - no-store, no-cache content-length: - - '2495' + - '2774' content-type: - application/json date: - - Thu, 12 Oct 2023 11:00:43 GMT + - Mon, 19 Feb 2024 18:02:50 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/cec1409b-fecd-48fa-b719-46852ec6fa1e?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712524094&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=DfEcFzzfyQzgrUF35GbUgtGGL-ei7RKuteo2Nc459I4RUqVjCvqqoKBlC18pvuMu8W-7rjsmhTwGpVJv6iBYVXwkfpJ2ZHtQuPqCpgmGV-kMHtgTFBUo5qJj-tv5XWsrgalKJ2MQWh8gT7CFESX0mx0KRaG1IIro4ulIye0QKk6fopaAFktpnI08Yc0hloJNCFZEvxkP3koJW7R5_QhWDntzxfKbUrbMaG1mVfVDcTMLcRomn335o30sM7Rig7cmMN7sbV4VoTZdj9CJFyuKqoJvPAbQlP6ME5Cq--HtdODaoL-QsCi66p8MxRx1yosRVWnGjdpq-i-fzu5hmZZTpg&h=KwLNFGfuGB1Bzr6r-9bnqnFfflqXXz6SKI8mzXOHKSI pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + x-msedge-ref: + - 'Ref A: BD3E2C9CC5BC4B469F81B25C8B0A41A1 Ref B: MAA201060516039 Ref C: 2024-02-19T18:02:45Z' status: code: 200 message: Ok @@ -119,12 +119,12 @@ interactions: ParameterSetName: - -n -g --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cec1409b-fecd-48fa-b719-46852ec6fa1e?api-version=2023-09-15-preview&t=638327052432447211&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FBrx2VRrtw-jAgJrkzP-pzoEdmUnBQ4QcgYvsk9qnk8hRqurne1hFtXgAG603BXBbljl-N0BOJbl8r67MQ1BYqjbqR1BDpbH8Unz4sXdUky6142xm-VtzsObV_MI_USZoIgMEmBwBCNlaTOnIU1zRU8NLE3Apc5I5eJTCNoPnSOnMB2VBAuJhjKWhj7zqP4ulh-V0vQZfyXHeub7atB0olnKRi9QItIb91O2MKSY5BuZ7MzGF6VHjjcpVgQyYZoCIifSyJdle6eCdKlK18_v3ySAyha2-jFAc_iEOD9EAZJfgWFdmE84f7PhuZTfE7C5G2JslUZTj_48ZM2bDPp6NQ&h=idox0ktZcO0rAYSAnHnD8UYazTw-5dIpOAQbf8i2Ub4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I response: body: - string: '{"status":"Enqueued"}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache @@ -133,21 +133,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:00:43 GMT + - Mon, 19 Feb 2024 18:03:20 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: A421FC34C2F14D1188267B0C2652DB41 Ref B: MAA201060516039 Ref C: 2024-02-19T18:03:21Z' status: code: 200 message: Ok @@ -165,9 +163,9 @@ interactions: ParameterSetName: - -n -g --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cec1409b-fecd-48fa-b719-46852ec6fa1e?api-version=2023-09-15-preview&t=638327052432447211&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FBrx2VRrtw-jAgJrkzP-pzoEdmUnBQ4QcgYvsk9qnk8hRqurne1hFtXgAG603BXBbljl-N0BOJbl8r67MQ1BYqjbqR1BDpbH8Unz4sXdUky6142xm-VtzsObV_MI_USZoIgMEmBwBCNlaTOnIU1zRU8NLE3Apc5I5eJTCNoPnSOnMB2VBAuJhjKWhj7zqP4ulh-V0vQZfyXHeub7atB0olnKRi9QItIb91O2MKSY5BuZ7MzGF6VHjjcpVgQyYZoCIifSyJdle6eCdKlK18_v3ySAyha2-jFAc_iEOD9EAZJfgWFdmE84f7PhuZTfE7C5G2JslUZTj_48ZM2bDPp6NQ&h=idox0ktZcO0rAYSAnHnD8UYazTw-5dIpOAQbf8i2Ub4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I response: body: string: '{"status":"Dequeued"}' @@ -179,21 +177,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:01:13 GMT + - Mon, 19 Feb 2024 18:03:51 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 084313F6F18E4A61961573F09B134FE1 Ref B: MAA201060516039 Ref C: 2024-02-19T18:03:51Z' status: code: 200 message: Ok @@ -211,9 +207,9 @@ interactions: ParameterSetName: - -n -g --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cec1409b-fecd-48fa-b719-46852ec6fa1e?api-version=2023-09-15-preview&t=638327052432447211&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FBrx2VRrtw-jAgJrkzP-pzoEdmUnBQ4QcgYvsk9qnk8hRqurne1hFtXgAG603BXBbljl-N0BOJbl8r67MQ1BYqjbqR1BDpbH8Unz4sXdUky6142xm-VtzsObV_MI_USZoIgMEmBwBCNlaTOnIU1zRU8NLE3Apc5I5eJTCNoPnSOnMB2VBAuJhjKWhj7zqP4ulh-V0vQZfyXHeub7atB0olnKRi9QItIb91O2MKSY5BuZ7MzGF6VHjjcpVgQyYZoCIifSyJdle6eCdKlK18_v3ySAyha2-jFAc_iEOD9EAZJfgWFdmE84f7PhuZTfE7C5G2JslUZTj_48ZM2bDPp6NQ&h=idox0ktZcO0rAYSAnHnD8UYazTw-5dIpOAQbf8i2Ub4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I response: body: string: '{"status":"Dequeued"}' @@ -225,21 +221,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:01:45 GMT + - Mon, 19 Feb 2024 18:04:22 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 59AF3E43DB8642BB92EF37D4D81C3DCA Ref B: MAA201060516039 Ref C: 2024-02-19T18:04:22Z' status: code: 200 message: Ok @@ -257,9 +251,9 @@ interactions: ParameterSetName: - -n -g --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cec1409b-fecd-48fa-b719-46852ec6fa1e?api-version=2023-09-15-preview&t=638327052432447211&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FBrx2VRrtw-jAgJrkzP-pzoEdmUnBQ4QcgYvsk9qnk8hRqurne1hFtXgAG603BXBbljl-N0BOJbl8r67MQ1BYqjbqR1BDpbH8Unz4sXdUky6142xm-VtzsObV_MI_USZoIgMEmBwBCNlaTOnIU1zRU8NLE3Apc5I5eJTCNoPnSOnMB2VBAuJhjKWhj7zqP4ulh-V0vQZfyXHeub7atB0olnKRi9QItIb91O2MKSY5BuZ7MzGF6VHjjcpVgQyYZoCIifSyJdle6eCdKlK18_v3ySAyha2-jFAc_iEOD9EAZJfgWFdmE84f7PhuZTfE7C5G2JslUZTj_48ZM2bDPp6NQ&h=idox0ktZcO0rAYSAnHnD8UYazTw-5dIpOAQbf8i2Ub4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I response: body: string: '{"status":"Succeeded"}' @@ -271,21 +265,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:16 GMT + - Mon, 19 Feb 2024 18:04:53 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 59C174E9B26B4330B6358795064B5C33 Ref B: MAA201060516039 Ref C: 2024-02-19T18:04:53Z' status: code: 200 message: Ok @@ -303,40 +295,38 @@ interactions: ParameterSetName: - -n -g --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:01:59.6053065Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f2bd1002-1e56-40df-b47f-c36be38f95e4","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:16.3154519Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7f5a9a10-6646-4216-9ac8-d76366dc53fc","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2921' + - '3200' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:16 GMT + - Mon, 19 Feb 2024 18:04:54 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 00857F17688A4C7092110A569754C229 Ref B: MAA201060516039 Ref C: 2024-02-19T18:04:53Z' status: code: 200 message: Ok @@ -354,40 +344,38 @@ interactions: ParameterSetName: - -n -g --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:01:59.6053065Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f2bd1002-1e56-40df-b47f-c36be38f95e4","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:16.3154519Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7f5a9a10-6646-4216-9ac8-d76366dc53fc","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2921' + - '3200' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:17 GMT + - Mon, 19 Feb 2024 18:04:55 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: C6A3D1CF82DB473999F6ED9E1432C61D Ref B: MAA201060516039 Ref C: 2024-02-19T18:04:55Z' status: code: 200 message: Ok @@ -405,47 +393,45 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:01:59.6053065Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f2bd1002-1e56-40df-b47f-c36be38f95e4","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:16.3154519Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7f5a9a10-6646-4216-9ac8-d76366dc53fc","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:01:59.6053065Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2921' + - '3200' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:18 GMT + - Mon, 19 Feb 2024 18:04:57 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: A3DD3144EF42482EBFFEF7A69EA815D5 Ref B: MAA201060516053 Ref C: 2024-02-19T18:04:56Z' status: code: 200 message: Ok - request: body: '{"properties": {"source": {"component": "CosmosDBCassandra", "keyspaceName": "cli000002", "tableName": "cli000003"}, "destination": {"component": "CosmosDBCassandra", - "keyspaceName": "cli000002", "tableName": "cli000004"}}}' + "keyspaceName": "cli000002", "tableName": "cli000004"}, "mode": "Offline"}}' headers: Accept: - application/json @@ -456,43 +442,41 @@ interactions: Connection: - keep-alive Content-Length: - - '223' + - '242' Content-Type: - application/json ParameterSetName: - -g --job-name --src-account --dest-account --src-cassandra --dest-cassandra User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:02:20.6618707Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:04:59.0283306Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' headers: cache-control: - no-store, no-cache content-length: - - '605' + - '627' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:22 GMT + - Mon, 19 Feb 2024 18:04:58 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 01F9AD7D993F428585E58F2C5DF1F966 Ref B: MAA201060514021 Ref C: 2024-02-19T18:04:57Z' status: code: 200 message: Ok @@ -510,35 +494,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:02:20Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:04:59Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' headers: cache-control: - no-store, no-cache content-length: - - '597' + - '619' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:24 GMT + - Mon, 19 Feb 2024 18:05:00 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0720B78AC8FF4BC0BF2D9848EBF9D686 Ref B: MAA201060513035 Ref C: 2024-02-19T18:04:59Z' status: code: 200 message: Ok @@ -556,35 +538,33 @@ interactions: ParameterSetName: - -g --account-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2024-02-15-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:02:20Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:04:59Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}]}' headers: cache-control: - no-store, no-cache content-length: - - '609' + - '631' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:26 GMT + - Mon, 19 Feb 2024 18:05:01 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 49903A3BC32E44338CA743E30CC98A11 Ref B: MAA201060513027 Ref C: 2024-02-19T18:05:01Z' status: code: 200 message: Ok @@ -604,37 +584,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2023-10-12T11:02:29Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-19T18:05:04Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' headers: cache-control: - no-store, no-cache content-length: - - '596' + - '618' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:30 GMT + - Mon, 19 Feb 2024 18:05:04 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: C7E3ADDD46184FB994871B1635B887E9 Ref B: MAA201060513033 Ref C: 2024-02-19T18:05:02Z' status: code: 200 message: Ok @@ -652,35 +630,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2023-10-12T11:02:29Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-19T18:05:04Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' headers: cache-control: - no-store, no-cache content-length: - - '596' + - '618' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:32 GMT + - Mon, 19 Feb 2024 18:05:05 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 57B50B5619E7415DA6102F24AAD36105 Ref B: MAA201060516027 Ref C: 2024-02-19T18:05:05Z' status: code: 200 message: Ok @@ -700,37 +676,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:02:34Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:07Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' headers: cache-control: - no-store, no-cache content-length: - - '597' + - '619' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:35 GMT + - Mon, 19 Feb 2024 18:05:06 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: EB4E1B0736D3470F91636267C33C8AFD Ref B: MAA201060516021 Ref C: 2024-02-19T18:05:06Z' status: code: 200 message: Ok @@ -748,35 +722,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:02:34Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:07Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' headers: cache-control: - no-store, no-cache content-length: - - '597' + - '619' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:36 GMT + - Mon, 19 Feb 2024 18:05:08 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: C7A37662D62747539D996C4154BFFF47 Ref B: MAA201060514027 Ref C: 2024-02-19T18:05:07Z' status: code: 200 message: Ok @@ -796,37 +768,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2023-10-12T11:02:37Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-19T18:05:09Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' headers: cache-control: - no-store, no-cache content-length: - - '599' + - '621' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:39 GMT + - Mon, 19 Feb 2024 18:05:08 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 9EBF4C7B8DD741C8A283968D06EFB1F9 Ref B: MAA201060513035 Ref C: 2024-02-19T18:05:08Z' status: code: 200 message: Ok @@ -844,35 +814,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2023-10-12T11:02:37Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-19T18:05:09Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' headers: cache-control: - no-store, no-cache content-length: - - '599' + - '621' content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:40 GMT + - Mon, 19 Feb 2024 18:05:09 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7CD6F4B1F78F4B589500FDCC8CAC36EA Ref B: MAA201060516031 Ref C: 2024-02-19T18:05:10Z' status: code: 200 message: Ok diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml index 1a1f429b714..a025fb7d5b2 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml @@ -13,31 +13,33 @@ interactions: ParameterSetName: - -n -g --locations --capabilities --kind User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy_mongo000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001","name":"cli_test_cosmosdb_copy_mongo000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_copy_mongo","date":"2023-10-12T11:01:44Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001","name":"cli_test_cosmosdb_copy_mongo000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2024-02-19T18:02:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '408' + - '346' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Oct 2023 11:01:48 GMT + - Mon, 19 Feb 2024 18:02:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6A80B5633EF34FB3AA0D7744BFEFA783 Ref B: MAA201060515045 Ref C: 2024-02-19T18:02:48Z' status: code: 200 message: OK @@ -62,46 +64,44 @@ interactions: ParameterSetName: - -n -g --locations --capabilities --kind User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:01:52.5871307Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"1be975d3-572d-4cb2-9aaf-3c17d75fa298","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:02:52.521284Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"95efbc1e-885f-46ec-9d8c-23650815d831","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:01:52.5871307Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:01:52.5871307Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:01:52.5871307Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:01:52.5871307Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:02:52.521284Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:02:52.521284Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:02:52.521284Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:02:52.521284Z"}}},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7f7e529-3f3b-4b26-8159-3092834fa729?api-version=2023-09-15-preview&t=638327053141908314&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MpgzPYSktTCiRso9N7FsvK3K2ZS1Ybwk6lg4OmXLIJBh7AAxlVEMSiOjNvJAzIoKjmPwEiJcWZtfi-7h68YAvPis87mJ-QtKw0W28oJXO53uoFSa99renhnlPAd8r43pgkGNl9-x-K19YdVyKsGYbGSvqnOxTqefKeJoLeKJMCBbfAZ9Qqojk-SRVMr-5jZJBQ6ggXQXpTJ4536GiA6c66h690F5HIaXE46ScXi2eivFckqVNAdmJkBdpn2miIqScbMW2yIqPippr5bPTgmDoGlFQzXahwqnqFLs8kDD2c38hc-K-GEtpECB8_hjJnS7dtPwYffNv0jYAOBW2XJvSw&h=f_7lg4IWxjhkCHQntvDEUE1_XgL4QKXUZMjvajW2l98 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k cache-control: - no-store, no-cache content-length: - - '2527' + - '2801' content-type: - application/json date: - - Thu, 12 Oct 2023 11:01:53 GMT + - Mon, 19 Feb 2024 18:02:54 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/c7f7e529-3f3b-4b26-8159-3092834fa729?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740471180&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=pPkUj4J0sclcYdB730CgmaGrNhZsTrhAW4AYd_O9cpy8kFQh28Ect3eNAJUV-A9-5_Aik4Bb2vIAYC_qehxUJQKPhClq01MULPTUdVaDXcVMXRgUfGjm9YxXvwQjUqDuxMNPEZJbmY8CH69PLdbwNsGZ1nBLAZOVpBkxpK__wjsqD0Wmmf0LA3bljRDjmBYJbw2MMezkrV0KjHsEUL_CF2rBuS1rlrKamTIksGpvCR1zIKJbVUpe9Zja-PLaozAP7PKgA03dlh-lWAd8HGQcC7SGOTvFD462KM_bPDzxR_Fs8c6tYj6iXzTVdAIB2KBIIn03LPzJTjyBENa3RzeHLw&h=HTQd3PLGdYesB4YE867qwtL9YiUGI7nLq0uDN1v2uLQ pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: FDB8E9508876403C8E358133B287621E Ref B: MAA201060515047 Ref C: 2024-02-19T18:02:48Z' status: code: 200 message: Ok @@ -119,55 +119,9 @@ interactions: ParameterSetName: - -n -g --locations --capabilities --kind User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7f7e529-3f3b-4b26-8159-3092834fa729?api-version=2023-09-15-preview&t=638327053141908314&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MpgzPYSktTCiRso9N7FsvK3K2ZS1Ybwk6lg4OmXLIJBh7AAxlVEMSiOjNvJAzIoKjmPwEiJcWZtfi-7h68YAvPis87mJ-QtKw0W28oJXO53uoFSa99renhnlPAd8r43pgkGNl9-x-K19YdVyKsGYbGSvqnOxTqefKeJoLeKJMCBbfAZ9Qqojk-SRVMr-5jZJBQ6ggXQXpTJ4536GiA6c66h690F5HIaXE46ScXi2eivFckqVNAdmJkBdpn2miIqScbMW2yIqPippr5bPTgmDoGlFQzXahwqnqFLs8kDD2c38hc-K-GEtpECB8_hjJnS7dtPwYffNv0jYAOBW2XJvSw&h=f_7lg4IWxjhkCHQntvDEUE1_XgL4QKXUZMjvajW2l98 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7f7e529-3f3b-4b26-8159-3092834fa729?api-version=2023-09-15-preview&t=638327053141908314&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MpgzPYSktTCiRso9N7FsvK3K2ZS1Ybwk6lg4OmXLIJBh7AAxlVEMSiOjNvJAzIoKjmPwEiJcWZtfi-7h68YAvPis87mJ-QtKw0W28oJXO53uoFSa99renhnlPAd8r43pgkGNl9-x-K19YdVyKsGYbGSvqnOxTqefKeJoLeKJMCBbfAZ9Qqojk-SRVMr-5jZJBQ6ggXQXpTJ4536GiA6c66h690F5HIaXE46ScXi2eivFckqVNAdmJkBdpn2miIqScbMW2yIqPippr5bPTgmDoGlFQzXahwqnqFLs8kDD2c38hc-K-GEtpECB8_hjJnS7dtPwYffNv0jYAOBW2XJvSw&h=f_7lg4IWxjhkCHQntvDEUE1_XgL4QKXUZMjvajW2l98 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k response: body: string: '{"status":"Dequeued"}' @@ -179,21 +133,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:23 GMT + - Mon, 19 Feb 2024 18:03:24 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: FDA70EED33D34D46A9F514FBC9113BAE Ref B: MAA201060515047 Ref C: 2024-02-19T18:03:24Z' status: code: 200 message: Ok @@ -211,9 +163,9 @@ interactions: ParameterSetName: - -n -g --locations --capabilities --kind User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7f7e529-3f3b-4b26-8159-3092834fa729?api-version=2023-09-15-preview&t=638327053141908314&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MpgzPYSktTCiRso9N7FsvK3K2ZS1Ybwk6lg4OmXLIJBh7AAxlVEMSiOjNvJAzIoKjmPwEiJcWZtfi-7h68YAvPis87mJ-QtKw0W28oJXO53uoFSa99renhnlPAd8r43pgkGNl9-x-K19YdVyKsGYbGSvqnOxTqefKeJoLeKJMCBbfAZ9Qqojk-SRVMr-5jZJBQ6ggXQXpTJ4536GiA6c66h690F5HIaXE46ScXi2eivFckqVNAdmJkBdpn2miIqScbMW2yIqPippr5bPTgmDoGlFQzXahwqnqFLs8kDD2c38hc-K-GEtpECB8_hjJnS7dtPwYffNv0jYAOBW2XJvSw&h=f_7lg4IWxjhkCHQntvDEUE1_XgL4QKXUZMjvajW2l98 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k response: body: string: '{"status":"Dequeued"}' @@ -225,21 +177,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:02:54 GMT + - Mon, 19 Feb 2024 18:03:55 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3FA8140A4D294DF2A8450FACEB089DB4 Ref B: MAA201060515047 Ref C: 2024-02-19T18:03:54Z' status: code: 200 message: Ok @@ -257,9 +207,9 @@ interactions: ParameterSetName: - -n -g --locations --capabilities --kind User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7f7e529-3f3b-4b26-8159-3092834fa729?api-version=2023-09-15-preview&t=638327053141908314&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MpgzPYSktTCiRso9N7FsvK3K2ZS1Ybwk6lg4OmXLIJBh7AAxlVEMSiOjNvJAzIoKjmPwEiJcWZtfi-7h68YAvPis87mJ-QtKw0W28oJXO53uoFSa99renhnlPAd8r43pgkGNl9-x-K19YdVyKsGYbGSvqnOxTqefKeJoLeKJMCBbfAZ9Qqojk-SRVMr-5jZJBQ6ggXQXpTJ4536GiA6c66h690F5HIaXE46ScXi2eivFckqVNAdmJkBdpn2miIqScbMW2yIqPippr5bPTgmDoGlFQzXahwqnqFLs8kDD2c38hc-K-GEtpECB8_hjJnS7dtPwYffNv0jYAOBW2XJvSw&h=f_7lg4IWxjhkCHQntvDEUE1_XgL4QKXUZMjvajW2l98 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k response: body: string: '{"status":"Dequeued"}' @@ -271,21 +221,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:03:24 GMT + - Mon, 19 Feb 2024 18:04:25 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 32369FF1CD3B4BA2AAFF8CDBF7CF692E Ref B: MAA201060515047 Ref C: 2024-02-19T18:04:25Z' status: code: 200 message: Ok @@ -303,9 +251,9 @@ interactions: ParameterSetName: - -n -g --locations --capabilities --kind User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7f7e529-3f3b-4b26-8159-3092834fa729?api-version=2023-09-15-preview&t=638327053141908314&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MpgzPYSktTCiRso9N7FsvK3K2ZS1Ybwk6lg4OmXLIJBh7AAxlVEMSiOjNvJAzIoKjmPwEiJcWZtfi-7h68YAvPis87mJ-QtKw0W28oJXO53uoFSa99renhnlPAd8r43pgkGNl9-x-K19YdVyKsGYbGSvqnOxTqefKeJoLeKJMCBbfAZ9Qqojk-SRVMr-5jZJBQ6ggXQXpTJ4536GiA6c66h690F5HIaXE46ScXi2eivFckqVNAdmJkBdpn2miIqScbMW2yIqPippr5bPTgmDoGlFQzXahwqnqFLs8kDD2c38hc-K-GEtpECB8_hjJnS7dtPwYffNv0jYAOBW2XJvSw&h=f_7lg4IWxjhkCHQntvDEUE1_XgL4QKXUZMjvajW2l98 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k response: body: string: '{"status":"Succeeded"}' @@ -317,21 +265,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:03:55 GMT + - Mon, 19 Feb 2024 18:04:56 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: B2AEB846216F42ECBA57B3253C3DAC1B Ref B: MAA201060515047 Ref C: 2024-02-19T18:04:56Z' status: code: 200 message: Ok @@ -349,40 +295,38 @@ interactions: ParameterSetName: - -n -g --locations --capabilities --kind User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:03:21.272436Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"1be975d3-572d-4cb2-9aaf-3c17d75fa298","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:13.1583582Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"95efbc1e-885f-46ec-9d8c-23650815d831","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2965' + - '3250' content-type: - application/json date: - - Thu, 12 Oct 2023 11:03:56 GMT + - Mon, 19 Feb 2024 18:04:57 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 695A24FE0B5D4AE98700B7469F151187 Ref B: MAA201060515047 Ref C: 2024-02-19T18:04:56Z' status: code: 200 message: Ok @@ -400,40 +344,38 @@ interactions: ParameterSetName: - -n -g --locations --capabilities --kind User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:03:21.272436Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"1be975d3-572d-4cb2-9aaf-3c17d75fa298","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:13.1583582Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"95efbc1e-885f-46ec-9d8c-23650815d831","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2965' + - '3250' content-type: - application/json date: - - Thu, 12 Oct 2023 11:03:56 GMT + - Mon, 19 Feb 2024 18:04:57 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 381DE661CDB24E43B14F9926878F3C42 Ref B: MAA201060515047 Ref C: 2024-02-19T18:04:57Z' status: code: 200 message: Ok @@ -451,47 +393,45 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:03:21.272436Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"1be975d3-572d-4cb2-9aaf-3c17d75fa298","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:13.1583582Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"95efbc1e-885f-46ec-9d8c-23650815d831","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:03:21.272436Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2965' + - '3250' content-type: - application/json date: - - Thu, 12 Oct 2023 11:03:58 GMT + - Mon, 19 Feb 2024 18:04:58 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5FA088D6CBDB424683439213CF3E2F43 Ref B: MAA201060516033 Ref C: 2024-02-19T18:04:58Z' status: code: 200 message: Ok - request: body: '{"properties": {"source": {"component": "CosmosDBMongo", "databaseName": "cli000002", "collectionName": "cli000003"}, "destination": {"component": "CosmosDBMongo", - "databaseName": "cli000002", "collectionName": "cli000004"}}}' + "databaseName": "cli000002", "collectionName": "cli000004"}, "mode": "Offline"}}' headers: Accept: - application/json @@ -502,43 +442,41 @@ interactions: Connection: - keep-alive Content-Length: - - '225' + - '244' Content-Type: - application/json ParameterSetName: - -g --job-name --src-account --dest-account --src-mongo --dest-mongo User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:04:00.6623586Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:01.0694965Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' headers: cache-control: - no-store, no-cache content-length: - - '613' + - '635' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:01 GMT + - Mon, 19 Feb 2024 18:05:01 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' + x-msedge-ref: + - 'Ref A: C2EE9E9E712F4594B9A89C0F66299073 Ref B: MAA201060516037 Ref C: 2024-02-19T18:04:59Z' status: code: 200 message: Ok @@ -556,35 +494,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:04:00Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:01Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' headers: cache-control: - no-store, no-cache content-length: - - '605' + - '627' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:03 GMT + - Mon, 19 Feb 2024 18:05:02 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2A91F988D497459387F0A59293CCA5A6 Ref B: MAA201060513011 Ref C: 2024-02-19T18:05:02Z' status: code: 200 message: Ok @@ -602,35 +538,33 @@ interactions: ParameterSetName: - -g --account-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2024-02-15-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:04:00Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:01Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}]}' headers: cache-control: - no-store, no-cache content-length: - - '617' + - '639' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:05 GMT + - Mon, 19 Feb 2024 18:05:04 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 646FACAA06CB483786F943E0E7C48C5F Ref B: MAA201060516023 Ref C: 2024-02-19T18:05:03Z' status: code: 200 message: Ok @@ -650,37 +584,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2023-10-12T11:04:08Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-19T18:05:05Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' headers: cache-control: - no-store, no-cache content-length: - - '604' + - '626' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:09 GMT + - Mon, 19 Feb 2024 18:05:05 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 05879C2A8E934E3EB481771E1B011F23 Ref B: MAA201060516035 Ref C: 2024-02-19T18:05:05Z' status: code: 200 message: Ok @@ -698,35 +630,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2023-10-12T11:04:08Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-19T18:05:05Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' headers: cache-control: - no-store, no-cache content-length: - - '604' + - '626' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:12 GMT + - Mon, 19 Feb 2024 18:05:06 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0710D75352744C9CAE1F1C73EFB84D38 Ref B: MAA201060515023 Ref C: 2024-02-19T18:05:06Z' status: code: 200 message: Ok @@ -746,37 +676,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:04:14Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:08Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' headers: cache-control: - no-store, no-cache content-length: - - '605' + - '627' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:16 GMT + - Mon, 19 Feb 2024 18:05:08 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: FB8C13A9D797471F9C5A81878CA9C3FB Ref B: MAA201060514025 Ref C: 2024-02-19T18:05:07Z' status: code: 200 message: Ok @@ -794,35 +722,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:04:14Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:08Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' headers: cache-control: - no-store, no-cache content-length: - - '605' + - '627' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:17 GMT + - Mon, 19 Feb 2024 18:05:09 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: E34FE36A56724991A76B8E9DD49BE26A Ref B: MAA201060515023 Ref C: 2024-02-19T18:05:09Z' status: code: 200 message: Ok @@ -842,37 +768,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2023-10-12T11:04:20Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-19T18:05:11Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' headers: cache-control: - no-store, no-cache content-length: - - '607' + - '629' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:22 GMT + - Mon, 19 Feb 2024 18:05:10 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 385008E4A74B41B6B60E6499F1A2FAE5 Ref B: MAA201060516047 Ref C: 2024-02-19T18:05:10Z' status: code: 200 message: Ok @@ -890,35 +814,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2023-10-12T11:04:20Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-19T18:05:11Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' headers: cache-control: - no-store, no-cache content-length: - - '607' + - '629' content-type: - application/json date: - - Thu, 12 Oct 2023 11:04:24 GMT + - Mon, 19 Feb 2024 18:05:12 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: BEF40624B1DC4729A2BA8E89BD9039B0 Ref B: MAA201060514011 Ref C: 2024-02-19T18:05:11Z' status: code: 200 message: Ok diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_nosql.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_nosql.yaml index 2bd3ca0f5e5..196d5972c09 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_nosql.yaml +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_nosql.yaml @@ -13,31 +13,33 @@ interactions: ParameterSetName: - -n -g --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_copy_nosql","date":"2023-10-12T13:23:29Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2024-02-20T05:22:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '396' + - '334' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Oct 2023 13:23:35 GMT + - Tue, 20 Feb 2024 05:22:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5F2F7449CCE948848B4F45EECDD0817E Ref B: MAA201060515047 Ref C: 2024-02-20T05:22:39Z' status: code: 200 message: OK @@ -61,46 +63,44 @@ interactions: ParameterSetName: - -n -g --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008","name":"cli000008","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:23:39.8303199Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ec1d055e-aafa-483f-ab4b-3cb55d1374dd","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000008-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000008-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000008-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000008-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:23:39.8303199Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:23:39.8303199Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:23:39.8303199Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:23:39.8303199Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:22:43.0044143Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:22:43.0044143Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:22:43.0044143Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:22:43.0044143Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:22:43.0044143Z"}}},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a2ed6ffe-aaf6-431b-b0cf-18438cb1b118?api-version=2023-09-15-preview&t=638327138213367308&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gHqGwr7Djm0lpNqgojqu3Vy7q3vGkX9zngz8dRe34ojuijcch8Kryypx3jE6mAwaUmof9MBjHdY7XhyaWImJhgsDaD0M6ehA5uiFLghR81bj4Nq6egyNqu7COEcP6zk31cTue_X7MiMwk8sZ6wsNZzf9Lk-v2Lqpo149TRigniaZjBbUO66fXnqL3oZhSACyELvVBtmCCUZ82onuDV-e-ZiwNmNBdc5GQEe3OmLSeqpr8Ad_5VXqqnEw7v9pKSeAXAcpiYSSCcCjuTR3neHYsumyQRVYu6R3Oiyk_YPZxZD_4zmmJA65dP_FnUU7G1ZTQAuuRtltGqrtgOw4eE4jYg&h=s_DRngP44MT0FvCb93kUu_lhC4051D_ryAK78u1RhVI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 cache-control: - no-store, no-cache content-length: - - '2447' + - '2742' content-type: - application/json date: - - Thu, 12 Oct 2023 13:23:41 GMT + - Tue, 20 Feb 2024 05:22:43 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/operationResults/a2ed6ffe-aaf6-431b-b0cf-18438cb1b118?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/operationResults/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645661856&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=T6x17WQVCx51GSy6F3vPRnkP4kuNp1_wENPUXMnjMYL6VwqjU2EaBFyTvIDR_ls-1sx_jXBV-8Zl7OGZTWY7JlOTx66iQHpKuXfDFVWqmMcvO6SgTyZb2r00NEkVkZwqHt3gyP7jAHLu4oIdxlxtRkLBA0-AkhtlgZSrtBxuCCSOYZ3T-Cl5CCTjiugXcEIw6fvYT3jMxs3kcmy3oopmrnzxlYdQJNmorUb55zp0-jdU7Ce-P_Vz4kV-lV4Y8Il99E5Z32Jr_6w9Cj1-HnoEXf9TvDKo7FvkdHMyUdE53aptdwu04wcoxt-DQ3c71xD3W9qK7pHX9uYeGacVVGO6bg&h=-C-PBM-nmfhJZStB7z8s1oeSM2t9KgEBK0Z27UUvLLo pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 35872797FF484EE08BEC2D54B2324FC9 Ref B: MAA201060513029 Ref C: 2024-02-20T05:22:39Z' status: code: 200 message: Ok @@ -118,12 +118,12 @@ interactions: ParameterSetName: - -n -g --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a2ed6ffe-aaf6-431b-b0cf-18438cb1b118?api-version=2023-09-15-preview&t=638327138213367308&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gHqGwr7Djm0lpNqgojqu3Vy7q3vGkX9zngz8dRe34ojuijcch8Kryypx3jE6mAwaUmof9MBjHdY7XhyaWImJhgsDaD0M6ehA5uiFLghR81bj4Nq6egyNqu7COEcP6zk31cTue_X7MiMwk8sZ6wsNZzf9Lk-v2Lqpo149TRigniaZjBbUO66fXnqL3oZhSACyELvVBtmCCUZ82onuDV-e-ZiwNmNBdc5GQEe3OmLSeqpr8Ad_5VXqqnEw7v9pKSeAXAcpiYSSCcCjuTR3neHYsumyQRVYu6R3Oiyk_YPZxZD_4zmmJA65dP_FnUU7G1ZTQAuuRtltGqrtgOw4eE4jYg&h=s_DRngP44MT0FvCb93kUu_lhC4051D_ryAK78u1RhVI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 response: body: - string: '{"status":"Enqueued"}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache @@ -132,21 +132,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 13:23:41 GMT + - Tue, 20 Feb 2024 05:23:14 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8C2A15EEF57C444EACF4EC013A4E7CB4 Ref B: MAA201060513029 Ref C: 2024-02-20T05:23:14Z' status: code: 200 message: Ok @@ -164,9 +162,9 @@ interactions: ParameterSetName: - -n -g --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a2ed6ffe-aaf6-431b-b0cf-18438cb1b118?api-version=2023-09-15-preview&t=638327138213367308&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gHqGwr7Djm0lpNqgojqu3Vy7q3vGkX9zngz8dRe34ojuijcch8Kryypx3jE6mAwaUmof9MBjHdY7XhyaWImJhgsDaD0M6ehA5uiFLghR81bj4Nq6egyNqu7COEcP6zk31cTue_X7MiMwk8sZ6wsNZzf9Lk-v2Lqpo149TRigniaZjBbUO66fXnqL3oZhSACyELvVBtmCCUZ82onuDV-e-ZiwNmNBdc5GQEe3OmLSeqpr8Ad_5VXqqnEw7v9pKSeAXAcpiYSSCcCjuTR3neHYsumyQRVYu6R3Oiyk_YPZxZD_4zmmJA65dP_FnUU7G1ZTQAuuRtltGqrtgOw4eE4jYg&h=s_DRngP44MT0FvCb93kUu_lhC4051D_ryAK78u1RhVI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 response: body: string: '{"status":"Dequeued"}' @@ -178,21 +176,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 13:24:11 GMT + - Tue, 20 Feb 2024 05:23:45 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1F69F1161D844076A9232332799164F2 Ref B: MAA201060513029 Ref C: 2024-02-20T05:23:45Z' status: code: 200 message: Ok @@ -210,9 +206,9 @@ interactions: ParameterSetName: - -n -g --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a2ed6ffe-aaf6-431b-b0cf-18438cb1b118?api-version=2023-09-15-preview&t=638327138213367308&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gHqGwr7Djm0lpNqgojqu3Vy7q3vGkX9zngz8dRe34ojuijcch8Kryypx3jE6mAwaUmof9MBjHdY7XhyaWImJhgsDaD0M6ehA5uiFLghR81bj4Nq6egyNqu7COEcP6zk31cTue_X7MiMwk8sZ6wsNZzf9Lk-v2Lqpo149TRigniaZjBbUO66fXnqL3oZhSACyELvVBtmCCUZ82onuDV-e-ZiwNmNBdc5GQEe3OmLSeqpr8Ad_5VXqqnEw7v9pKSeAXAcpiYSSCcCjuTR3neHYsumyQRVYu6R3Oiyk_YPZxZD_4zmmJA65dP_FnUU7G1ZTQAuuRtltGqrtgOw4eE4jYg&h=s_DRngP44MT0FvCb93kUu_lhC4051D_ryAK78u1RhVI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 response: body: string: '{"status":"Dequeued"}' @@ -224,21 +220,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 13:24:43 GMT + - Tue, 20 Feb 2024 05:24:15 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9FA865A852C94212AAE18B700DA9D055 Ref B: MAA201060513029 Ref C: 2024-02-20T05:24:16Z' status: code: 200 message: Ok @@ -256,9 +250,9 @@ interactions: ParameterSetName: - -n -g --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a2ed6ffe-aaf6-431b-b0cf-18438cb1b118?api-version=2023-09-15-preview&t=638327138213367308&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gHqGwr7Djm0lpNqgojqu3Vy7q3vGkX9zngz8dRe34ojuijcch8Kryypx3jE6mAwaUmof9MBjHdY7XhyaWImJhgsDaD0M6ehA5uiFLghR81bj4Nq6egyNqu7COEcP6zk31cTue_X7MiMwk8sZ6wsNZzf9Lk-v2Lqpo149TRigniaZjBbUO66fXnqL3oZhSACyELvVBtmCCUZ82onuDV-e-ZiwNmNBdc5GQEe3OmLSeqpr8Ad_5VXqqnEw7v9pKSeAXAcpiYSSCcCjuTR3neHYsumyQRVYu6R3Oiyk_YPZxZD_4zmmJA65dP_FnUU7G1ZTQAuuRtltGqrtgOw4eE4jYg&h=s_DRngP44MT0FvCb93kUu_lhC4051D_ryAK78u1RhVI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 response: body: string: '{"status":"Succeeded"}' @@ -270,21 +264,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:14 GMT + - Tue, 20 Feb 2024 05:24:46 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 289756C04A3A42E48E33752E499B1D49 Ref B: MAA201060513029 Ref C: 2024-02-20T05:24:46Z' status: code: 200 message: Ok @@ -302,40 +294,38 @@ interactions: ParameterSetName: - -n -g --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008","name":"cli000008","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:24:54.5723036Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000008.documents.azure.com:443/","sqlEndpoint":"https://cli000008.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ec1d055e-aafa-483f-ab4b-3cb55d1374dd","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000008-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2801' + - '3096' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:14 GMT + - Tue, 20 Feb 2024 05:24:47 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: EACC120FC3B74CD7955D6130D083829E Ref B: MAA201060513029 Ref C: 2024-02-20T05:24:47Z' status: code: 200 message: Ok @@ -353,40 +343,38 @@ interactions: ParameterSetName: - -n -g --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008","name":"cli000008","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:24:54.5723036Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000008.documents.azure.com:443/","sqlEndpoint":"https://cli000008.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ec1d055e-aafa-483f-ab4b-3cb55d1374dd","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000008-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2801' + - '3096' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:15 GMT + - Tue, 20 Feb 2024 05:24:47 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5D94DCF9FE0A4811BF1C564E300404BB Ref B: MAA201060513029 Ref C: 2024-02-20T05:24:48Z' status: code: 200 message: Ok @@ -404,47 +392,45 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008","name":"cli000008","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:24:54.5723036Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000008.documents.azure.com:443/","sqlEndpoint":"https://cli000008.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ec1d055e-aafa-483f-ab4b-3cb55d1374dd","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000008-eastus","locationName":"East - US","documentEndpoint":"https://cli000008-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000008-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:24:54.5723036Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2801' + - '3096' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:16 GMT + - Tue, 20 Feb 2024 05:24:49 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: D037624BDD2D442DA957EAA948F572C8 Ref B: MAA201060516033 Ref C: 2024-02-20T05:24:48Z' status: code: 200 message: Ok - request: body: '{"properties": {"source": {"component": "CosmosDBSql", "databaseName": "cli000002", "containerName": "cli000003"}, "destination": {"component": "CosmosDBSql", - "databaseName": "cli000002", "containerName": "cli000004"}}}' + "databaseName": "cli000002", "containerName": "cli000004"}, "mode": "Offline"}}' headers: Accept: - application/json @@ -455,43 +441,41 @@ interactions: Connection: - keep-alive Content-Length: - - '219' + - '238' Content-Type: - application/json ParameterSetName: - -g --job-name --src-account --dest-account --src-nosql --dest-nosql User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T13:25:20.03004Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:50.5961738Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '599' + - '623' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:21 GMT + - Tue, 20 Feb 2024 05:24:50 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: DE7EC70C7EB14FC69A1BFA533527B560 Ref B: MAA201060516045 Ref C: 2024-02-20T05:24:49Z' status: code: 200 message: Ok @@ -509,35 +493,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T13:25:20Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:50Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '593' + - '615' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:24 GMT + - Tue, 20 Feb 2024 05:24:51 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: C3F56D9EC8044ACCAB48346C9A935CCF Ref B: MAA201060513053 Ref C: 2024-02-20T05:24:51Z' status: code: 200 message: Ok @@ -555,35 +537,33 @@ interactions: ParameterSetName: - -g --account-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs?api-version=2024-02-15-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T13:25:20Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:50Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}]}' headers: cache-control: - no-store, no-cache content-length: - - '605' + - '627' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:26 GMT + - Tue, 20 Feb 2024 05:24:53 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0DD1AC7F369444378DE93521B11849B0 Ref B: MAA201060515051 Ref C: 2024-02-20T05:24:52Z' status: code: 200 message: Ok @@ -603,37 +583,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005/pause?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2023-10-12T13:25:29Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-20T05:24:55Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '592' + - '614' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:31 GMT + - Tue, 20 Feb 2024 05:24:55 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: AC6039608DDF4BB3A9925CFDF780EAC9 Ref B: MAA201060516019 Ref C: 2024-02-20T05:24:53Z' status: code: 200 message: Ok @@ -651,35 +629,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2023-10-12T13:25:29Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-20T05:24:55Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '592' + - '614' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:33 GMT + - Tue, 20 Feb 2024 05:24:55 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 91340D7700854B81AE0001557157A5C9 Ref B: MAA201060513017 Ref C: 2024-02-20T05:24:55Z' status: code: 200 message: Ok @@ -699,37 +675,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005/resume?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T13:25:35Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:57Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '593' + - '615' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:37 GMT + - Tue, 20 Feb 2024 05:24:58 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 4C6E69CBCE6248BEA233798468BD8D23 Ref B: MAA201060515025 Ref C: 2024-02-20T05:24:56Z' status: code: 200 message: Ok @@ -747,35 +721,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T13:25:35Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:57Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '593' + - '615' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:39 GMT + - Tue, 20 Feb 2024 05:24:59 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: DFF149B878BB48709709C06908670DC2 Ref B: MAA201060514053 Ref C: 2024-02-20T05:24:58Z' status: code: 200 message: Ok @@ -795,37 +767,35 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005/cancel?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2023-10-12T13:25:41Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-20T05:25:01Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '595' + - '617' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:43 GMT + - Tue, 20 Feb 2024 05:25:00 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 4048F9D0DF32491399C157524FBB65AA Ref B: MAA201060513021 Ref C: 2024-02-20T05:25:00Z' status: code: 200 message: Ok @@ -843,89 +813,1793 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2023-10-12T13:25:41Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-20T05:25:01Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '595' + - '617' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:44 GMT + - Tue, 20 Feb 2024 05:25:01 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 837C21C040804469A253F6B714200ABE Ref B: MAA201060514053 Ref C: 2024-02-20T05:25:01Z' status: code: 200 message: Ok - request: - body: '{"properties": {"source": {"remoteAccountName": "cli000006", "component": - "CosmosDBSql", "databaseName": "cli000002", "containerName": "cli000003"}, "destination": - {"component": "CosmosDBSql", "databaseName": "cli000002", "containerName": "cli000004"}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - cosmosdb copy create + - cosmosdb identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2697' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:25:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CA15CB5C4B6B4883A4673A6D3DCE7160 Ref B: MAA201060513037 Ref C: 2024-02-20T05:25:02Z' + status: + code: 200 + message: Ok +- request: + body: '{"identity": {"type": "SystemAssigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb identity assign Connection: - keep-alive Content-Length: - - '253' + - '40' Content-Type: - application/json ParameterSetName: - - -g --job-name --src-account --dest-account --src-nosql --dest-nosql + - -n -g User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000007?api-version=2023-09-15-preview + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c784b6c6-b718-40b2-bea2-ff2b8c2fa6e2?api-version=2023-11-15&t=638440035077429605&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gxgbaoQoKaCBjaEcLg5dObDUKZ-1Pp3atlZbHrI3LEfFBLycNwAxcR5SruLPGswU5LS_hQKqR1n0UynJa4BXDEW4cv-ugr5z1t_zrDbmbeJWVMCq1x4HDMsVLSD3Zf5OPBBaK-IFAoGBVAeW28Pzwr6qteK0AjGOYss_MXFvpBemmfqrGlqnEwqpvsOw1J9bSJL7rYWwhwAZ0bbtXYEvcTtjvfnkEFFfypHpB2Xy5S3HFoGl50YL3eovpcGxuQBmpmI-eierV1cJa_ShaWjfw-8jX6ImSZkKLqbS4bTnme6_51y4ObWrcr4y8WGro0TdA-Cekrwq_3H-eFGN-zn7kg&h=tVOl06jazLif_-lnLFbgHumrVPrmy9qpyzMiCpfFbQA + cache-control: + - no-store, no-cache + content-length: + - '2696' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:25:06 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/operationResults/c784b6c6-b718-40b2-bea2-ff2b8c2fa6e2?api-version=2023-11-15&t=638440035077586066&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=BgMyXPupaf6tdaa0WUU9n-sYhz2-uoUNGuGejUUh0GanlSnMknwu-iHWnE6R5Q5si5vVNKpL_E4Fax6U01tSnzzLPbt4w1wj7Y0KIoU-m7QH2pTzujdPuznCaKdjlaZBugz8ElknT_o4pawBzqPxAJEFVYqea5G5tO_ZM0Dh_uNYwrJLGhD_M-qXnLtVtlThWP3WHOD_8WEDzCR4XzgPT7vmR4aXQIBum7BHACxAL3o2VsKLiwMdtLMVRoODM785QJJv8QUNgin2rZKv7pCkwHlgG4Xd9L9dKPENpjoYVriIxNGgMex49T9n1NFTiT1hNTPQijCG6lNAbHY1tRYRaA&h=fyKow2zLGZQ2RZz77QDT_Br_pKNMcgsYW7o5NbtNR1Y + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: DBE54360E1054E01AE8EDBBE735D1506 Ref B: MAA201060513037 Ref C: 2024-02-20T05:25:03Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c784b6c6-b718-40b2-bea2-ff2b8c2fa6e2?api-version=2023-11-15&t=638440035077429605&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gxgbaoQoKaCBjaEcLg5dObDUKZ-1Pp3atlZbHrI3LEfFBLycNwAxcR5SruLPGswU5LS_hQKqR1n0UynJa4BXDEW4cv-ugr5z1t_zrDbmbeJWVMCq1x4HDMsVLSD3Zf5OPBBaK-IFAoGBVAeW28Pzwr6qteK0AjGOYss_MXFvpBemmfqrGlqnEwqpvsOw1J9bSJL7rYWwhwAZ0bbtXYEvcTtjvfnkEFFfypHpB2Xy5S3HFoGl50YL3eovpcGxuQBmpmI-eierV1cJa_ShaWjfw-8jX6ImSZkKLqbS4bTnme6_51y4ObWrcr4y8WGro0TdA-Cekrwq_3H-eFGN-zn7kg&h=tVOl06jazLif_-lnLFbgHumrVPrmy9qpyzMiCpfFbQA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:25:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AAF2EFC12C0D4287B32EB1214DB37B53 Ref B: MAA201060513037 Ref C: 2024-02-20T05:25:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c784b6c6-b718-40b2-bea2-ff2b8c2fa6e2?api-version=2023-11-15&t=638440035077429605&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gxgbaoQoKaCBjaEcLg5dObDUKZ-1Pp3atlZbHrI3LEfFBLycNwAxcR5SruLPGswU5LS_hQKqR1n0UynJa4BXDEW4cv-ugr5z1t_zrDbmbeJWVMCq1x4HDMsVLSD3Zf5OPBBaK-IFAoGBVAeW28Pzwr6qteK0AjGOYss_MXFvpBemmfqrGlqnEwqpvsOw1J9bSJL7rYWwhwAZ0bbtXYEvcTtjvfnkEFFfypHpB2Xy5S3HFoGl50YL3eovpcGxuQBmpmI-eierV1cJa_ShaWjfw-8jX6ImSZkKLqbS4bTnme6_51y4ObWrcr4y8WGro0TdA-Cekrwq_3H-eFGN-zn7kg&h=tVOl06jazLif_-lnLFbgHumrVPrmy9qpyzMiCpfFbQA + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:26:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3224DBB75101415894C17571F784830A Ref B: MAA201060513037 Ref C: 2024-02-20T05:26:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2835' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:26:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2687185C2D03409EA46ADA4547706541 Ref B: MAA201060513037 Ref C: 2024-02-20T05:26:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --default-identity + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3234' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:26:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F41BC49E77C641CBA080D4F104CCB902 Ref B: MAA201060513033 Ref C: 2024-02-20T05:26:10Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"defaultIdentity": "SystemAssignedIdentity", "apiProperties": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + Content-Length: + - '82' + Content-Type: + - application/json + ParameterSetName: + - -n -g --default-identity + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000007","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000007","status":"Pending","lastUpdatedUtcTime":"2023-10-12T13:25:46.9057658Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","remoteAccountName":"cli000006","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac0ee93c-166f-4dd9-891a-63e20f9276f6?api-version=2024-02-15-preview&t=638440035789045370&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=jbRq07EloPAeCfUs1-TZzfssx4mzu2847cGID_2wCdxTnnygmn7Ph-oQDzoJF6uTmqbFU7umqZVay0LsqEbccOCbQMT5z7MAfGiZd0kKYuyoLGo53ZZE0zqJuqiQSIWk8ZZ4uAd-3uo8TDwJRQPFq1Q9QYvdRUbKWv0qp4YTh2YBtg-m2uTJ01iXo08AEeSixAy9eEzHULUid99BOLwxOY9bK-jrSU1VUo3NLYdvRp0273PHV2FB3cSWmp7RoVTZQ7MjNzVYnfp-2w-xgmjvFO7vlozoEYyIYwhOVaHYYeeR3wde18is9hX_BmyOPV71lJGm7nprF7bTzQV-Ms9-7A&h=yiDCxh3rG8uFHo4y8mgGxt0GTDW8cZsw3cYnEmaCo-g cache-control: - no-store, no-cache content-length: - - '633' + - '3233' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:47 GMT + - Tue, 20 Feb 2024 05:26:18 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/operationResults/ac0ee93c-166f-4dd9-891a-63e20f9276f6?api-version=2024-02-15-preview&t=638440035789201866&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=W4A3qBIEi_o0rxjXzxv_lS80hAALdwsIDj2QDrXyO-hJcsbj8OAg_xzyfqP9a5u3tYaALSkHbinnuGDt4XzvZ0wwvqK9Sh3UJ62AeyI6Z4sYXy7-0gayvhb0x1pUNmuEKPCqK4tiegd92UORIkqsxWknRQCqmP4HBlwuLyAhtzPKZlKI9f8_-zNDwd9txfSPKJRVHRmpccZqlCysrCPTBr-a2FXlTnYyHFudhaN_cN2KWjMb_0Ze4Hy5rIzZIXs9gdr-8TQf1JIW2V0qHDbXEJoRSHzoZCGTGIfaRxVRckdICUJ78fUtRqT4viXXphjL10w6a-tJP5WesRG6CoWQ0w&h=7mHIsMtv4ApUOuvJgC6ZtWSPzG7GbPTT_SmN39LiTp8 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F00C20A4DFE1484DA70D0D66CB55D05A Ref B: MAA201060513033 Ref C: 2024-02-20T05:26:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --default-identity + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac0ee93c-166f-4dd9-891a-63e20f9276f6?api-version=2024-02-15-preview&t=638440035789045370&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=jbRq07EloPAeCfUs1-TZzfssx4mzu2847cGID_2wCdxTnnygmn7Ph-oQDzoJF6uTmqbFU7umqZVay0LsqEbccOCbQMT5z7MAfGiZd0kKYuyoLGo53ZZE0zqJuqiQSIWk8ZZ4uAd-3uo8TDwJRQPFq1Q9QYvdRUbKWv0qp4YTh2YBtg-m2uTJ01iXo08AEeSixAy9eEzHULUid99BOLwxOY9bK-jrSU1VUo3NLYdvRp0273PHV2FB3cSWmp7RoVTZQ7MjNzVYnfp-2w-xgmjvFO7vlozoEYyIYwhOVaHYYeeR3wde18is9hX_BmyOPV71lJGm7nprF7bTzQV-Ms9-7A&h=yiDCxh3rG8uFHo4y8mgGxt0GTDW8cZsw3cYnEmaCo-g + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:26:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C300035480AA4A43B03168446E420E06 Ref B: MAA201060513033 Ref C: 2024-02-20T05:26:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --default-identity + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac0ee93c-166f-4dd9-891a-63e20f9276f6?api-version=2024-02-15-preview&t=638440035789045370&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=jbRq07EloPAeCfUs1-TZzfssx4mzu2847cGID_2wCdxTnnygmn7Ph-oQDzoJF6uTmqbFU7umqZVay0LsqEbccOCbQMT5z7MAfGiZd0kKYuyoLGo53ZZE0zqJuqiQSIWk8ZZ4uAd-3uo8TDwJRQPFq1Q9QYvdRUbKWv0qp4YTh2YBtg-m2uTJ01iXo08AEeSixAy9eEzHULUid99BOLwxOY9bK-jrSU1VUo3NLYdvRp0273PHV2FB3cSWmp7RoVTZQ7MjNzVYnfp-2w-xgmjvFO7vlozoEYyIYwhOVaHYYeeR3wde18is9hX_BmyOPV71lJGm7nprF7bTzQV-Ms9-7A&h=yiDCxh3rG8uFHo4y8mgGxt0GTDW8cZsw3cYnEmaCo-g + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:27:19 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 77A9B9CA4D974637B5896E9BCAEB37DA Ref B: MAA201060513033 Ref C: 2024-02-20T05:27:19Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --default-identity + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3238' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:27:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8E1184DD6F5142DEBCF39F764BD79757 Ref B: MAA201060513033 Ref C: 2024-02-20T05:27:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --default-identity + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3238' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:27:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 028740EDBD4643389493DC2423A3C8D8 Ref B: MAA201060513033 Ref C: 2024-02-20T05:27:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2024-02-20T05:22:34Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '334' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Feb 2024 05:27:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 49FA95A97A05495E9B1964C0733D1081 Ref B: MAA201060514033 Ref C: 2024-02-20T05:27:22Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '244' + Content-Type: + - application/json + ParameterSetName: + - -n -g --locations + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006","name":"cliremote000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:27:25.4991Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c3f18582-94dc-4cca-b099-8eae43ee7bd2","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cliremote000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cliremote000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cliremote000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cliremote000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:27:25.4991Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:27:25.4991Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:27:25.4991Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:27:25.4991Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U + cache-control: + - no-store, no-cache + content-length: + - '2763' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:27:26 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006/operationResults/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Gwgf3Pwj4bgaHIN5pL50tO1DKNofhkKjk3SA8ECBdKzz7ePV_T1kwn4qihFETRI5mMM2uGji6Hfk2x7C0SphUXO1uoVmPoEuEh2dUHK41D0qEcJsgAHb0OIiJl_0PxT20jmh60Sizhm2FEbeI4nhi5wbuIHBrZc-ARnFNdYkaTqGJmErWwqLeD84lszkW4a_aUOEVA9WRvsoe7JW9RrEHyjOUsOehap3wVAbMQMa0ewc7LTaPpH1QmmezqSSkG35mwtUn0Gd4d1nj9944zVr-DQAHNcXk3WBQRu5SuP5FAqEZVeFXiGsCOgMeYFNFs8hHtYp_6nbhvYPoorF3kcZEg&h=p56uoMbZMs9T9HkUboDFNTfDnSmZ-50N_s5zNYeEVRc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 23871CEDE1F54B1B83004021E46A86E2 Ref B: MAA201060514027 Ref C: 2024-02-20T05:27:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:27:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3EA6B3F747A1464A9299CB9D71B92F89 Ref B: MAA201060514027 Ref C: 2024-02-20T05:27:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:28:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 009B16B7DC924A729571A1DF80C85C83 Ref B: MAA201060514027 Ref C: 2024-02-20T05:28:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:28:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8B0E8890CCF742D9B9BC28AFC17B647F Ref B: MAA201060514027 Ref C: 2024-02-20T05:28:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:29:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3C3BFB9A5E3F4CDEB473560825904D4D Ref B: MAA201060514027 Ref C: 2024-02-20T05:29:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006","name":"cliremote000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:28:40.9464964Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cliremote000006.documents.azure.com:443/","sqlEndpoint":"https://cliremote000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c3f18582-94dc-4cca-b099-8eae43ee7bd2","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cliremote000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3162' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:29:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 66249B1DFEBA474F8BD6FE109C0A44F3 Ref B: MAA201060514027 Ref C: 2024-02-20T05:29:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006","name":"cliremote000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:28:40.9464964Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cliremote000006.documents.azure.com:443/","sqlEndpoint":"https://cliremote000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c3f18582-94dc-4cca-b099-8eae43ee7bd2","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cliremote000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3162' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:29:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1568FE7F18754FB192A0E72B060A4291 Ref B: MAA201060514027 Ref C: 2024-02-20T05:29:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006","name":"cliremote000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:28:40.9464964Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cliremote000006.documents.azure.com:443/","sqlEndpoint":"https://cliremote000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c3f18582-94dc-4cca-b099-8eae43ee7bd2","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cliremote000006-eastus","locationName":"East + US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cliremote000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3162' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:29:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FDB2E6B281E54BE79AEC1D03596398F0 Ref B: MAA201060513023 Ref C: 2024-02-20T05:29:30Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"source": {"component": "CosmosDBSql", "remoteAccountName": + "cliremote000006", "databaseName": "cli000002", "containerName": "cli000003"}, + "destination": {"component": "CosmosDBSql", "databaseName": "cli000002", "containerName": + "cli000004"}, "mode": "Offline"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy create + Connection: + - keep-alive + Content-Length: + - '278' + Content-Type: + - application/json + ParameterSetName: + - -g --job-name --src-account --dest-account --src-nosql --dest-nosql + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000007?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000007","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000007","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:29:32.7758553Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","remoteAccountName":"cliremote000006","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '661' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:29:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: F850313795954A95830429F01F965B64 Ref B: MAA201060516029 Ref C: 2024-02-20T05:29:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000007?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000007","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000007","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:29:32Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","remoteAccountName":"cliremote000006","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '653' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:29:34 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A17FC9ACC4074D1C9FA964D57E8DB65D Ref B: MAA201060513035 Ref C: 2024-02-20T05:29:33Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --set --resource-type --namespace + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"},{"applicationId":"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9","roleDefinitionId":"D5A795DE-916D-4818-B015-33C9E103E39B"},{"applicationId":"a232010e-820c-4083-83bb-3ace5fc29d0b","roleDefinitionId":"D5A795DE-916D-4818-B015-33C9E103E39B"},{"applicationId":"e95a6071-4f90-4971-84e2-492d9323345b","roleDefinitionId":"A2EBFC51-AD44-4D13-A387-B95AFDFA016D"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"defaultApiVersion":"2022-08-15-preview","apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"databaseAccountNames","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operationResults","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations/operationsStatus","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/restorableDatabaseAccounts","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview","2020-06-01-preview"],"capabilities":"None"},{"resourceType":"restorableDatabaseAccounts","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview","2020-06-01-preview"],"capabilities":"None"},{"resourceType":"cassandraClusters","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview"],"defaultApiVersion":"2021-10-15","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"databaseAccounts/encryptionScopes","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview"],"capabilities":"None"},{"resourceType":"mongoClusters","locations":["East + US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada + Central","Central US","South Central US","Southeast Asia","UK South","Central + India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"defaultApiVersion":"2023-03-01-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/mongoClusterOperationResults","locations":["East + US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada + Central","Central US","South Central US","Southeast Asia","UK South","Central + India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/mongoClusterAzureAsyncOperation","locations":["East + US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada + Central","Central US","South Central US","Southeast Asia","UK South","Central + India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/checkMongoClusterNameAvailability","locations":["East + US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada + Central","Central US","South Central US","Southeast Asia","UK South","Central + India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","France South","Australia Central 2","UAE Central","West + US 3","Brazil SouthEast","Germany North","Switzerland West","South Africa + West","Norway West","Jio India West","Jio India Central","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15"],"capabilities":"None"},{"resourceType":"throughputPools","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"throughputPools/throughputPoolAccounts","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview"],"capabilities":"SystemAssignedResourceIdentity"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '20097' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Feb 2024 05:29:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 644C042BBE224BCF875A16DC639F814E Ref B: MAA201060515017 Ref C: 2024-02-20T05:29:34Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --set --resource-type --namespace + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2839' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:29:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B224F18BC7A84DD1ABDA176034DE3766 Ref B: MAA201060515017 Ref C: 2024-02-20T05:29:34Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --set --resource-type --namespace + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"},{"applicationId":"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9","roleDefinitionId":"D5A795DE-916D-4818-B015-33C9E103E39B"},{"applicationId":"a232010e-820c-4083-83bb-3ace5fc29d0b","roleDefinitionId":"D5A795DE-916D-4818-B015-33C9E103E39B"},{"applicationId":"e95a6071-4f90-4971-84e2-492d9323345b","roleDefinitionId":"A2EBFC51-AD44-4D13-A387-B95AFDFA016D"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"defaultApiVersion":"2022-08-15-preview","apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"databaseAccountNames","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operationResults","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations/operationsStatus","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/restorableDatabaseAccounts","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview","2020-06-01-preview"],"capabilities":"None"},{"resourceType":"restorableDatabaseAccounts","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview","2020-06-01-preview"],"capabilities":"None"},{"resourceType":"cassandraClusters","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview"],"defaultApiVersion":"2021-10-15","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"databaseAccounts/encryptionScopes","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview"],"capabilities":"None"},{"resourceType":"mongoClusters","locations":["East + US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada + Central","Central US","South Central US","Southeast Asia","UK South","Central + India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"defaultApiVersion":"2023-03-01-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/mongoClusterOperationResults","locations":["East + US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada + Central","Central US","South Central US","Southeast Asia","UK South","Central + India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/mongoClusterAzureAsyncOperation","locations":["East + US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada + Central","Central US","South Central US","Southeast Asia","UK South","Central + India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/checkMongoClusterNameAvailability","locations":["East + US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada + Central","Central US","South Central US","Southeast Asia","UK South","Central + India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","France South","Australia Central 2","UAE Central","West + US 3","Brazil SouthEast","Germany North","Switzerland West","South Africa + West","Norway West","Jio India West","Jio India Central","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15"],"capabilities":"None"},{"resourceType":"throughputPools","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"throughputPools/throughputPoolAccounts","locations":["West + Central US","North Central US","Central US","Brazil South","Canada Central","West + US 2","East US 2","France Central","Japan East","Southeast Asia","Central + India","South Africa North","Switzerland North","UAE North","UK West","North + Europe","West Europe","Norway East","Korea Central","Australia East","Canada + East","East Asia","Germany West Central","UK South","Australia Central","Australia + Southeast","Japan West","Korea South","South India","West India","West US","South + Central US","East US","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview"],"capabilities":"SystemAssignedResourceIdentity"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '20097' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Feb 2024 05:29:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 9DB10E1EB6234B4782F1CB0704CEA9CA Ref B: MAA201060513051 Ref C: 2024-02-20T05:29:36Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "East US", "tags": {}, "properties": {"provisioningState": + "Succeeded", "documentEndpoint": "https://cli000009.documents.azure.com:443/", + "sqlEndpoint": "https://cli000009.documents.azure.com:443/", "publicNetworkAccess": + "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": + false, "enablePartitionKeyMonitor": false, "isVirtualNetworkFilterEnabled": + false, "virtualNetworkRules": [], "EnabledApiTypes": "Sql", "disableKeyBasedMetadataWriteAccess": + false, "enableFreeTier": false, "enableAnalyticalStorage": false, "analyticalStorageConfiguration": + {"schemaType": "WellDefined"}, "instanceId": "ea2ff196-8807-4fba-b5ba-97c03988d1cf", + "databaseAccountOfferType": "Standard", "enableFullFidelityChangeFeed": true, + "defaultIdentity": "SystemAssignedIdentity", "networkAclBypass": "None", "disableLocalAuth": + false, "enablePartitionMerge": false, "enableBurstCapacity": false, "minimalTlsVersion": + "Tls12", "consistencyPolicy": {"defaultConsistencyLevel": "Session", "maxIntervalInSeconds": + 5, "maxStalenessPrefix": 100}, "configurationOverrides": {"EnablePerRegionPerPartitionAutoscaleOptIn": + "True"}, "writeLocations": [{"id": "cli000009-eastus", "locationName": "East + US", "documentEndpoint": "https://cli000009-eastus.documents.azure.com:443/", + "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": + false}], "readLocations": [{"id": "cli000009-eastus", "locationName": "East + US", "documentEndpoint": "https://cli000009-eastus.documents.azure.com:443/", + "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": + false}], "locations": [{"id": "cli000009-eastus", "locationName": "East US", + "documentEndpoint": "https://cli000009-eastus.documents.azure.com:443/", "provisioningState": + "Succeeded", "failoverPriority": 0, "isZoneRedundant": false}], "failoverPolicies": + [{"id": "cli000009-eastus", "locationName": "East US", "failoverPriority": 0}], + "cors": [], "capabilities": [], "ipRules": [], "backupPolicy": {"type": "Periodic", + "periodicModeProperties": {"backupIntervalInMinutes": 240, "backupRetentionIntervalInHours": + 8, "backupStorageRedundancy": "Geo"}}, "networkAclBypassResourceIds": [], "keysMetadata": + {"primaryMasterKey": {"generationTime": "2024-02-20T05:24:01.0738223+00:00"}, + "secondaryMasterKey": {"generationTime": "2024-02-20T05:24:01.0738223+00:00"}, + "primaryReadonlyMasterKey": {"generationTime": "2024-02-20T05:24:01.0738223+00:00"}, + "secondaryReadonlyMasterKey": {"generationTime": "2024-02-20T05:24:01.0738223+00:00"}}}, + "kind": "GlobalDocumentDB", "identity": {"type": "SystemAssigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource update + Connection: + - keep-alive + Content-Length: + - '2588' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --set --resource-type --namespace + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037786988974&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=mslQOLvCU83Gooi8xRWaiPoILJYMB8ullbhqy5FnBNGejxk6TGlVUEkIgLuMIk-LfjBcjqS4ln6o2MEUcuZ398f1yceKAQR_cGYRQmm1G018w0OLiCH7dSA8e7A6BpMcn6yrAWB3mx1uR2uUpBZdgdT2r9XR-ixfWLJ26rrjR8yBeOIiwLeaxnUYgM7vBdpRmuxIYiG4uJzkl3o8z8ZHqTDmj1D8G_0n9FoiTO2kpzjQSEEX8yow10ju-rcLXwWb9FUXlPMaWCD85tESCzSpfUJEFKnMPQG6UV_85onDfJBcXeKAl93-sNnlfgsHAxCZEUwUqByOzbtL8r0Q3977Dw&h=rRFSMn8u54Ed_44vzDtsxTneLLlJaottnmXGguPD-uU + cache-control: + - no-store, no-cache + content-length: + - '2838' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:29:38 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/operationResults/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037787145253&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=lFfOrVgUz-B7FtuRKS6XZ1MzdweLrNqXWU6U5MJ6VcBzpMyNfsDVt627EhyjtIYhggWk519tiBX2hlr11a4GVD84u5iUaOvtGHJyydszhgZmi3rL4kCnvPTO7irbzGgu1VFp-zUXx-avWidvrOcVNpFAfXjSFcWkYmfr0hyK0eYCnIqVurfBVBNBXC-jTbFhQG-voMRqlx_RSQSPaQ0FZ-I6GwPhWfv-dqZGmz9bOqqEPs2p3rwPEw9ic5eHvbej7CBNNEXZJdf5wz970oA1Gwa7Vtb7e4eNJpDISA89ps7-J0Toxua1PAngB3m7FEpw7yRVh7rFQqBHItcbX6bJSA&h=kyaM_yh1joJi4DgcS6tvgHw0oqI-yaEhEAmsDNQJ5UM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: F9FD4C728511482FB7840D9EF1A74EA6 Ref B: MAA201060513051 Ref C: 2024-02-20T05:29:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --set --resource-type --namespace + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037786988974&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=mslQOLvCU83Gooi8xRWaiPoILJYMB8ullbhqy5FnBNGejxk6TGlVUEkIgLuMIk-LfjBcjqS4ln6o2MEUcuZ398f1yceKAQR_cGYRQmm1G018w0OLiCH7dSA8e7A6BpMcn6yrAWB3mx1uR2uUpBZdgdT2r9XR-ixfWLJ26rrjR8yBeOIiwLeaxnUYgM7vBdpRmuxIYiG4uJzkl3o8z8ZHqTDmj1D8G_0n9FoiTO2kpzjQSEEX8yow10ju-rcLXwWb9FUXlPMaWCD85tESCzSpfUJEFKnMPQG6UV_85onDfJBcXeKAl93-sNnlfgsHAxCZEUwUqByOzbtL8r0Q3977Dw&h=rRFSMn8u54Ed_44vzDtsxTneLLlJaottnmXGguPD-uU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:30:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D18663E39A3949489C798BA2BB25C791 Ref B: MAA201060513051 Ref C: 2024-02-20T05:30:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --set --resource-type --namespace + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037786988974&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=mslQOLvCU83Gooi8xRWaiPoILJYMB8ullbhqy5FnBNGejxk6TGlVUEkIgLuMIk-LfjBcjqS4ln6o2MEUcuZ398f1yceKAQR_cGYRQmm1G018w0OLiCH7dSA8e7A6BpMcn6yrAWB3mx1uR2uUpBZdgdT2r9XR-ixfWLJ26rrjR8yBeOIiwLeaxnUYgM7vBdpRmuxIYiG4uJzkl3o8z8ZHqTDmj1D8G_0n9FoiTO2kpzjQSEEX8yow10ju-rcLXwWb9FUXlPMaWCD85tESCzSpfUJEFKnMPQG6UV_85onDfJBcXeKAl93-sNnlfgsHAxCZEUwUqByOzbtL8r0Q3977Dw&h=rRFSMn8u54Ed_44vzDtsxTneLLlJaottnmXGguPD-uU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:30:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B92B4E42C7E1457CA3C2663692BB291F Ref B: MAA201060513051 Ref C: 2024-02-20T05:30:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --set --resource-type --namespace + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037786988974&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=mslQOLvCU83Gooi8xRWaiPoILJYMB8ullbhqy5FnBNGejxk6TGlVUEkIgLuMIk-LfjBcjqS4ln6o2MEUcuZ398f1yceKAQR_cGYRQmm1G018w0OLiCH7dSA8e7A6BpMcn6yrAWB3mx1uR2uUpBZdgdT2r9XR-ixfWLJ26rrjR8yBeOIiwLeaxnUYgM7vBdpRmuxIYiG4uJzkl3o8z8ZHqTDmj1D8G_0n9FoiTO2kpzjQSEEX8yow10ju-rcLXwWb9FUXlPMaWCD85tESCzSpfUJEFKnMPQG6UV_85onDfJBcXeKAl93-sNnlfgsHAxCZEUwUqByOzbtL8r0Q3977Dw&h=rRFSMn8u54Ed_44vzDtsxTneLLlJaottnmXGguPD-uU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:31:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F9032705504E4F3D8B0C75476EEF50C2 Ref B: MAA201060513051 Ref C: 2024-02-20T05:31:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --set --resource-type --namespace + User-Agent: + - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":true,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East + US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2838' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:31:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C1D0488BFA714C94A9617261160CD3B2 Ref B: MAA201060513051 Ref C: 2024-02-20T05:31:09Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"source": {"component": "CosmosDBSql", "databaseName": + "cli000002", "containerName": "cli000003"}, "destination": {"component": "CosmosDBSql", + "databaseName": "cli000002", "containerName": "cli000004"}, "mode": "online"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy create + Connection: + - keep-alive + Content-Length: + - '237' + Content-Type: + - application/json + ParameterSetName: + - -g --mode --job-name --src-account --dest-account --src-nosql --dest-nosql + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000008?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000008","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000008","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:31:11.8754584Z","processedCount":0,"totalCount":0,"mode":"Online","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '622' + content-type: + - application/json + date: + - Tue, 20 Feb 2024 05:31:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 4EE51E65FFAC43019984557503E59126 Ref B: MAA201060516047 Ref C: 2024-02-20T05:31:11Z' status: code: 200 message: Ok @@ -943,35 +2617,33 @@ interactions: ParameterSetName: - -g --account-name --job-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000007?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000008?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000008/dataTransferJobs/cli000007","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000007","status":"Pending","lastUpdatedUtcTime":"2023-10-12T13:25:46Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"databaseName":"cli000002","containerName":"cli000003","remoteAccountName":"cli000006","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000008","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000008","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:31:11Z","processedCount":0,"totalCount":0,"mode":"Online","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' headers: cache-control: - no-store, no-cache content-length: - - '625' + - '614' content-type: - application/json date: - - Thu, 12 Oct 2023 13:25:49 GMT + - Tue, 20 Feb 2024 05:31:12 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9BF3515196B54C58B39470002D76B216 Ref B: MAA201060515033 Ref C: 2024-02-20T05:31:12Z' status: code: 200 message: Ok diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-copy-scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-copy-scenario.py index 99aa5d5644c..53ea8cfeebe 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-copy-scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-copy-scenario.py @@ -22,8 +22,9 @@ def test_cosmosdb_copy_nosql(self, resource_group): container_name = self.create_random_name(prefix='cli', length=15) container_name_copied = self.create_random_name(prefix='cli', length=15) job_name = self.create_random_name(prefix='cli', length=15) - remote_acc = self.create_random_name(prefix='cli', length=15) + remote_acc = self.create_random_name(prefix='cliremote', length=15) cross_account_job_name = self.create_random_name(prefix='cli', length=15) + online_job_name = self.create_random_name(prefix='cli', length=15) self.kwargs.update({ 'acc': self.create_random_name(prefix='cli', length=15), 'remote_acc': remote_acc, @@ -32,6 +33,7 @@ def test_cosmosdb_copy_nosql(self, resource_group): 'container_name_copied': container_name_copied, 'job_name': job_name, 'cross_account_job_name': cross_account_job_name, + 'online_job_name': online_job_name, 'loc': 'eastus' }) @@ -73,6 +75,12 @@ def test_cosmosdb_copy_nosql(self, resource_group): assert job['jobName'] == job_name assert job['status'] == "Cancelled" + self.cmd('az cosmosdb identity assign -n {acc} -g {rg}') + self.cmd('az cosmosdb update -n {acc} -g {rg} --default-identity="SystemAssignedIdentity"') + + self.cmd('az cosmosdb create -n {remote_acc} -g {rg} --locations regionName={loc}') + account = self.cmd('az cosmosdb show -n {remote_acc} -g {rg}').get_output_in_json() + # Cross Account Copy Job self.cmd('az cosmosdb copy create -g {rg} --job-name {cross_account_job_name} --src-account {remote_acc} --dest-account {acc} --src-nosql database={database_name} container={container_name} --dest-nosql database={database_name} container={container_name_copied}') @@ -87,6 +95,23 @@ def test_cosmosdb_copy_nosql(self, resource_group): assert job['destination']['databaseName'] == database_name assert job['destination']['containerName'] == container_name_copied + # Enable Full Fidelity Change Feed + self.cmd('az resource update --name {acc} --resource-group {rg} --set properties.enableFullFidelityChangeFeed=true --resource-type databaseAccounts --namespace Microsoft.DocumentDB') + + # Create online job + self.cmd('az cosmosdb copy create -g {rg} --mode online --job-name {online_job_name} --src-account {acc} --dest-account {acc} --src-nosql database={database_name} container={container_name} --dest-nosql database={database_name} container={container_name_copied}') + + # Show job + job = self.cmd('az cosmosdb copy show -g {rg} --account-name {acc} --job-name {online_job_name}').get_output_in_json() + assert job['jobName'] == online_job_name + assert job['mode'] == 'Online' + assert job['source']['component'] == 'CosmosDBSql' + assert job['source']['databaseName'] == database_name + assert job['source']['containerName'] == container_name + assert job['destination']['component'] == 'CosmosDBSql' + assert job['destination']['databaseName'] == database_name + assert job['destination']['containerName'] == container_name_copied + @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_copy_mongo', location='eastus') @AllowLargeResponse(size_kb=9999) From ca8f49607c86b513f3f192d89b8f0fdab7d72b76 Mon Sep 17 00:00:00 2001 From: Kushal Warke Date: Wed, 21 Feb 2024 22:52:12 +0530 Subject: [PATCH 09/37] history.rst changes --- src/cosmosdb-preview/HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/HISTORY.rst b/src/cosmosdb-preview/HISTORY.rst index 928b8e33fcb..7b6117b420e 100644 --- a/src/cosmosdb-preview/HISTORY.rst +++ b/src/cosmosdb-preview/HISTORY.rst @@ -3,7 +3,7 @@ Release History =============== 0.27.0 - +* Add support for Per-Region Per-Partition Autoscale. '--enable-per-region-per-partition-autoscale' parameter can be used during account create/update. ++++++ 0.26.0 * Add '--enable-priority-based-execution' and '--default-priority-level' parameter for create/update database account. From 32d29a6a855ee54ca1e9c3c21d0b4fc9ce3f4c2e Mon Sep 17 00:00:00 2001 From: Nitesh Vijay Date: Thu, 22 Feb 2024 00:18:35 +0530 Subject: [PATCH 10/37] Add history --- src/cosmosdb-preview/HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cosmosdb-preview/HISTORY.rst b/src/cosmosdb-preview/HISTORY.rst index 928b8e33fcb..bc80cf62e91 100644 --- a/src/cosmosdb-preview/HISTORY.rst +++ b/src/cosmosdb-preview/HISTORY.rst @@ -3,6 +3,7 @@ Release History =============== 0.27.0 +* Add online mode for container copy job. ++++++ 0.26.0 From df53a19b2c31bf5d03d2b1cb8254950ebef46c0e Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Wed, 14 Feb 2024 13:04:52 -0800 Subject: [PATCH 11/37] Introduce disable_ttl parameter --- .../azext_cosmosdb_preview/_params.py | 1 + .../azext_cosmosdb_preview/custom.py | 53 +++++++++++++++---- 2 files changed, 44 insertions(+), 10 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index b053ddf852e..9eb6ec9b984 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -357,6 +357,7 @@ def load_arguments(self, _): c.argument('default_identity', help="The primary identity to access key vault in CMK related features. e.g. 'FirstPartyIdentity', 'SystemAssignedIdentity' and more.") c.argument('enable_public_network', options_list=['--enable-public-network', '-e'], arg_type=get_three_state_flag(), help="Enable or disable public network access to server.", is_preview=True) c.argument('source_backup_location', help="This is the location of the source account where backups are located. Provide this value if the source and target are in different locations.", is_preview=True) + c.argument('disable_ttl', options_list=['--disable-ttl', '-t'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview=True) # Restorable Database Accounts with self.argument_context('cosmosdb restorable-database-account show') as c: diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 5dedb048392..43e7d050e9b 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -1017,7 +1017,8 @@ def cli_cosmosdb_restore(cmd, gremlin_databases_to_restore=None, tables_to_restore=None, enable_public_network=None, - source_backup_location=None): + source_backup_location=None, + disable_ttl=None): restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) @@ -1124,7 +1125,8 @@ def cli_cosmosdb_restore(cmd, tables_to_restore=tables_to_restore, arm_location=target_restorable_account.location, enable_public_network=enable_public_network, - source_backup_location=source_backup_location) + source_backup_location=source_backup_location, + disable_ttl=disable_ttl) # pylint: disable=too-many-statements @@ -1173,7 +1175,7 @@ def _create_database_account(client, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None): - + disable_ttl=None): consistency_policy = None if default_consistency_level is not None: consistency_policy = ConsistencyPolicy(default_consistency_level=default_consistency_level, @@ -1282,6 +1284,9 @@ def _create_database_account(client, if source_backup_location is not None: restore_parameters.source_backup_location = source_backup_location + if time_to_live_policy is not None: + restore_parameters.restore_with_ttl_disabled = disable_ttl + params = DatabaseAccountCreateUpdateParameters( location=arm_location, locations=locations, @@ -1799,7 +1804,8 @@ def cli_cosmosdb_sql_database_restore(cmd, resource_group_name, account_name, database_name, - restore_timestamp=None): + restore_timestamp=None, + disable_ttl=None): restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) @@ -1826,6 +1832,9 @@ def cli_cosmosdb_sql_database_restore(cmd, restore_timestamp_in_utc=restore_timestamp ) + if disable_ttl is not None: + restore_parameters.restore_with_ttl_disabled = disable_ttl + sql_database_resource = SqlDatabaseCreateUpdateParameters( resource=SqlDatabaseResource( id=database_name, @@ -1845,7 +1854,8 @@ def cli_cosmosdb_sql_container_restore(cmd, account_name, database_name, container_name, - restore_timestamp=None): + restore_timestamp=None, + disable_ttl=None): # """Restores the deleted Azure Cosmos DB SQL container """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() @@ -1873,6 +1883,9 @@ def cli_cosmosdb_sql_container_restore(cmd, restore_timestamp_in_utc=restore_timestamp ) + if disable_ttl is not None: + restore_parameters.restore_with_ttl_disabled = disable_ttl + sql_container_resource = SqlContainerResource( id=container_name, create_mode=create_mode, @@ -1894,7 +1907,8 @@ def cli_cosmosdb_mongodb_database_restore(cmd, resource_group_name, account_name, database_name, - restore_timestamp=None): + restore_timestamp=None, + disable_ttl=None): # """Restores the deleted Azure Cosmos DB MongoDB database""" restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() @@ -1922,6 +1936,9 @@ def cli_cosmosdb_mongodb_database_restore(cmd, restore_timestamp_in_utc=restore_timestamp ) + if disable_ttl is not None: + restore_parameters.restore_with_ttl_disabled = disable_ttl + mongodb_database_resource = MongoDBDatabaseCreateUpdateParameters( resource=MongoDBDatabaseResource(id=database_name, create_mode=create_mode, @@ -1940,7 +1957,8 @@ def cli_cosmosdb_mongodb_collection_restore(cmd, account_name, database_name, collection_name, - restore_timestamp=None): + restore_timestamp=None, + disable_ttl=None): # """Restores the Azure Cosmos DB MongoDB collection """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() @@ -1968,6 +1986,9 @@ def cli_cosmosdb_mongodb_collection_restore(cmd, restore_timestamp_in_utc=restore_timestamp ) + if disable_ttl is not None: + restore_parameters.restore_with_ttl_disabled = disable_ttl + mongodb_collection_resource = MongoDBCollectionResource(id=collection_name, create_mode=create_mode, restore_parameters=restore_parameters @@ -2161,7 +2182,8 @@ def cli_cosmosdb_gremlin_database_restore(cmd, resource_group_name, account_name, database_name, - restore_timestamp=None): + restore_timestamp=None, + disable_ttl=None): restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) @@ -2188,6 +2210,9 @@ def cli_cosmosdb_gremlin_database_restore(cmd, restore_timestamp_in_utc=restore_timestamp ) + if disable_ttl is not None: + restore_parameters.restore_with_ttl_disabled = disable_ttl + gremlin_database_resource = GremlinDatabaseCreateUpdateParameters( resource=SqlDatabaseResource( id=database_name, @@ -2207,7 +2232,8 @@ def cli_cosmosdb_gremlin_graph_restore(cmd, account_name, database_name, graph_name, - restore_timestamp=None): + restore_timestamp=None, + disable_ttl=None): # """Restores the deleted Azure Cosmos DB Gremlin graph """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() @@ -2235,6 +2261,9 @@ def cli_cosmosdb_gremlin_graph_restore(cmd, restore_timestamp_in_utc=restore_timestamp ) + if disable_ttl is not None: + restore_parameters.restore_with_ttl_disabled = disable_ttl + gremlin_graph_resource = GremlinGraphResource( id=graph_name, create_mode=create_mode, @@ -2256,7 +2285,8 @@ def cli_cosmosdb_table_restore(cmd, resource_group_name, account_name, table_name, - restore_timestamp=None): + restore_timestamp=None, + disable_ttl=None): # """Restores the deleted Azure Cosmos DB Table""" restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() @@ -2284,6 +2314,9 @@ def cli_cosmosdb_table_restore(cmd, restore_timestamp_in_utc=restore_timestamp ) + if disable_ttl is not None: + restore_parameters.restore_with_ttl_disabled = disable_ttl + table_resource = TableCreateUpdateParameters( resource=TableResource(id=table_name, create_mode=create_mode, From 931fdf7010de757552357974a833aec04c32ad81 Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Thu, 15 Feb 2024 19:42:54 -0800 Subject: [PATCH 12/37] Syntax error fixes --- src/cosmosdb-preview/azext_cosmosdb_preview/_params.py | 2 +- src/cosmosdb-preview/azext_cosmosdb_preview/custom.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 9eb6ec9b984..deb593116ad 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -357,7 +357,7 @@ def load_arguments(self, _): c.argument('default_identity', help="The primary identity to access key vault in CMK related features. e.g. 'FirstPartyIdentity', 'SystemAssignedIdentity' and more.") c.argument('enable_public_network', options_list=['--enable-public-network', '-e'], arg_type=get_three_state_flag(), help="Enable or disable public network access to server.", is_preview=True) c.argument('source_backup_location', help="This is the location of the source account where backups are located. Provide this value if the source and target are in different locations.", is_preview=True) - c.argument('disable_ttl', options_list=['--disable-ttl', '-t'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview=True) + c.argument('disable_ttl', options_list=['--disable-ttl', '-dt'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview=True) # Restorable Database Accounts with self.argument_context('cosmosdb restorable-database-account show') as c: diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 43e7d050e9b..a29c306eb91 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -1284,7 +1284,7 @@ def _create_database_account(client, if source_backup_location is not None: restore_parameters.source_backup_location = source_backup_location - if time_to_live_policy is not None: + if disable_ttl is not None: restore_parameters.restore_with_ttl_disabled = disable_ttl params = DatabaseAccountCreateUpdateParameters( From 31820445af26a9c7c0cfbe6ea45035b40b2220a9 Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Thu, 15 Feb 2024 19:44:06 -0800 Subject: [PATCH 13/37] Update tests --- .../tests/latest/test_cosmosdb-InAccountRestore_scenario.py | 5 +++-- .../tests/latest/test_cosmosdb-pitr_scenario.py | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py index a561edd3567..0f725d3dccd 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py @@ -109,7 +109,8 @@ def test_cosmosdb_sql_normal_database_restore(self, resource_group): restore_ts_string = datetime.datetime.utcnow().isoformat() self.kwargs.update({ - 'rts': restore_ts_string + 'rts': restore_ts_string, + 'dt': True }) assert self.cmd('az cosmosdb sql database exists -g {rg} -a {acc} -n {db_name}').get_output_in_json() @@ -118,7 +119,7 @@ def test_cosmosdb_sql_normal_database_restore(self, resource_group): database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() assert len(database_list) == 0 - self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name} --restore-timestamp {rts}') + self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name} --restore-timestamp {rts} --disable-ttl {dt}') database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() assert database_restore["name"] == db_name diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-pitr_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-pitr_scenario.py index 8159bd999fb..d9886f5d8b7 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-pitr_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-pitr_scenario.py @@ -216,10 +216,11 @@ def test_cosmosdb_table_account_restore_command(self, resource_group): time.sleep(240) restore_ts_string = restore_ts.isoformat() self.kwargs.update({ - 'rts': restore_ts_string + 'rts': restore_ts_string, + 'dt': True }) - self.cmd('az cosmosdb restore -n {restored_acc} -g {rg} -a {acc} --restore-timestamp {rts} --location {loc}') + self.cmd('az cosmosdb restore -n {restored_acc} -g {rg} -a {acc} --restore-timestamp {rts} --location {loc} --disable-ttl {dt}') restored_account = self.cmd('az cosmosdb show -n {restored_acc} -g {rg}', checks=[ self.check('restoreParameters.restoreMode', 'PointInTime') ]).get_output_in_json() From c4761fe65f4296e064ff10c53e0566327b12339f Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Wed, 21 Feb 2024 16:21:16 -0800 Subject: [PATCH 14/37] Fix syntax error --- src/cosmosdb-preview/azext_cosmosdb_preview/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index a29c306eb91..7576bd3c3e7 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -1174,7 +1174,7 @@ def _create_database_account(client, source_backup_location=None, enable_priority_based_execution=None, default_priority_level=None, - enable_per_region_per_partition_autoscale=None): + enable_per_region_per_partition_autoscale=None, disable_ttl=None): consistency_policy = None if default_consistency_level is not None: From 7fe0549521274c6ea25d8e36afed59bc3658d995 Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Fri, 23 Feb 2024 12:15:39 -0800 Subject: [PATCH 15/37] Change test location to WestCentralUS where 0201 batch1 is completed, add remaining asserts, rerecordings --- ..._cosmosdb_sql_shared_database_restore.yaml | 5074 ++++++++--------- ...osmosdb_table_account_restore_command.yaml | 3012 ++++------ ...test_cosmosdb-InAccountRestore_scenario.py | 22 +- .../latest/test_cosmosdb-pitr_scenario.py | 5 +- 4 files changed, 3616 insertions(+), 4497 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml index cda7ec4b26e..fe193f6df7c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml @@ -13,40 +13,42 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_shared_database_restore000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001","name":"cli_test_cosmosdb_sql_shared_database_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_shared_database_restore","date":"2023-10-12T11:25:12Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001","name":"cli_test_cosmosdb_sql_shared_database_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_shared_database_restore","date":"2024-02-23T19:45:12Z","module":"azure-cli-extensions-restorewithttldisabled"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '459' + - '493' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Oct 2023 11:25:14 GMT + - Fri, 23 Feb 2024 19:45:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5242285B80D2444A9943A118726B9ACA Ref B: MNZ221060608031 Ref C: 2024-02-23T19:45:15Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' + body: '{"location": "westcentralus", "kind": "GlobalDocumentDB", "properties": + {"locations": [{"locationName": "WestCentralUS", "failoverPriority": 0, "isZoneRedundant": + false}], "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": + "Default", "backupPolicy": {"type": "Continuous", "continuousModeProperties": + {"tier": "Continuous30Days"}}}}' headers: Accept: - application/json @@ -57,52 +59,50 @@ interactions: Connection: - keep-alive Content-Length: - - '342' + - '356' Content-Type: - application/json ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:25:20.4998227Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6ac2cf13-1498-45ed-a0f4-845be538fff7","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:25:20.4998227Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:25:20.4998227Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:20.4998227Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:20.4998227Z"}}},"identity":{"type":"None"}}' + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T19:45:17.856814Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f7671baf-25aa-4e90-98fc-b912944c7c15","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T19:45:17.856814Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T19:45:17.856814Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:45:17.856814Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:45:17.856814Z"}}},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abb0beb9-4eaa-4e0e-8a57-9bf83a005f5f?api-version=2023-09-15-preview&t=638327067222848892&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pw11JQvZhk3IgEyLOmIxPjxypItubTgzh7wcsCU90XUAX80MdZAEOtirMeejBYkGeaXhj0rXVwmVlz8NMAUXZsWRmndifWCLbq-CaUvKDH6cLdEHdj19x9fCLt--9K_4UjhpC6NEtiU4w1fGAHcfp8VQGL2KrwFKkZ0iO1A3oTp43rTWFIOLfiQmcrE4BlMjVRWhfak7zchMjuVhP2bcwP9WiRJe_Du1nr4R6A-eGBqx9dBc4a8-i63a1anneNGkWTCKTjOkGgCDGR6LlY1H944IvXEAcKGLIrBEtKEGTozXH0tz3YgKFbRVhOE2tx-erPeFZ8kkD4MJWw5iEWQGkQ&h=u8rxaM09jNAO4gRpKwfj6ZHkwFL3jxsWm7orDogjn64 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 cache-control: - no-store, no-cache content-length: - - '2438' + - '2743' content-type: - application/json date: - - Thu, 12 Oct 2023 11:25:21 GMT + - Fri, 23 Feb 2024 19:45:18 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/abb0beb9-4eaa-4e0e-8a57-9bf83a005f5f?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AKR-3-Up2kaKSAvO6Y_72tC7c-UUFxKm31ZldhKk6i0zgK4ZlrAlPrYXej_g4KPDwfhsmyiYBYwnFaUQpOSOrOyIViRW1nrfAZkxJEJLvn1MQXtFXECvZAo24AWX7u0OOP2Rs1m7HHZPMMriiB6cAHn8fHajCkxIlxDNR1ZvPYQVuedAOzDFabXqxjeYB70OrLMXaKM8anMFjAyLw_8kVIV0FxpXomWbU0L2vDl0rTgJrpkqwgRJNT9FrcQ9d7tC54Kmh6-7mfeYAWzGXdDhuAHIjaG_XKQKiyIYiSjJqU9VA59hdEvdx8CgkJJx0fPUtch8HTvUbH9O16r-PJo6zQ&h=wWT6BmcH6bATkw96al6OsLBT_-4y4KZTKn_n1MXNYqY pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 4EF4A22E77BA43BD998F11D6647AAB36 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:45:15Z' status: code: 200 message: Ok @@ -120,9 +120,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abb0beb9-4eaa-4e0e-8a57-9bf83a005f5f?api-version=2023-09-15-preview&t=638327067222848892&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pw11JQvZhk3IgEyLOmIxPjxypItubTgzh7wcsCU90XUAX80MdZAEOtirMeejBYkGeaXhj0rXVwmVlz8NMAUXZsWRmndifWCLbq-CaUvKDH6cLdEHdj19x9fCLt--9K_4UjhpC6NEtiU4w1fGAHcfp8VQGL2KrwFKkZ0iO1A3oTp43rTWFIOLfiQmcrE4BlMjVRWhfak7zchMjuVhP2bcwP9WiRJe_Du1nr4R6A-eGBqx9dBc4a8-i63a1anneNGkWTCKTjOkGgCDGR6LlY1H944IvXEAcKGLIrBEtKEGTozXH0tz3YgKFbRVhOE2tx-erPeFZ8kkD4MJWw5iEWQGkQ&h=u8rxaM09jNAO4gRpKwfj6ZHkwFL3jxsWm7orDogjn64 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 response: body: string: '{"status":"Enqueued"}' @@ -134,21 +134,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:25:21 GMT + - Fri, 23 Feb 2024 19:45:18 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9BDA4ADA0A3D479EB1D3206E951E62C8 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:45:19Z' status: code: 200 message: Ok @@ -166,9 +164,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abb0beb9-4eaa-4e0e-8a57-9bf83a005f5f?api-version=2023-09-15-preview&t=638327067222848892&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pw11JQvZhk3IgEyLOmIxPjxypItubTgzh7wcsCU90XUAX80MdZAEOtirMeejBYkGeaXhj0rXVwmVlz8NMAUXZsWRmndifWCLbq-CaUvKDH6cLdEHdj19x9fCLt--9K_4UjhpC6NEtiU4w1fGAHcfp8VQGL2KrwFKkZ0iO1A3oTp43rTWFIOLfiQmcrE4BlMjVRWhfak7zchMjuVhP2bcwP9WiRJe_Du1nr4R6A-eGBqx9dBc4a8-i63a1anneNGkWTCKTjOkGgCDGR6LlY1H944IvXEAcKGLIrBEtKEGTozXH0tz3YgKFbRVhOE2tx-erPeFZ8kkD4MJWw5iEWQGkQ&h=u8rxaM09jNAO4gRpKwfj6ZHkwFL3jxsWm7orDogjn64 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 response: body: string: '{"status":"Dequeued"}' @@ -180,21 +178,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:25:52 GMT + - Fri, 23 Feb 2024 19:45:48 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 62213D39D95B4E7DA0E5A09A9F249E89 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:45:49Z' status: code: 200 message: Ok @@ -212,9 +208,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abb0beb9-4eaa-4e0e-8a57-9bf83a005f5f?api-version=2023-09-15-preview&t=638327067222848892&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pw11JQvZhk3IgEyLOmIxPjxypItubTgzh7wcsCU90XUAX80MdZAEOtirMeejBYkGeaXhj0rXVwmVlz8NMAUXZsWRmndifWCLbq-CaUvKDH6cLdEHdj19x9fCLt--9K_4UjhpC6NEtiU4w1fGAHcfp8VQGL2KrwFKkZ0iO1A3oTp43rTWFIOLfiQmcrE4BlMjVRWhfak7zchMjuVhP2bcwP9WiRJe_Du1nr4R6A-eGBqx9dBc4a8-i63a1anneNGkWTCKTjOkGgCDGR6LlY1H944IvXEAcKGLIrBEtKEGTozXH0tz3YgKFbRVhOE2tx-erPeFZ8kkD4MJWw5iEWQGkQ&h=u8rxaM09jNAO4gRpKwfj6ZHkwFL3jxsWm7orDogjn64 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 response: body: string: '{"status":"Dequeued"}' @@ -226,21 +222,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:26:23 GMT + - Fri, 23 Feb 2024 19:46:19 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 00B7684E6BD543AF8CB8628C1CCAC849 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:46:19Z' status: code: 200 message: Ok @@ -258,9 +252,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abb0beb9-4eaa-4e0e-8a57-9bf83a005f5f?api-version=2023-09-15-preview&t=638327067222848892&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pw11JQvZhk3IgEyLOmIxPjxypItubTgzh7wcsCU90XUAX80MdZAEOtirMeejBYkGeaXhj0rXVwmVlz8NMAUXZsWRmndifWCLbq-CaUvKDH6cLdEHdj19x9fCLt--9K_4UjhpC6NEtiU4w1fGAHcfp8VQGL2KrwFKkZ0iO1A3oTp43rTWFIOLfiQmcrE4BlMjVRWhfak7zchMjuVhP2bcwP9WiRJe_Du1nr4R6A-eGBqx9dBc4a8-i63a1anneNGkWTCKTjOkGgCDGR6LlY1H944IvXEAcKGLIrBEtKEGTozXH0tz3YgKFbRVhOE2tx-erPeFZ8kkD4MJWw5iEWQGkQ&h=u8rxaM09jNAO4gRpKwfj6ZHkwFL3jxsWm7orDogjn64 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 response: body: string: '{"status":"Dequeued"}' @@ -272,21 +266,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:26:53 GMT + - Fri, 23 Feb 2024 19:46:49 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 22EAC1BF036441299264B03ED6EFEB2B Ref B: MNZ221060608031 Ref C: 2024-02-23T19:46:50Z' status: code: 200 message: Ok @@ -304,9 +296,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abb0beb9-4eaa-4e0e-8a57-9bf83a005f5f?api-version=2023-09-15-preview&t=638327067222848892&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pw11JQvZhk3IgEyLOmIxPjxypItubTgzh7wcsCU90XUAX80MdZAEOtirMeejBYkGeaXhj0rXVwmVlz8NMAUXZsWRmndifWCLbq-CaUvKDH6cLdEHdj19x9fCLt--9K_4UjhpC6NEtiU4w1fGAHcfp8VQGL2KrwFKkZ0iO1A3oTp43rTWFIOLfiQmcrE4BlMjVRWhfak7zchMjuVhP2bcwP9WiRJe_Du1nr4R6A-eGBqx9dBc4a8-i63a1anneNGkWTCKTjOkGgCDGR6LlY1H944IvXEAcKGLIrBEtKEGTozXH0tz3YgKFbRVhOE2tx-erPeFZ8kkD4MJWw5iEWQGkQ&h=u8rxaM09jNAO4gRpKwfj6ZHkwFL3jxsWm7orDogjn64 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 response: body: string: '{"status":"Dequeued"}' @@ -318,21 +310,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:27:23 GMT + - Fri, 23 Feb 2024 19:47:19 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 695FF1C6D39740DC8C6FDB91E32FD4C3 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:47:20Z' status: code: 200 message: Ok @@ -350,9 +340,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abb0beb9-4eaa-4e0e-8a57-9bf83a005f5f?api-version=2023-09-15-preview&t=638327067222848892&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pw11JQvZhk3IgEyLOmIxPjxypItubTgzh7wcsCU90XUAX80MdZAEOtirMeejBYkGeaXhj0rXVwmVlz8NMAUXZsWRmndifWCLbq-CaUvKDH6cLdEHdj19x9fCLt--9K_4UjhpC6NEtiU4w1fGAHcfp8VQGL2KrwFKkZ0iO1A3oTp43rTWFIOLfiQmcrE4BlMjVRWhfak7zchMjuVhP2bcwP9WiRJe_Du1nr4R6A-eGBqx9dBc4a8-i63a1anneNGkWTCKTjOkGgCDGR6LlY1H944IvXEAcKGLIrBEtKEGTozXH0tz3YgKFbRVhOE2tx-erPeFZ8kkD4MJWw5iEWQGkQ&h=u8rxaM09jNAO4gRpKwfj6ZHkwFL3jxsWm7orDogjn64 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 response: body: string: '{"status":"Succeeded"}' @@ -364,21 +354,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:27:54 GMT + - Fri, 23 Feb 2024 19:47:49 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9BAC1CD6E1E04CFCB135BD3342901DD0 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:47:50Z' status: code: 200 message: Ok @@ -396,40 +384,38 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:27:14.5794245Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6ac2cf13-1498-45ed-a0f4-845be538fff7","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:27:14.5794245Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:27:14.5794245Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:27:14.5794245Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:27:14.5794245Z"}}},"identity":{"type":"None"}}' + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T19:47:09.6081386Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f7671baf-25aa-4e90-98fc-b912944c7c15","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2796' + - '3127' content-type: - application/json date: - - Thu, 12 Oct 2023 11:27:55 GMT + - Fri, 23 Feb 2024 19:47:50 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: BC73DD7A3B60445CBB83386BB70B3318 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:47:50Z' status: code: 200 message: Ok @@ -447,40 +433,38 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:27:14.5794245Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6ac2cf13-1498-45ed-a0f4-845be538fff7","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:27:14.5794245Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:27:14.5794245Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:27:14.5794245Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:27:14.5794245Z"}}},"identity":{"type":"None"}}' + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T19:47:09.6081386Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f7671baf-25aa-4e90-98fc-b912944c7c15","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2796' + - '3127' content-type: - application/json date: - - Thu, 12 Oct 2023 11:27:55 GMT + - Fri, 23 Feb 2024 19:47:50 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9B49746AF20E44529AEA05FE47BE1766 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:47:51Z' status: code: 200 message: Ok @@ -503,15 +487,15 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a34fefa8-ee9a-4112-abb9-4303d7a54772?api-version=2023-09-15&t=638327068790021323&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=owgstN2qoDSvz2XqA-0eQ7mDd9PQiOlLsS3uDpGoQyjCttMZn2ZyJGGjXg1Op4OJRUhgQGrbayCCBNyrhhEgXBnPdLIBOY5xLOCA_fMPyjs6Gt0de67TBsxdRtrUCukaULL9J8dnlhkTYuwrttoew0MvfxpqQn7jbTpwQE-xSVIo2Dbwb-yOtWFyNqY44CEHDNHSDsGKXT9PbydybZbXTXPBPABORFbTy4iaShI_CiTLqYxTBkRKW18G83014R52scR0dRTUEQM-lR6r1pQZUojgeolrmeBEIs5gO-_fH60m8ZVOAGYqgEHKbCemUDFBERoHw3vI9BK3UOPFK8Hsyw&h=e0p3sl5eu1Ivo2rnm4Jw0KRSFnGUoj7aCdEK3bTLkaI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/290640a5-7c69-44f9-b26c-23c6dba34191?api-version=2023-04-15&t=638443144722330015&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gCyRoYtmcwFAetn62EkvmRtArvTzth0mh5EtcBuCZilAx9CJv6JHTsZs3PKRmFBLQhOmVciyPyw6UFj_ggKEsqN5uh9YMILGS7jHxkCK-4cTASl0PZ2AH__292t73BajqYgC7R4lRg71jsA-2TgCcCswL57cJR6UqbzrX62TZMkUSbRkg3J3Nb3sToelBp_XAzEwJs6I-9lbiqnlcBiVU5uRg5UphlLQprAQoaE9uuJa5G_pDUaMFmnUTsjFmtaHtJJmJeRUYNMLMQBKMktfPamk94hUs_r_EhCQ21vKB_h8Yfc7EoZSfOz5QsNqNRl8iPw3Y45AsFh7cs7MXGANtg&h=QH9Zla6sFMY3YTjrowO1FBT6iCR5iKHwd5QA7IHU1fs cache-control: - no-store, no-cache content-length: @@ -519,21 +503,23 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:27:58 GMT + - Fri, 23 Feb 2024 19:47:51 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/a34fefa8-ee9a-4112-abb9-4303d7a54772?api-version=2023-09-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/290640a5-7c69-44f9-b26c-23c6dba34191?api-version=2023-04-15&t=638443144722485372&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FwFk3p5J0yRpW2Ko99dlZTxKmI1sntHjhEcDY9ulu20QHwqBuApNFAxA1m-KoA3BTpZnJbZ4xdcMnv7D6e3KLXV64ep8bkNdhONbWJOMrBujKnRKenRU_7IBxPMWGhV63X4eAWaPFv3ebjijwpUOXaSu_nRnGFvV7BcqSp-bEytugrMeAwIxdvz64n_GBxww3_6EF9R6IGAV2MBKUbVuHq-YBqxI0i8_1y_jU9jnOG4pf7rCCaJsLrwloHLyP6vQlxapKK9qh3abIVZHe1EucgHoJT8O9gFQDn9oBG-88xe82yDQtD0HTcyEFxcauQdczp2Aoe7rV_ft99p53OkwUA&h=_jG_s9llhpQIO_JfbnIPo0PmeI15SIroiF0TNSjwVSY pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: F2F3947C19ED4AD39A70E57DF93C24EF Ref B: MNZ221060610009 Ref C: 2024-02-23T19:47:51Z' status: code: 202 message: Accepted @@ -551,9 +537,9 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a34fefa8-ee9a-4112-abb9-4303d7a54772?api-version=2023-09-15&t=638327068790021323&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=owgstN2qoDSvz2XqA-0eQ7mDd9PQiOlLsS3uDpGoQyjCttMZn2ZyJGGjXg1Op4OJRUhgQGrbayCCBNyrhhEgXBnPdLIBOY5xLOCA_fMPyjs6Gt0de67TBsxdRtrUCukaULL9J8dnlhkTYuwrttoew0MvfxpqQn7jbTpwQE-xSVIo2Dbwb-yOtWFyNqY44CEHDNHSDsGKXT9PbydybZbXTXPBPABORFbTy4iaShI_CiTLqYxTBkRKW18G83014R52scR0dRTUEQM-lR6r1pQZUojgeolrmeBEIs5gO-_fH60m8ZVOAGYqgEHKbCemUDFBERoHw3vI9BK3UOPFK8Hsyw&h=e0p3sl5eu1Ivo2rnm4Jw0KRSFnGUoj7aCdEK3bTLkaI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/290640a5-7c69-44f9-b26c-23c6dba34191?api-version=2023-04-15&t=638443144722330015&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gCyRoYtmcwFAetn62EkvmRtArvTzth0mh5EtcBuCZilAx9CJv6JHTsZs3PKRmFBLQhOmVciyPyw6UFj_ggKEsqN5uh9YMILGS7jHxkCK-4cTASl0PZ2AH__292t73BajqYgC7R4lRg71jsA-2TgCcCswL57cJR6UqbzrX62TZMkUSbRkg3J3Nb3sToelBp_XAzEwJs6I-9lbiqnlcBiVU5uRg5UphlLQprAQoaE9uuJa5G_pDUaMFmnUTsjFmtaHtJJmJeRUYNMLMQBKMktfPamk94hUs_r_EhCQ21vKB_h8Yfc7EoZSfOz5QsNqNRl8iPw3Y45AsFh7cs7MXGANtg&h=QH9Zla6sFMY3YTjrowO1FBT6iCR5iKHwd5QA7IHU1fs response: body: string: '{"status":"Enqueued"}' @@ -565,21 +551,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:27:59 GMT + - Fri, 23 Feb 2024 19:47:51 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6E65786489D541E980E2593C76039B15 Ref B: MNZ221060610009 Ref C: 2024-02-23T19:47:52Z' status: code: 200 message: Ok @@ -597,9 +581,9 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a34fefa8-ee9a-4112-abb9-4303d7a54772?api-version=2023-09-15&t=638327068790021323&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=owgstN2qoDSvz2XqA-0eQ7mDd9PQiOlLsS3uDpGoQyjCttMZn2ZyJGGjXg1Op4OJRUhgQGrbayCCBNyrhhEgXBnPdLIBOY5xLOCA_fMPyjs6Gt0de67TBsxdRtrUCukaULL9J8dnlhkTYuwrttoew0MvfxpqQn7jbTpwQE-xSVIo2Dbwb-yOtWFyNqY44CEHDNHSDsGKXT9PbydybZbXTXPBPABORFbTy4iaShI_CiTLqYxTBkRKW18G83014R52scR0dRTUEQM-lR6r1pQZUojgeolrmeBEIs5gO-_fH60m8ZVOAGYqgEHKbCemUDFBERoHw3vI9BK3UOPFK8Hsyw&h=e0p3sl5eu1Ivo2rnm4Jw0KRSFnGUoj7aCdEK3bTLkaI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/290640a5-7c69-44f9-b26c-23c6dba34191?api-version=2023-04-15&t=638443144722330015&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gCyRoYtmcwFAetn62EkvmRtArvTzth0mh5EtcBuCZilAx9CJv6JHTsZs3PKRmFBLQhOmVciyPyw6UFj_ggKEsqN5uh9YMILGS7jHxkCK-4cTASl0PZ2AH__292t73BajqYgC7R4lRg71jsA-2TgCcCswL57cJR6UqbzrX62TZMkUSbRkg3J3Nb3sToelBp_XAzEwJs6I-9lbiqnlcBiVU5uRg5UphlLQprAQoaE9uuJa5G_pDUaMFmnUTsjFmtaHtJJmJeRUYNMLMQBKMktfPamk94hUs_r_EhCQ21vKB_h8Yfc7EoZSfOz5QsNqNRl8iPw3Y45AsFh7cs7MXGANtg&h=QH9Zla6sFMY3YTjrowO1FBT6iCR5iKHwd5QA7IHU1fs response: body: string: '{"status":"Succeeded"}' @@ -611,21 +595,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:28:29 GMT + - Fri, 23 Feb 2024 19:48:22 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: F281E57D47DC42519ED86296AC68EC77 Ref B: MNZ221060610009 Ref C: 2024-02-23T19:48:22Z' status: code: 200 message: Ok @@ -643,12 +625,12 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ExMGAA==","_self":"dbs/ExMGAA==/","_etag":"\"00004039-0000-0700-0000-6527d8470000\"","_colls":"colls/","_users":"users/","_ts":1697110087}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ZlVbAA==","_self":"dbs/ZlVbAA==/","_etag":"\"0000c306-0000-0600-0000-65d8f6730000\"","_colls":"colls/","_users":"users/","_ts":1708717683}}}' headers: cache-control: - no-store, no-cache @@ -657,21 +639,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:28:30 GMT + - Fri, 23 Feb 2024 19:48:22 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: D9C854C270FD4DB7BC0521E0D0C8147A Ref B: MNZ221060610009 Ref C: 2024-02-23T19:48:22Z' status: code: 200 message: Ok @@ -689,76 +669,78 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - 78a49685-68f2-11ee-a115-9c7bef43f49d, Request URI: /apps/890aa736-d121-44f3-9193-5f2eaaee68bc/services/cd76417c-d24b-4299-a3eb-cbf750360188/partitions/856485f8-2fff-44d1-bc61-e9d108698a8e/replicas/133413513144213322s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T11:28:32.8945733Z, RequestEndTime: - 2023-10-12T11:28:32.8972805Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T11:27:33.5403476Z\\\",\\\"cpu\\\":0.366,\\\"memory\\\":479353300.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1625,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":512},{\\\"dateUtc\\\":\\\"2023-10-12T11:27:43.5504599Z\\\",\\\"cpu\\\":0.265,\\\"memory\\\":479351684.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0469,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":529},{\\\"dateUtc\\\":\\\"2023-10-12T11:27:53.5606037Z\\\",\\\"cpu\\\":0.288,\\\"memory\\\":479347568.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0406,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":545},{\\\"dateUtc\\\":\\\"2023-10-12T11:28:03.5706705Z\\\",\\\"cpu\\\":0.315,\\\"memory\\\":479323888.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1038,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":559},{\\\"dateUtc\\\":\\\"2023-10-12T11:28:13.5806285Z\\\",\\\"cpu\\\":0.879,\\\"memory\\\":479335968.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0528,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":578},{\\\"dateUtc\\\":\\\"2023-10-12T11:28:23.5907685Z\\\",\\\"cpu\\\":0.252,\\\"memory\\\":479342948.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0374,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":595}]}\\r\\nRequestStart: - 2023-10-12T11:28:32.8948697Z; ResponseTime: 2023-10-12T11:28:32.8972728Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11000/apps/890aa736-d121-44f3-9193-5f2eaaee68bc/services/cd76417c-d24b-4299-a3eb-cbf750360188/partitions/856485f8-2fff-44d1-bc61-e9d108698a8e/replicas/133413513144213322s, + 80c7acf3-d284-11ee-9111-6045bdd9660e, Request URI: /apps/a620de26-8c06-41bb-a0d6-8f63dd8f7a6f/services/8f0bad88-abe8-4c2d-89e1-ec2367a05804/partitions/0f971aa2-f01b-4b47-9a6a-6bc25c3826b1/replicas/133531869101690309s, + RequestStats: \\r\\nRequestStartTime: 2024-02-23T19:48:23.9547994Z, RequestEndTime: + 2024-02-23T19:48:23.9561859Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-02-23T19:47:31.5732362Z\\\",\\\"cpu\\\":0.049,\\\"memory\\\":423722728.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0726,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":324},{\\\"dateUtc\\\":\\\"2024-02-23T19:47:41.5829730Z\\\",\\\"cpu\\\":0.110,\\\"memory\\\":423744784.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0588,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":324},{\\\"dateUtc\\\":\\\"2024-02-23T19:47:51.5930803Z\\\",\\\"cpu\\\":0.124,\\\"memory\\\":423730756.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0533,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":323},{\\\"dateUtc\\\":\\\"2024-02-23T19:48:01.6030212Z\\\",\\\"cpu\\\":0.063,\\\"memory\\\":423740868.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0365,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":323},{\\\"dateUtc\\\":\\\"2024-02-23T19:48:11.6127523Z\\\",\\\"cpu\\\":0.098,\\\"memory\\\":423740816.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0598,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":323},{\\\"dateUtc\\\":\\\"2024-02-23T19:48:21.6228498Z\\\",\\\"cpu\\\":0.100,\\\"memory\\\":423668276.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0391,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":323}]}\\r\\nRequestStart: + 2024-02-23T19:48:23.9549892Z; ResponseTime: 2024-02-23T19:48:23.9561810Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/a620de26-8c06-41bb-a0d6-8f63dd8f7a6f/services/8f0bad88-abe8-4c2d-89e1-ec2367a05804/partitions/0f971aa2-f01b-4b47-9a6a-6bc25c3826b1/replicas/133531869101690309s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.478, ActivityId: - 78a49685-68f2-11ee-a115-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:28:32 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 11:28:32 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:28:32 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 11:28:32 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:28:32.8947703Z\\\", - \\\"durationInMs\\\": 0.0181},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:28:32.8947884Z\\\", \\\"durationInMs\\\": - 0.0016},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:28:32.8947900Z\\\", - \\\"durationInMs\\\": 0.07},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:28:32.8948600Z\\\", \\\"durationInMs\\\": 1.7743},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:28:32.8966343Z\\\", - \\\"durationInMs\\\": 0.0998},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:28:32.8967341Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:28:32.7988410Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:28:32.7988674Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:28:32.8409251Z\\\"},\\\"requestSizeInBytes\\\":496,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T11:28:32.8949463Z; - ResponseTime: 2023-10-12T11:28:32.8972805Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.12:11300/apps/890aa736-d121-44f3-9193-5f2eaaee68bc/services/cd76417c-d24b-4299-a3eb-cbf750360188/partitions/856485f8-2fff-44d1-bc61-e9d108698a8e/replicas/133413513144213321s, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.712, ActivityId: + 80c7acf3-d284-11ee-9111-6045bdd9660e, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 2/23/2024 7:48:23 PM),(port: 11300 + | status: Unknown | lkt: 2/23/2024 7:48:23 PM),(port: 11300 | status: Unknown + | lkt: 2/23/2024 7:48:23 PM),(port: 11000 | status: Unknown | lkt: 2/23/2024 + 7:48:23 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549150Z\\\", + \\\"durationInMs\\\": 0.0075},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549225Z\\\", \\\"durationInMs\\\": + 0.0012},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549237Z\\\", + \\\"durationInMs\\\": 0.057},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-02-23T19:48:23.9549807Z\\\", \\\"durationInMs\\\": 0.8815},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9558622Z\\\", + \\\"durationInMs\\\": 0.0691},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-02-23T19:48:23.9559313Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-02-23T19:48:23.9217924Z\\\",\\\"lastSend\\\":\\\"2024-02-23T19:48:23.9218439Z\\\",\\\"lastReceive\\\":\\\"2024-02-23T19:48:23.9510447Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-02-23T19:48:23.9550293Z; + ResponseTime: 2024-02-23T19:48:23.9561859Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.9:11000/apps/a620de26-8c06-41bb-a0d6-8f63dd8f7a6f/services/8f0bad88-abe8-4c2d-89e1-ec2367a05804/partitions/0f971aa2-f01b-4b47-9a6a-6bc25c3826b1/replicas/133531869101690307s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.332, ActivityId: - 78a49685-68f2-11ee-a115-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:28:32 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 11:28:32 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:28:32 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 11:28:32 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:28:32.8948717Z\\\", - \\\"durationInMs\\\": 0.005},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:28:32.8948767Z\\\", \\\"durationInMs\\\": - 0.0011},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:28:32.8948778Z\\\", - \\\"durationInMs\\\": 0.0619},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:28:32.8949397Z\\\", \\\"durationInMs\\\": 1.6315},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:28:32.8965712Z\\\", - \\\"durationInMs\\\": 0.1473},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:28:32.8967185Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:28:32.7988974Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:28:32.7989291Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:28:32.8393168Z\\\"},\\\"requestSizeInBytes\\\":496,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.732, ActivityId: + 80c7acf3-d284-11ee-9111-6045bdd9660e, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 2/23/2024 7:48:23 PM),(port: 11300 + | status: Unknown | lkt: 2/23/2024 7:48:23 PM),(port: 11300 | status: Unknown + | lkt: 2/23/2024 7:48:23 PM),(port: 11000 | status: Unknown | lkt: 2/23/2024 + 7:48:23 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549909Z\\\", + \\\"durationInMs\\\": 0.0029},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549938Z\\\", \\\"durationInMs\\\": + 0.0008},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549946Z\\\", + \\\"durationInMs\\\": 0.0303},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-02-23T19:48:23.9550249Z\\\", \\\"durationInMs\\\": 1.011},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9560359Z\\\", + \\\"durationInMs\\\": 0.0352},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-02-23T19:48:23.9560711Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-02-23T19:48:23.9218968Z\\\",\\\"lastSend\\\":\\\"2024-02-23T19:48:23.9219149Z\\\",\\\"lastReceive\\\":\\\"2024-02-23T19:48:23.9535678Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' headers: cache-control: - no-store, no-cache content-length: - - '7093' + - '7077' content-type: - application/json date: - - Thu, 12 Oct 2023 11:28:32 GMT + - Fri, 23 Feb 2024 19:48:23 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3A9AF4BEDE0F4CB489652BE608A54C41 Ref B: BL2AA2010201021 Ref C: 2024-02-23T19:48:23Z' status: code: 404 message: NotFound @@ -766,9 +748,9 @@ interactions: body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], - "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": ["/path/to/key1"]}, - {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": {"mode": "lastWriterWins", - "conflictResolutionPath": "/path"}}, "options": {}}}' + "kind": "Hash"}, "defaultTtl": 1800, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": + ["/path/to/key1"]}, {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": + {"mode": "lastWriterWins", "conflictResolutionPath": "/path"}}, "options": {}}}' headers: Accept: - application/json @@ -779,21 +761,21 @@ interactions: Connection: - keep-alive Content-Length: - - '479' + - '499' Content-Type: - application/json ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5f1cf065-e29d-481a-931e-617c5b756ec3?api-version=2023-09-15-preview&t=638327069148379796&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AHDe3Iy-mmVa2YDesaFLOSxWs-TtJ72f5-qCkBXpg4bhjFO5eUmAh4e6or-gW5tclop-YYD3JM70vsmtgxEnb1SlBgbYWcNuMeoYsG5BPoj9GnUx7n_ikJ_Da7bhLJt3ksgJhYjbPQWRkyGPf8Z1G_OLcC3xkmU2ZHSoFLT8xfk_McYrtvUizewzzTjFOG191gm643HB4VaMHRd7fIfdUiZZ7qQ6PDBcCep78mi5krIdv0fzVVDESJzLIGOZ05pM43xBGSMI0YHl-EOLQ0Skjbdr36L5JC_iINoZvljkQ5FE8xH86HWwnIYGeYHGM-FNIufJG3jVjsAw4NvW0whkiA&h=FiiWOdrg2iL6ooj1-2kR3imwA_lByOT2qxeQ--_ltgk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e0ea3f0-3884-4805-96d1-4d67afa5e362?api-version=2024-02-15-preview&t=638443145050000410&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=t0uAAy4el5HHKI-6s-j_7j72nj6ww7Y7PpLiTdvuCFKvpU3Xh7nRbD9L8fLB-_IvWxJwkmNiMAb0xegYtSqftlyusI3SOjOgrlK0hsEX7uifjpG9k1AzsrZF4gQa6S0MURrGntJLWp_mmqckFy9nPfteR2hwmB8LzMBXhssozVwDByGIGfcFhRWEDBbgGjJ_FPpfywTGtJGvT-j6YAp6F6kLZCZOb0jvgCp9zLIYu3a8OwYfDvMxgkRz62kLjS3-mGXxjlbvEPcc76lNgLEy8aS8FrF24MXlaL4qNedNiTgvWu47UqdPFgZCxzI9QCrmcmlEKHv_33LZRE_WE8yQkA&h=evabWVv25MJHrEj8yT-D68oSnfYPE8K9CKGn9ICx0h0 cache-control: - no-store, no-cache content-length: @@ -801,21 +783,23 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:28:34 GMT + - Fri, 23 Feb 2024 19:48:24 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/5f1cf065-e29d-481a-931e-617c5b756ec3?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/2e0ea3f0-3884-4805-96d1-4d67afa5e362?api-version=2024-02-15-preview&t=638443145050157859&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=gLgyoINQgFUajsf966sJ6_Y7oD6hdZB45qKwmRPL-Q5_noElH979mAzxetnqQKDHJ_pcH8II5gRLPpUfBlYVCRgiR3PMDWVwdfO_0Q0dEHvIel4na6WuqlvYbzYm0Qv87Qer7RxNY4_F57Y-J65RgDHpGeFcUOnTy_nGCy7iHV89NdFQvWhLediTUc90KODmu10AjWwXcBUhOZ39sjuoQt4LjRQCijRVL-2Fm7IhRB37gFcCIvK32kIH9-D617IYWY0Y5DaeIgn1dhlL29loIWFDggdkCo5s3H-OqXzoKi8KAx07ndRS4SBW09TQCyUpKf7rCWVkD4qMKjP_whD-HQ&h=HFh86I_OtuxpRHZYm8xwR6XeFJEFoiH7mCPqsY6qP8Q pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + x-msedge-ref: + - 'Ref A: 0491CBCB033A4A528B502572D8AF5B31 Ref B: BL2AA2010205035 Ref C: 2024-02-23T19:48:24Z' status: code: 202 message: Accepted @@ -831,11 +815,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5f1cf065-e29d-481a-931e-617c5b756ec3?api-version=2023-09-15-preview&t=638327069148379796&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AHDe3Iy-mmVa2YDesaFLOSxWs-TtJ72f5-qCkBXpg4bhjFO5eUmAh4e6or-gW5tclop-YYD3JM70vsmtgxEnb1SlBgbYWcNuMeoYsG5BPoj9GnUx7n_ikJ_Da7bhLJt3ksgJhYjbPQWRkyGPf8Z1G_OLcC3xkmU2ZHSoFLT8xfk_McYrtvUizewzzTjFOG191gm643HB4VaMHRd7fIfdUiZZ7qQ6PDBcCep78mi5krIdv0fzVVDESJzLIGOZ05pM43xBGSMI0YHl-EOLQ0Skjbdr36L5JC_iINoZvljkQ5FE8xH86HWwnIYGeYHGM-FNIufJG3jVjsAw4NvW0whkiA&h=FiiWOdrg2iL6ooj1-2kR3imwA_lByOT2qxeQ--_ltgk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e0ea3f0-3884-4805-96d1-4d67afa5e362?api-version=2024-02-15-preview&t=638443145050000410&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=t0uAAy4el5HHKI-6s-j_7j72nj6ww7Y7PpLiTdvuCFKvpU3Xh7nRbD9L8fLB-_IvWxJwkmNiMAb0xegYtSqftlyusI3SOjOgrlK0hsEX7uifjpG9k1AzsrZF4gQa6S0MURrGntJLWp_mmqckFy9nPfteR2hwmB8LzMBXhssozVwDByGIGfcFhRWEDBbgGjJ_FPpfywTGtJGvT-j6YAp6F6kLZCZOb0jvgCp9zLIYu3a8OwYfDvMxgkRz62kLjS3-mGXxjlbvEPcc76lNgLEy8aS8FrF24MXlaL4qNedNiTgvWu47UqdPFgZCxzI9QCrmcmlEKHv_33LZRE_WE8yQkA&h=evabWVv25MJHrEj8yT-D68oSnfYPE8K9CKGn9ICx0h0 response: body: string: '{"status":"Enqueued"}' @@ -847,21 +831,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:28:34 GMT + - Fri, 23 Feb 2024 19:48:24 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: B4D627A87754426483A26288F966220C Ref B: BL2AA2010205035 Ref C: 2024-02-23T19:48:25Z' status: code: 200 message: Ok @@ -877,11 +859,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5f1cf065-e29d-481a-931e-617c5b756ec3?api-version=2023-09-15-preview&t=638327069148379796&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AHDe3Iy-mmVa2YDesaFLOSxWs-TtJ72f5-qCkBXpg4bhjFO5eUmAh4e6or-gW5tclop-YYD3JM70vsmtgxEnb1SlBgbYWcNuMeoYsG5BPoj9GnUx7n_ikJ_Da7bhLJt3ksgJhYjbPQWRkyGPf8Z1G_OLcC3xkmU2ZHSoFLT8xfk_McYrtvUizewzzTjFOG191gm643HB4VaMHRd7fIfdUiZZ7qQ6PDBcCep78mi5krIdv0fzVVDESJzLIGOZ05pM43xBGSMI0YHl-EOLQ0Skjbdr36L5JC_iINoZvljkQ5FE8xH86HWwnIYGeYHGM-FNIufJG3jVjsAw4NvW0whkiA&h=FiiWOdrg2iL6ooj1-2kR3imwA_lByOT2qxeQ--_ltgk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e0ea3f0-3884-4805-96d1-4d67afa5e362?api-version=2024-02-15-preview&t=638443145050000410&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=t0uAAy4el5HHKI-6s-j_7j72nj6ww7Y7PpLiTdvuCFKvpU3Xh7nRbD9L8fLB-_IvWxJwkmNiMAb0xegYtSqftlyusI3SOjOgrlK0hsEX7uifjpG9k1AzsrZF4gQa6S0MURrGntJLWp_mmqckFy9nPfteR2hwmB8LzMBXhssozVwDByGIGfcFhRWEDBbgGjJ_FPpfywTGtJGvT-j6YAp6F6kLZCZOb0jvgCp9zLIYu3a8OwYfDvMxgkRz62kLjS3-mGXxjlbvEPcc76lNgLEy8aS8FrF24MXlaL4qNedNiTgvWu47UqdPFgZCxzI9QCrmcmlEKHv_33LZRE_WE8yQkA&h=evabWVv25MJHrEj8yT-D68oSnfYPE8K9CKGn9ICx0h0 response: body: string: '{"status":"Succeeded"}' @@ -893,21 +875,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:29:06 GMT + - Fri, 23 Feb 2024 19:48:54 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 24513D82CCD146D680AFCADCF663C660 Ref B: BL2AA2010205035 Ref C: 2024-02-23T19:48:55Z' status: code: 200 message: Ok @@ -923,37 +903,35 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ExMGAMSGXWM=","_ts":1697110120,"_self":"dbs/ExMGAA==/colls/ExMGAMSGXWM=/","_etag":"\"00004539-0000-0700-0000-6527d8680000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708717710,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000c806-0000-0600-0000-65d8f68e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '1247' + - '1265' content-type: - application/json date: - - Thu, 12 Oct 2023 11:29:06 GMT + - Fri, 23 Feb 2024 19:48:54 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4F02EC987E2449DA88EE15BE422749C8 Ref B: BL2AA2010205035 Ref C: 2024-02-23T19:48:55Z' status: code: 200 message: Ok @@ -971,35 +949,33 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ExMGAMSGXWM=","_ts":1697110120,"_self":"dbs/ExMGAA==/colls/ExMGAMSGXWM=/","_etag":"\"00004539-0000-0700-0000-6527d8680000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708717710,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000c806-0000-0600-0000-65d8f68e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '1247' + - '1265' content-type: - application/json date: - - Thu, 12 Oct 2023 11:29:08 GMT + - Fri, 23 Feb 2024 19:48:56 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 13E6978FBBDD40619B997F6C061326A9 Ref B: BL2AA2010201045 Ref C: 2024-02-23T19:48:56Z' status: code: 200 message: Ok @@ -1017,35 +993,33 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-04-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ExMGAMSGXWM=","_ts":1697110120,"_self":"dbs/ExMGAA==/colls/ExMGAMSGXWM=/","_etag":"\"00004539-0000-0700-0000-6527d8680000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708717710,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000c806-0000-0600-0000-65d8f68e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' headers: cache-control: - no-store, no-cache content-length: - - '1146' + - '1164' content-type: - application/json date: - - Thu, 12 Oct 2023 11:29:09 GMT + - Fri, 23 Feb 2024 19:48:56 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9D0348642D744463B104D717E715B128 Ref B: MNZ221060610011 Ref C: 2024-02-23T19:48:56Z' status: code: 200 message: Ok @@ -1063,35 +1037,33 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ExMGAMSGXWM=","_ts":1697110120,"_self":"dbs/ExMGAA==/colls/ExMGAMSGXWM=/","_etag":"\"00004539-0000-0700-0000-6527d8680000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708717710,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000c806-0000-0600-0000-65d8f68e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '1249' + - '1265' content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:11 GMT + - Fri, 23 Feb 2024 19:53:56 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: C7640E118A5D4A7FBDD64E5E51824DAB Ref B: BL2AA2030101005 Ref C: 2024-02-23T19:53:57Z' status: code: 200 message: Ok @@ -1111,15 +1083,15 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f1b1e634-f85a-4cdf-b100-5127a5fe1243?api-version=2023-09-15&t=638327072542078538&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Vj7PJWN4sNPx32590MU7Wyiw2-HuremEALO04q-goAjqoTa_-ce3Ykkkqf6F0lNbP4_9uAmNkC4yVw_MizmU52hwBAzZt8c9oUKC5YVDEUJh481F4DPmk0C2_HQRuDof9IOgAgr8oYq0H4k57eAB_DKSujDy3cmLyjX3DjNzwGTPUudR7invcqbXfo9vLdQ2Ms3FuM0ScSwbuYgT_WMSOffoMhdQMNNU4Ky3CJlCxnPx9OiqZW03lH6UYUdt2pgpTXn-7xV8vwxYDaDC_fMEKh9AFcZpoy3Z12hl-72MK34XaH49v9Yt2bMxtaQL1C0t2vfcmB1DTB5w76FluWgTHQ&h=sx544uglaYXad_1Fp2RbLrxwDdBA9P8SuF4JXPCJFOk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/7312e9e1-3085-4bc2-afaf-0f9ee6a0a20d?api-version=2023-04-15&t=638443148386262808&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dhqYiOvXB6D_l_OShPFUDQbhEZ_SA0eKjDZ8kidpADVaG2qmHm2PfblxtB8qiPe0n86x7u9ClAv-RzGaLSBQuSl-kiuA2J9wRpph05LFjszVdx3HqVIsqWf48Av8LYz_GBM2I4AoCVlP-cGEqSfXet9FpkjLgzLmIzH1zBqdMX4nLo6_Ne80OMWPovtAbsW-R_bPQP8uXXBc4taGLVhLpyEKwQBKMn7t7itcycGXHC6jSQ2LIk7yeIYdbIl7aj0bF0y85Q8cqlzAPSpO1CSb-7mxbsuQ-MuHkcE5O82RR2mgahbRmmGn3NZdeRaX1m86LZOvtO0hx7b3mNRbR_Hfeg&h=1vDukosTvIidMZxJ_u38AhWcDgIO9eNXJGx7r49k0jA cache-control: - no-store, no-cache content-length: @@ -1127,21 +1099,23 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:13 GMT + - Fri, 23 Feb 2024 19:53:57 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/f1b1e634-f85a-4cdf-b100-5127a5fe1243?api-version=2023-09-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/7312e9e1-3085-4bc2-afaf-0f9ee6a0a20d?api-version=2023-04-15&t=638443148386419031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=i45zj9xVTVk8Jj0o5P1f25XBI1V2WjIX_c-YPFx_nSjSbU081hUla84Uww2ifA9MEkcoByFiJFiQyELkaXXjMrZsyKwPpWHwGHKRAPLKod3gDEn62A3vzw0uzZ2fAS1RVdGR5uVHjXK-NZlHURSHIM49d9xFMayVoyURB-Opi_jMkVoP0fJflM418Ya-Mp6ktaBjZPAi1MqjvbWEl3w9DuPascHLlJxHI9XTCFl_7QB2J2Inr1KnkU49ShWh6Dsf6OxrpyeveRNT-AC1CnW7kGGR2nItjbSHApb-ej1QUPRYjH1Dz_s-gKG30ic78LaewB8ycWmagwzeAVk4bvC73w&h=IcejvQOUeuGx55SeGcUue6caUqpH7bFX_gE75cdNND0 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' + x-msedge-ref: + - 'Ref A: 7A1494701E524239AC3639B6FF1E7968 Ref B: BL2AA2010203045 Ref C: 2024-02-23T19:53:57Z' status: code: 202 message: Accepted @@ -1159,9 +1133,9 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f1b1e634-f85a-4cdf-b100-5127a5fe1243?api-version=2023-09-15&t=638327072542078538&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Vj7PJWN4sNPx32590MU7Wyiw2-HuremEALO04q-goAjqoTa_-ce3Ykkkqf6F0lNbP4_9uAmNkC4yVw_MizmU52hwBAzZt8c9oUKC5YVDEUJh481F4DPmk0C2_HQRuDof9IOgAgr8oYq0H4k57eAB_DKSujDy3cmLyjX3DjNzwGTPUudR7invcqbXfo9vLdQ2Ms3FuM0ScSwbuYgT_WMSOffoMhdQMNNU4Ky3CJlCxnPx9OiqZW03lH6UYUdt2pgpTXn-7xV8vwxYDaDC_fMEKh9AFcZpoy3Z12hl-72MK34XaH49v9Yt2bMxtaQL1C0t2vfcmB1DTB5w76FluWgTHQ&h=sx544uglaYXad_1Fp2RbLrxwDdBA9P8SuF4JXPCJFOk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/7312e9e1-3085-4bc2-afaf-0f9ee6a0a20d?api-version=2023-04-15&t=638443148386262808&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dhqYiOvXB6D_l_OShPFUDQbhEZ_SA0eKjDZ8kidpADVaG2qmHm2PfblxtB8qiPe0n86x7u9ClAv-RzGaLSBQuSl-kiuA2J9wRpph05LFjszVdx3HqVIsqWf48Av8LYz_GBM2I4AoCVlP-cGEqSfXet9FpkjLgzLmIzH1zBqdMX4nLo6_Ne80OMWPovtAbsW-R_bPQP8uXXBc4taGLVhLpyEKwQBKMn7t7itcycGXHC6jSQ2LIk7yeIYdbIl7aj0bF0y85Q8cqlzAPSpO1CSb-7mxbsuQ-MuHkcE5O82RR2mgahbRmmGn3NZdeRaX1m86LZOvtO0hx7b3mNRbR_Hfeg&h=1vDukosTvIidMZxJ_u38AhWcDgIO9eNXJGx7r49k0jA response: body: string: '{"status":"Enqueued"}' @@ -1173,21 +1147,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:13 GMT + - Fri, 23 Feb 2024 19:53:57 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5327389F1FF84F89B5C91CD0E6641A45 Ref B: BL2AA2010203045 Ref C: 2024-02-23T19:53:58Z' status: code: 200 message: Ok @@ -1205,9 +1177,9 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f1b1e634-f85a-4cdf-b100-5127a5fe1243?api-version=2023-09-15&t=638327072542078538&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Vj7PJWN4sNPx32590MU7Wyiw2-HuremEALO04q-goAjqoTa_-ce3Ykkkqf6F0lNbP4_9uAmNkC4yVw_MizmU52hwBAzZt8c9oUKC5YVDEUJh481F4DPmk0C2_HQRuDof9IOgAgr8oYq0H4k57eAB_DKSujDy3cmLyjX3DjNzwGTPUudR7invcqbXfo9vLdQ2Ms3FuM0ScSwbuYgT_WMSOffoMhdQMNNU4Ky3CJlCxnPx9OiqZW03lH6UYUdt2pgpTXn-7xV8vwxYDaDC_fMEKh9AFcZpoy3Z12hl-72MK34XaH49v9Yt2bMxtaQL1C0t2vfcmB1DTB5w76FluWgTHQ&h=sx544uglaYXad_1Fp2RbLrxwDdBA9P8SuF4JXPCJFOk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/7312e9e1-3085-4bc2-afaf-0f9ee6a0a20d?api-version=2023-04-15&t=638443148386262808&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dhqYiOvXB6D_l_OShPFUDQbhEZ_SA0eKjDZ8kidpADVaG2qmHm2PfblxtB8qiPe0n86x7u9ClAv-RzGaLSBQuSl-kiuA2J9wRpph05LFjszVdx3HqVIsqWf48Av8LYz_GBM2I4AoCVlP-cGEqSfXet9FpkjLgzLmIzH1zBqdMX4nLo6_Ne80OMWPovtAbsW-R_bPQP8uXXBc4taGLVhLpyEKwQBKMn7t7itcycGXHC6jSQ2LIk7yeIYdbIl7aj0bF0y85Q8cqlzAPSpO1CSb-7mxbsuQ-MuHkcE5O82RR2mgahbRmmGn3NZdeRaX1m86LZOvtO0hx7b3mNRbR_Hfeg&h=1vDukosTvIidMZxJ_u38AhWcDgIO9eNXJGx7r49k0jA response: body: string: '{"status":"Succeeded"}' @@ -1219,21 +1191,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:44 GMT + - Fri, 23 Feb 2024 19:54:29 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: B7DCFE608FC84D4BA1E2D06F7EF1B4E1 Ref B: BL2AA2010203045 Ref C: 2024-02-23T19:54:28Z' status: code: 200 message: Ok @@ -1251,9 +1221,9 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-04-15 response: body: string: '{"value":[]}' @@ -1265,21 +1235,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:46 GMT + - Fri, 23 Feb 2024 19:54:30 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 08A8D4F680E84005940B90096A6C6932 Ref B: BL2AA2010202017 Ref C: 2024-02-23T19:54:29Z' status: code: 200 message: Ok @@ -1297,1067 +1265,922 @@ interactions: ParameterSetName: - -g -a -d -n --restore-timestamp User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2024-02-15-preview response: body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","oldestRestorableTime":"2023-10-12T11:13:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z"}]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","oldestRestorableTime":"2023-10-12T11:32:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ba9a28f0-933f-4c5c-918a-f136dd6570f0","creationTime":"2023-10-12T11:32:57Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:34:48Z","restorableLocations":[]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:34:50Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:34:49Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","oldestRestorableTime":"2024-02-23T19:47:10Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T00:34:40Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-16T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-16T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","oldestRestorableTime":"2024-02-16T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","oldestRestorableTime":"2024-02-16T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-16T19:54:30Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-01-24T19:54:30Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-17T01:28:01Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' headers: cache-control: - no-cache content-length: - - '295045' + - '265691' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Oct 2023 11:34:54 GMT + - Fri, 23 Feb 2024 19:54:33 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-original-request-ids: @@ -2401,14 +2224,15 @@ interactions: - '' - '' - '' - - '' + x-msedge-ref: + - 'Ref A: 12678290B4764789ABE88227EE070883 Ref B: BL2AA2030101019 Ref C: 2024-02-23T19:54:30Z' status: code: 200 message: OK - request: body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7", - "restoreTimestampInUtc": "2023-10-12T11:29:10.003776Z"}, "createMode": "Restore"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15", + "restoreTimestampInUtc": "2024-02-23T19:48:57.135429Z"}, "createMode": "Restore"}, "options": {}}}' headers: Accept: @@ -2420,21 +2244,21 @@ interactions: Connection: - keep-alive Content-Length: - - '352' + - '359' Content-Type: - application/json ParameterSetName: - -g -a -d -n --restore-timestamp User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c5786b5-d155-44d3-b478-0e549ceb62f6?api-version=2023-09-15-preview&t=638327072974084716&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=f8Y7muJj4jkwNP9cbvqys8GTrNWkZOCkB7hDjeQhsGnys_mZPVc6svP5EL9Rq3qlhweEvAz-nAzZuuyIhr7spnblEkMsGnc4DmSn-VlHaHh3lTISM4V2B-dr06FbHRaFu7kt9hYlh4nCv0uNw_N1HQ21PLNqxvsPC38TajuBvRBFfQj36HT9jh4oEx1KU02cqkeNsiyO0sCdcpyZrWrJlKl9ncrUAXiqaC0OKdhzvLYD4plKyxhVT9zO6PD4EtqNTr93Ah7u7a86exONHqp7C4-XyVjj38HN-JVxNsiHkAk0vqFvQQcI2iqJZrOF-16IrvxwxuSAf5ylWOVYGGBzKw&h=2N61_9abRZuAsiHi8aLigDA8DUfst4AHdf7Mp2esaIE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/6611805d-f791-4662-8604-c0895ff80dbd?api-version=2024-02-15-preview&t=638443148762560735&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Y_S59w5P3quRjG0oXuLaabN65OvIZTLOsEmQx1gkyF9MMWMe-CNRE3-zn-eGfdbH1W5PLE4E8s4XV9bLoCFzmk_gjExuA3jf_Vx-uFcRuNBgpntZOwlsDo0umPc_bMyjLeIcV71nJheADV7JY2MP7MVLiwlv2c4c5FumfmIvnEd93oLIWCj4AQ37fFs9FTiyAMvHP714cMkH2LwRINEIHg6UiNtBzFVXTPUfmqxhpF1TWOHeJpsbAFJtkguOniqHyNMREjDcJNGXQIIATlai3yvrWFpNgc_IeJiWGNw1xzSBaT7CtyTXnEq5ybxKdEO4rDM5bTr4e36QsOjMr5AmUg&h=QFid3phEB0MwIxnqOXlLMF8EXnXRUj0I9Xe_ENm33v8 cache-control: - no-store, no-cache content-length: @@ -2442,21 +2266,23 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:57 GMT + - Fri, 23 Feb 2024 19:54:36 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/1c5786b5-d155-44d3-b478-0e549ceb62f6?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/6611805d-f791-4662-8604-c0895ff80dbd?api-version=2024-02-15-preview&t=638443148762716995&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=OYF2S8Eg80W9OsxTPcKmrFS2uZATklvBvmQjH9PhWjrdVzVYfFupahnb9eDJERTW7vnV40Balaof_nrEElRXedjdNdHbNd8RckeW7MJ7W7cYOUAyIvCKyBv1onJ00_M6t7NcDliufcxeAwnFbDadA8qqU575B6_72Js43zMWdmLYOES8ngZnRqzYNUDRlzvMZrdmhdMo88hgqAPZlzj44n3fLlqsGUwRe2yLrsHxbj5BMYE_tZYxLJWci0nVF-1qFuMnOZ_J2k12IejDVE2OoJQqn2LjIvvqGsrDC9tS9_G4O-_xNzY3TOlUbCvbi2DQZIX8tqzfQjBzTC1oKI5O8g&h=FP7CujcsIy6CC-D3M03ZOIP2nJchNum6jtC7S7varhI pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: D981550B608B477582B0FB5E98648DA9 Ref B: BL2AA2030104019 Ref C: 2024-02-23T19:54:34Z' status: code: 202 message: Accepted @@ -2474,9 +2300,9 @@ interactions: ParameterSetName: - -g -a -d -n --restore-timestamp User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c5786b5-d155-44d3-b478-0e549ceb62f6?api-version=2023-09-15-preview&t=638327072974084716&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=f8Y7muJj4jkwNP9cbvqys8GTrNWkZOCkB7hDjeQhsGnys_mZPVc6svP5EL9Rq3qlhweEvAz-nAzZuuyIhr7spnblEkMsGnc4DmSn-VlHaHh3lTISM4V2B-dr06FbHRaFu7kt9hYlh4nCv0uNw_N1HQ21PLNqxvsPC38TajuBvRBFfQj36HT9jh4oEx1KU02cqkeNsiyO0sCdcpyZrWrJlKl9ncrUAXiqaC0OKdhzvLYD4plKyxhVT9zO6PD4EtqNTr93Ah7u7a86exONHqp7C4-XyVjj38HN-JVxNsiHkAk0vqFvQQcI2iqJZrOF-16IrvxwxuSAf5ylWOVYGGBzKw&h=2N61_9abRZuAsiHi8aLigDA8DUfst4AHdf7Mp2esaIE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/6611805d-f791-4662-8604-c0895ff80dbd?api-version=2024-02-15-preview&t=638443148762560735&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Y_S59w5P3quRjG0oXuLaabN65OvIZTLOsEmQx1gkyF9MMWMe-CNRE3-zn-eGfdbH1W5PLE4E8s4XV9bLoCFzmk_gjExuA3jf_Vx-uFcRuNBgpntZOwlsDo0umPc_bMyjLeIcV71nJheADV7JY2MP7MVLiwlv2c4c5FumfmIvnEd93oLIWCj4AQ37fFs9FTiyAMvHP714cMkH2LwRINEIHg6UiNtBzFVXTPUfmqxhpF1TWOHeJpsbAFJtkguOniqHyNMREjDcJNGXQIIATlai3yvrWFpNgc_IeJiWGNw1xzSBaT7CtyTXnEq5ybxKdEO4rDM5bTr4e36QsOjMr5AmUg&h=QFid3phEB0MwIxnqOXlLMF8EXnXRUj0I9Xe_ENm33v8 response: body: string: '{"status":"Enqueued"}' @@ -2488,21 +2314,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:57 GMT + - Fri, 23 Feb 2024 19:54:36 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3E94326B7B284B9BAE20A08B34A3F78E Ref B: BL2AA2030104019 Ref C: 2024-02-23T19:54:36Z' status: code: 200 message: Ok @@ -2520,15 +2344,15 @@ interactions: ParameterSetName: - -g -a -d -n --restore-timestamp User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c5786b5-d155-44d3-b478-0e549ceb62f6?api-version=2023-09-15-preview&t=638327072974084716&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=f8Y7muJj4jkwNP9cbvqys8GTrNWkZOCkB7hDjeQhsGnys_mZPVc6svP5EL9Rq3qlhweEvAz-nAzZuuyIhr7spnblEkMsGnc4DmSn-VlHaHh3lTISM4V2B-dr06FbHRaFu7kt9hYlh4nCv0uNw_N1HQ21PLNqxvsPC38TajuBvRBFfQj36HT9jh4oEx1KU02cqkeNsiyO0sCdcpyZrWrJlKl9ncrUAXiqaC0OKdhzvLYD4plKyxhVT9zO6PD4EtqNTr93Ah7u7a86exONHqp7C4-XyVjj38HN-JVxNsiHkAk0vqFvQQcI2iqJZrOF-16IrvxwxuSAf5ylWOVYGGBzKw&h=2N61_9abRZuAsiHi8aLigDA8DUfst4AHdf7Mp2esaIE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/6611805d-f791-4662-8604-c0895ff80dbd?api-version=2024-02-15-preview&t=638443148762560735&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Y_S59w5P3quRjG0oXuLaabN65OvIZTLOsEmQx1gkyF9MMWMe-CNRE3-zn-eGfdbH1W5PLE4E8s4XV9bLoCFzmk_gjExuA3jf_Vx-uFcRuNBgpntZOwlsDo0umPc_bMyjLeIcV71nJheADV7JY2MP7MVLiwlv2c4c5FumfmIvnEd93oLIWCj4AQ37fFs9FTiyAMvHP714cMkH2LwRINEIHg6UiNtBzFVXTPUfmqxhpF1TWOHeJpsbAFJtkguOniqHyNMREjDcJNGXQIIATlai3yvrWFpNgc_IeJiWGNw1xzSBaT7CtyTXnEq5ybxKdEO4rDM5bTr4e36QsOjMr5AmUg&h=QFid3phEB0MwIxnqOXlLMF8EXnXRUj0I9Xe_ENm33v8 response: body: string: '{"status":"Failed","error":{"code":"BadRequest","message":"InAccount restore of individual shared database collections is not supported. Please restore shared database to restore its collections that shared the throughput.\r\nActivityId: - 58b2d886-68f3-11ee-9db7-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0, + 5b787e5f-d285-11ee-a17c-6045bdd9660e, Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0"}}' @@ -2540,21 +2364,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:35:27 GMT + - Fri, 23 Feb 2024 19:55:06 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 007799C3945A4650A7DC3891434C6F10 Ref B: BL2AA2030104019 Ref C: 2024-02-23T19:55:06Z' status: code: 200 message: Ok @@ -2572,9 +2394,9 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-04-15 response: body: string: '{"value":[]}' @@ -2586,21 +2408,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:35:30 GMT + - Fri, 23 Feb 2024 19:55:07 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9E39E1F9BC74436D8FF8404D23CAAF2E Ref B: MNZ221060608049 Ref C: 2024-02-23T19:55:07Z' status: code: 200 message: Ok @@ -2620,15 +2440,15 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c969b44-c5b5-4a78-a444-3722e3904ec4?api-version=2023-09-15&t=638327073315321136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=P0g_3LfpgkHNC2vKnOT90MC2lvCvmpLl3geonxU_Kvh6IrefTL8EFqO5BTcNKvYTEMyYVx0TA2e7w_tI45pN9BXKGDomlO7aNyiEqUTUMf0X0nv4p1qwW1qPJpdYuoQq7d4_39eJaXfXs1yCmpd96F3KMCAq_abd7y7rESMLwU37TF2D74r-j31fYAXaDQu5QsHwQi6TVhsbBXtVsxhU55BOW_UQBXJI7Qa7ZlOPI1eEe5myLsfBRV8jAKswzaVo9uC_VrFLxrpehAOKdQEjt4O9ubs9Nsrdn_3dQgSoG9-ckr4jeX99qVctZ39JUH__6z8lwdYQW37vh3z07A-aaw&h=yPYBRl_PYB0VmAHeaNO2aG5uQ9jB69P8SfH9SEm1uVU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0b425ae4-5eb0-40a3-a6a6-427c0bdd3b05?api-version=2023-04-15&t=638443149085477091&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LZ6NwQREnq1UYvsMQEMA5xLOu-TMMyeLyYOiM36QuMSfthwSttG7ecNrAcl0jiBls6V1Q0u2tGkc8smSd4guKACgDo90Mi321NP7ZtrzB9yFNE5QMC45FqoWJsApwaAGRkDimlvSKspQ1FVWEHmvG_e2aHJCl4B_PJBl8Pfb3dsAPVtN7csQHqN3K0AgHx58dyAkJxaloFrKNuNQ4BM0vFH1xyAGASHO7vQgduOS3yLMzvtOjZ6M1k5cmyc8WStNy-4PxbpnstzLLAkc0HKpguL_eywSIm_wZFVAPRorqbcAOvShnwy6MrudQfRNZHonMENSzqcnNEpJ8yBkTOfqtA&h=QQTMAqeRvnsKAgJYnp6N59Kr2JuxAv2kclWELnPUpZ8 cache-control: - no-store, no-cache content-length: @@ -2636,21 +2456,23 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:35:30 GMT + - Fri, 23 Feb 2024 19:55:08 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/6c969b44-c5b5-4a78-a444-3722e3904ec4?api-version=2023-09-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/0b425ae4-5eb0-40a3-a6a6-427c0bdd3b05?api-version=2023-04-15&t=638443149085633059&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NCzlLaVd6T3ROsg9jderOLhHm_rYTZbph6h1i6rscmpe0VRFP-GrSs1jULdN8giL9tKbr0F5Y2yA4Vg7N2hhhgp9Xc8EN5VoaQ-npF7ujlytZs4-FJI9dYP5gW0LuAa3CAz81QZK4TGS3Ltu5AuSnI9rX4bvgCcJxWNGTfncOfgkFMYjFX2tf8O3fQFvhFEtyxFG3THjujMY3hyyeVhJIvuMIDOM5iBVOypWVN96JffdZNJjtImCT9KR9g0cU12qT6ROVfjnhypyv5HQuawH5FnfdHrq3lU_UIc1XYX33WGffirFubIC1HD0o-ZsaG_fvz_8PqAVFrV269PiEeDnRw&h=91hyvlNIlM9WBXyLwfOOdryS_LnVzCygR0kIDmiXOAE pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' + x-msedge-ref: + - 'Ref A: DCA89597B6E34BA793155F8568F0A494 Ref B: MNZ221060610045 Ref C: 2024-02-23T19:55:08Z' status: code: 202 message: Accepted @@ -2668,9 +2490,9 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c969b44-c5b5-4a78-a444-3722e3904ec4?api-version=2023-09-15&t=638327073315321136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=P0g_3LfpgkHNC2vKnOT90MC2lvCvmpLl3geonxU_Kvh6IrefTL8EFqO5BTcNKvYTEMyYVx0TA2e7w_tI45pN9BXKGDomlO7aNyiEqUTUMf0X0nv4p1qwW1qPJpdYuoQq7d4_39eJaXfXs1yCmpd96F3KMCAq_abd7y7rESMLwU37TF2D74r-j31fYAXaDQu5QsHwQi6TVhsbBXtVsxhU55BOW_UQBXJI7Qa7ZlOPI1eEe5myLsfBRV8jAKswzaVo9uC_VrFLxrpehAOKdQEjt4O9ubs9Nsrdn_3dQgSoG9-ckr4jeX99qVctZ39JUH__6z8lwdYQW37vh3z07A-aaw&h=yPYBRl_PYB0VmAHeaNO2aG5uQ9jB69P8SfH9SEm1uVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0b425ae4-5eb0-40a3-a6a6-427c0bdd3b05?api-version=2023-04-15&t=638443149085477091&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LZ6NwQREnq1UYvsMQEMA5xLOu-TMMyeLyYOiM36QuMSfthwSttG7ecNrAcl0jiBls6V1Q0u2tGkc8smSd4guKACgDo90Mi321NP7ZtrzB9yFNE5QMC45FqoWJsApwaAGRkDimlvSKspQ1FVWEHmvG_e2aHJCl4B_PJBl8Pfb3dsAPVtN7csQHqN3K0AgHx58dyAkJxaloFrKNuNQ4BM0vFH1xyAGASHO7vQgduOS3yLMzvtOjZ6M1k5cmyc8WStNy-4PxbpnstzLLAkc0HKpguL_eywSIm_wZFVAPRorqbcAOvShnwy6MrudQfRNZHonMENSzqcnNEpJ8yBkTOfqtA&h=QQTMAqeRvnsKAgJYnp6N59Kr2JuxAv2kclWELnPUpZ8 response: body: string: '{"status":"Enqueued"}' @@ -2682,21 +2504,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:35:31 GMT + - Fri, 23 Feb 2024 19:55:08 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8F066D7F419C43D3AE8A58F4EE979ABF Ref B: MNZ221060610045 Ref C: 2024-02-23T19:55:08Z' status: code: 200 message: Ok @@ -2714,9 +2534,9 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c969b44-c5b5-4a78-a444-3722e3904ec4?api-version=2023-09-15&t=638327073315321136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=P0g_3LfpgkHNC2vKnOT90MC2lvCvmpLl3geonxU_Kvh6IrefTL8EFqO5BTcNKvYTEMyYVx0TA2e7w_tI45pN9BXKGDomlO7aNyiEqUTUMf0X0nv4p1qwW1qPJpdYuoQq7d4_39eJaXfXs1yCmpd96F3KMCAq_abd7y7rESMLwU37TF2D74r-j31fYAXaDQu5QsHwQi6TVhsbBXtVsxhU55BOW_UQBXJI7Qa7ZlOPI1eEe5myLsfBRV8jAKswzaVo9uC_VrFLxrpehAOKdQEjt4O9ubs9Nsrdn_3dQgSoG9-ckr4jeX99qVctZ39JUH__6z8lwdYQW37vh3z07A-aaw&h=yPYBRl_PYB0VmAHeaNO2aG5uQ9jB69P8SfH9SEm1uVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0b425ae4-5eb0-40a3-a6a6-427c0bdd3b05?api-version=2023-04-15&t=638443149085477091&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LZ6NwQREnq1UYvsMQEMA5xLOu-TMMyeLyYOiM36QuMSfthwSttG7ecNrAcl0jiBls6V1Q0u2tGkc8smSd4guKACgDo90Mi321NP7ZtrzB9yFNE5QMC45FqoWJsApwaAGRkDimlvSKspQ1FVWEHmvG_e2aHJCl4B_PJBl8Pfb3dsAPVtN7csQHqN3K0AgHx58dyAkJxaloFrKNuNQ4BM0vFH1xyAGASHO7vQgduOS3yLMzvtOjZ6M1k5cmyc8WStNy-4PxbpnstzLLAkc0HKpguL_eywSIm_wZFVAPRorqbcAOvShnwy6MrudQfRNZHonMENSzqcnNEpJ8yBkTOfqtA&h=QQTMAqeRvnsKAgJYnp6N59Kr2JuxAv2kclWELnPUpZ8 response: body: string: '{"status":"Succeeded"}' @@ -2728,21 +2548,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:36:02 GMT + - Fri, 23 Feb 2024 19:55:38 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8E8BDB0E6E2540089A2F0A3B4EA0B95E Ref B: MNZ221060610045 Ref C: 2024-02-23T19:55:38Z' status: code: 200 message: Ok @@ -2760,9 +2578,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-04-15 response: body: string: '{"value":[]}' @@ -2774,21 +2592,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:36:04 GMT + - Fri, 23 Feb 2024 19:55:39 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6D6A166209F94CD88ABF20875C3114B4 Ref B: BL2AA2010201037 Ref C: 2024-02-23T19:55:39Z' status: code: 200 message: Ok @@ -2804,1082 +2620,926 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2024-02-15-preview response: body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","oldestRestorableTime":"2023-10-12T11:35:17Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","oldestRestorableTime":"2023-10-12T11:35:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","oldestRestorableTime":"2023-10-12T11:35:19+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z","deletionTime":"2023-10-12T11:30:47Z"}]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1b0b8cd9-a889-4c9b-b889-7bd093310e25","creationTime":"2023-10-12T11:25:54Z","deletionTime":"2023-10-12T11:30:56Z"}]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ed392ee-a218-46d0-82d0-8fadee0ba43b","creationTime":"2023-10-12T11:30:28Z","deletionTime":"2023-10-12T11:33:27Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"660c29e5-8d7d-496d-84c7-50e7c655fae1","creationTime":"2023-10-12T11:31:23Z","deletionTime":"2023-10-12T11:34:15Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:44:26Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:44:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:44:27Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","oldestRestorableTime":"2024-02-23T19:47:10Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T00:34:40Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-01-24T20:04: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"}]}},{"name":"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-01-24T20:04: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"}]}},{"name":"afe6a47d-1fbd-41e1-992b-db16beeeae3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-16T20:04:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-01-24T20:04:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-17T01:28:01Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' headers: cache-control: - no-cache content-length: - - '297993' + - '266045' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Oct 2023 11:44:32 GMT + - Fri, 23 Feb 2024 20:04:04 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-original-request-ids: @@ -3923,14 +3583,16 @@ interactions: - '' - '' - '' - - '' + x-msedge-ref: + - 'Ref A: FEE7F593FA5D485C941213C110509DB9 Ref B: BL2AA2030101045 Ref C: 2024-02-23T20:04:00Z' status: code: 200 message: OK - request: body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7", - "restoreTimestampInUtc": "2023-10-12T11:29:10.003776Z"}, "createMode": "Restore"}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15", + "restoreTimestampInUtc": "2024-02-23T19:48:57.135429Z", "restoreWithTtlDisabled": + true}, "createMode": "Restore"}}}' headers: Accept: - application/json @@ -3941,21 +3603,21 @@ interactions: Connection: - keep-alive Content-Length: - - '337' + - '376' Content-Type: - application/json ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY cache-control: - no-store, no-cache content-length: @@ -3963,21 +3625,23 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:44:34 GMT + - Fri, 23 Feb 2024 20:04:05 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Wq6HkrO0IqzJNiHZFnjSwtuZJyBRM_WBqZCnqzFg__TOQ8AMTstY2ZCLY00Fp5h1HfO9UhUlvzGCHQ_xp7MutMAO8HDnkr9e9pSSIvfOURuUvTr40wotyD8NjBmnPXOk5L6mhtWetpJAXioj4aybrPVNATwo9GDhkLDxdgJXi-_Ddb0aH5GFiWM4SQOyAF0Ui1xInglGUDsrjf9hbgOmhDDqzgS7tjpx_LFfbPcmKeisUu3na6nRbAw4-HvDutjF4FQYyAFJf1ubIvkoniq21rT6j_zBozdbDddkABLAGrV2xhF2bzOSOmBhr1tMF_NqOJZSroZ4nekxEYnmgegAzQ&h=vDU3G2faW-KjOt47Xy3OyeZQkLrmErG5T_pHMSmtczY pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' + x-msedge-ref: + - 'Ref A: 413B1CB261674EFBBA10B9F4990B0BB9 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:04:04Z' status: code: 202 message: Accepted @@ -3993,11 +3657,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Enqueued"}' @@ -4009,21 +3673,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:44:35 GMT + - Fri, 23 Feb 2024 20:04:05 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: DDACF887553F42BEA147D408D2D24FA6 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:04:05Z' status: code: 200 message: Ok @@ -4039,11 +3701,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4055,21 +3717,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:45:05 GMT + - Fri, 23 Feb 2024 20:04:35 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1F4B031B34514733BF69D2528ED81ADD Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:04:35Z' status: code: 200 message: Ok @@ -4085,11 +3745,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4101,21 +3761,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:45:36 GMT + - Fri, 23 Feb 2024 20:05:05 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 00FFD48DC8E64661B94D4E803DD28307 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:05:06Z' status: code: 200 message: Ok @@ -4131,11 +3789,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4147,21 +3805,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:46:07 GMT + - Fri, 23 Feb 2024 20:05:36 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 94833FD097914C68AFBAF492147F3F87 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:05:36Z' status: code: 200 message: Ok @@ -4177,11 +3833,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4193,21 +3849,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:46:36 GMT + - Fri, 23 Feb 2024 20:06:06 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 94645BC0A3BB4A2786EF1A7B1ECAA1F1 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:06:06Z' status: code: 200 message: Ok @@ -4223,11 +3877,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4239,21 +3893,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:47:07 GMT + - Fri, 23 Feb 2024 20:06:36 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: B5C5A4DD45A54A5DB14774F94255D82F Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:06:37Z' status: code: 200 message: Ok @@ -4269,11 +3921,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4285,21 +3937,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:47:38 GMT + - Fri, 23 Feb 2024 20:07:06 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: FD48F971F86E454B89CD4E604C13B1E3 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:07:07Z' status: code: 200 message: Ok @@ -4315,11 +3965,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4331,21 +3981,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:48:07 GMT + - Fri, 23 Feb 2024 20:07:37 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: FB8411BE505F44088683914C1514A0A2 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:07:37Z' status: code: 200 message: Ok @@ -4361,11 +4009,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4377,21 +4025,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:48:38 GMT + - Fri, 23 Feb 2024 20:08:07 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 61D2E6C72A974BF280BD04C9E0A42709 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:08:07Z' status: code: 200 message: Ok @@ -4407,11 +4053,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4423,21 +4069,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:49:08 GMT + - Fri, 23 Feb 2024 20:08:37 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: DFAADA3BC88345E19111FC395324483E Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:08:37Z' status: code: 200 message: Ok @@ -4453,11 +4097,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4469,21 +4113,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:49:39 GMT + - Fri, 23 Feb 2024 20:09:07 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 91E3DA933F81457FBD635C2C241A893E Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:09:08Z' status: code: 200 message: Ok @@ -4499,11 +4141,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4515,21 +4157,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:50:09 GMT + - Fri, 23 Feb 2024 20:09:38 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 53EA3C8BF48D44FABA6ADCA8B8A4A7D1 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:09:38Z' status: code: 200 message: Ok @@ -4545,11 +4185,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4561,21 +4201,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:50:40 GMT + - Fri, 23 Feb 2024 20:10:08 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 03F3C786F2F949BAB9926BA7649D3347 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:10:08Z' status: code: 200 message: Ok @@ -4591,11 +4229,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Dequeued"}' @@ -4607,21 +4245,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:10 GMT + - Fri, 23 Feb 2024 20:10:38 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7CE564E0B00D4C1A9D2EBDD70517A556 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:10:38Z' status: code: 200 message: Ok @@ -4637,11 +4273,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c23dda9c-f905-4b66-aca9-fa6fdf582ae7?api-version=2023-09-15-preview&t=638327078756899163&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ouf0bWQ2xOe5sOfuO7vJnQo7hOS5bVrrFJR0xP0bju1OL9Bl2iumz6Dt9Zx0t7_5cyVqdtK9yFEZ1kYHJ24YwMeMoaTRNpohmgtSrM5RzbS1cxAcLCpL1RRDSuiQJbe8LKsN4LI8wcCa4QwvPKnhRgAZlAjB96VIPCCTXn5S0pj0wm2CpwuXrbgRgVo78zrOWurvd22AkfA8oP5imkNgEtAEtNbQfqQowDFal4RHSqPu8Y4YUpf062q6WZrcQQQsguDM8UrvL3K6T1LC_abUYzODCE0dBlM6fi_ggB1yUDzoTxshcC2dNBKdk7mHR0gx48kGl2n9bl87nWJa817j_Q&h=mNHBWObBGVFtbedYQAti02N7amvGGITsRcRfobCRyWE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY response: body: string: '{"status":"Succeeded"}' @@ -4653,21 +4289,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:40 GMT + - Fri, 23 Feb 2024 20:11:08 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8D2CEAD7622F4EFC9B31A2BA5D94491A Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:11:09Z' status: code: 200 message: Ok @@ -4683,14 +4317,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -n --restore-timestamp + - -g -a -n --restore-timestamp --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ExMGAA==","_self":"dbs/ExMGAA==/","_etag":"\"00006f39-0000-0700-0000-6527dcd10000\"","_colls":"colls/","_users":"users/","_ts":1697111249}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ZlVbAA==","_self":"dbs/ZlVbAA==/","_etag":"\"0000d906-0000-0600-0000-65d8fae20000\"","_colls":"colls/","_users":"users/","_ts":1708718818}}}' headers: cache-control: - no-store, no-cache @@ -4699,21 +4333,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:42 GMT + - Fri, 23 Feb 2024 20:11:09 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 28CF20B890B140629CBC2F3B0BAAB99F Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:11:09Z' status: code: 200 message: Ok @@ -4731,12 +4363,12 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ExMGAA==","_self":"dbs/ExMGAA==/","_etag":"\"00006f39-0000-0700-0000-6527dcd10000\"","_colls":"colls/","_users":"users/","_ts":1697111249}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ZlVbAA==","_self":"dbs/ZlVbAA==/","_etag":"\"0000d906-0000-0600-0000-65d8fae20000\"","_colls":"colls/","_users":"users/","_ts":1708718818}}}' headers: cache-control: - no-store, no-cache @@ -4745,21 +4377,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:43 GMT + - Fri, 23 Feb 2024 20:11:09 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: F2C8106370E544A68378C8304E254EBB Ref B: BL2AA2010205031 Ref C: 2024-02-23T20:11:10Z' status: code: 200 message: Ok @@ -4777,35 +4407,33 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-04-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"b0fb73c0-68f4-11ee-b352-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T11:29:10.003776+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7"},"geospatialConfig":{"type":"Geography"},"_rid":"ExMGAMSGXWM=","_ts":1697111252,"_self":"dbs/ExMGAA==/colls/ExMGAMSGXWM=/","_etag":"\"00007339-0000-0700-0000-6527dcd40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"af2f8432-d286-11ee-87dd-6045bdd9660e","restoreTimestampInUtc":"2024-02-23T19:48:57.135429+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15"},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708718821,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000dd06-0000-0600-0000-65d8fae50000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' headers: cache-control: - no-store, no-cache content-length: - - '1461' + - '1468' content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:45 GMT + - Fri, 23 Feb 2024 20:11:10 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 89080563A0AB42F68774AC381283C8B3 Ref B: MNZ221060608007 Ref C: 2024-02-23T20:11:10Z' status: code: 200 message: Ok @@ -4823,35 +4451,33 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"b0fb73c0-68f4-11ee-b352-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T11:29:10.003776+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7"},"geospatialConfig":{"type":"Geography"},"_rid":"ExMGAMSGXWM=","_ts":1697111252,"_self":"dbs/ExMGAA==/colls/ExMGAMSGXWM=/","_etag":"\"00007339-0000-0700-0000-6527dcd40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"af2f8432-d286-11ee-87dd-6045bdd9660e","restoreTimestampInUtc":"2024-02-23T19:48:57.135429+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15"},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708718821,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000dd06-0000-0600-0000-65d8fae50000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '1564' + - '1571' content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:47 GMT + - Fri, 23 Feb 2024 20:11:10 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 554DCD5FDED445C0B835269A20E841BE Ref B: BL2AA2010202047 Ref C: 2024-02-23T20:11:11Z' status: code: 200 message: Ok @@ -4871,15 +4497,15 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/05a4fba9-1f6e-4dc9-a6b9-c6065b4268f7?api-version=2023-09-15&t=638327083098272959&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=rw6H3g_s8LMlmEfPX0BtpchRuz-h6FaDGKFwxdfqwOKApJTDzBIccULTqxs3BkVc3VOYJfC7B63MHz10BICqh37YEBsHCMosQ5ez6RvY95zDPFdnRu1CMd1nOebfkkBt3up5DbOXcZq7fqkAVp4tDVGL3_AGYGYZHpoEYymUCZxh-Yo-7-sz8eM7F1SZhXTe_Ix_6eYpS3OX_fLf7INQkj798O5SsMlaG2OrZRUQ9PWvX-LoERC5FyczkcE0lyRD8i4II6JkBmt52fu1OzRo_Kx2oCDsxsPd2PaxUUSnyaJvz-odHubaqpXNfmQupHMgKNmaqeWA34lhIx51-YkY4g&h=P8d16Grxg4US5YbKe0crNwKlx2HvbocpMTG7zDa5Mb8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e4cc9b4-8166-4a8a-8be2-8afe4f802a87?api-version=2023-04-15&t=638443158723517498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SbS0J9FoUWblSU12FvCCQ0p_db5OlhB-GpNu7jj7onV7AfCfzggubtyAhg2KWqN8exfTl6ke2d3KPtyINhsrXlY9fqsV5Fps0vZW_YUS7cuZKZK_uELnnwghcIHNngi3qgv3ApHml4mPzYe83Xk0D4BsOy2kbdXRCxhRA0jmnoVkvOgDS9g7mG8T4hJxx4Vh2jCLc4IJRiASGY142aTnLdAmOR5mCNdFyyPAMDjIlMy_-YYanOA-mUBlNNPnuSyGniiDG3CAZ9zu7nOY5IFgyDTSW4HSIS72EebXBgMJfrNS9X3iKT6GKZztA3rFIFhU0HSAYhtFE6aGDkghYFz9jA&h=KTnriCyo9NTeg7dUkzvUnAzxu1lJta6CUF6yPKqU5qc cache-control: - no-store, no-cache content-length: @@ -4887,21 +4513,23 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:49 GMT + - Fri, 23 Feb 2024 20:11:11 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/05a4fba9-1f6e-4dc9-a6b9-c6065b4268f7?api-version=2023-09-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/2e4cc9b4-8166-4a8a-8be2-8afe4f802a87?api-version=2023-04-15&t=638443158723673708&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I6wIogs1CTnN5p2Y5eSl48f4la3S1pn4VNw0XZG0RW__9bfZxOZaglKqLeeipKax5ix_98CbqgXz7tIQfVkqThhyygQrf4KjhTEnDQM7IvoAmuNs2g5Ouib_CwqG_SzQrKUT-bwORchamEc2HDh8vWNDdfTURfDVzaM-w7YX_XGZ1XS8tCeKIKvlv5o-ML71ISi6DUL9HJ2RPwLeD2HHHLUwWGjrxcPW5tpq3UdIx2tSgFxn8Qroqxk8dJwYZNoQrPtscLz2X0oPd7x7H8bjO_m-oIDwfVOwc7B-kWHvZPzBn7mZvNtgEv4qYWsBEQxDj8mc_DQsU9MaPoY2D8QRuA&h=v-zbjMBobsIIbt6bnjh5BsUTxj072dLxP-VqnOntWVY pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 62C84B43FB7A4E25B2D96C6C471F9169 Ref B: MNZ221060610033 Ref C: 2024-02-23T20:11:11Z' status: code: 202 message: Accepted @@ -4919,9 +4547,9 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/05a4fba9-1f6e-4dc9-a6b9-c6065b4268f7?api-version=2023-09-15&t=638327083098272959&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=rw6H3g_s8LMlmEfPX0BtpchRuz-h6FaDGKFwxdfqwOKApJTDzBIccULTqxs3BkVc3VOYJfC7B63MHz10BICqh37YEBsHCMosQ5ez6RvY95zDPFdnRu1CMd1nOebfkkBt3up5DbOXcZq7fqkAVp4tDVGL3_AGYGYZHpoEYymUCZxh-Yo-7-sz8eM7F1SZhXTe_Ix_6eYpS3OX_fLf7INQkj798O5SsMlaG2OrZRUQ9PWvX-LoERC5FyczkcE0lyRD8i4II6JkBmt52fu1OzRo_Kx2oCDsxsPd2PaxUUSnyaJvz-odHubaqpXNfmQupHMgKNmaqeWA34lhIx51-YkY4g&h=P8d16Grxg4US5YbKe0crNwKlx2HvbocpMTG7zDa5Mb8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e4cc9b4-8166-4a8a-8be2-8afe4f802a87?api-version=2023-04-15&t=638443158723517498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SbS0J9FoUWblSU12FvCCQ0p_db5OlhB-GpNu7jj7onV7AfCfzggubtyAhg2KWqN8exfTl6ke2d3KPtyINhsrXlY9fqsV5Fps0vZW_YUS7cuZKZK_uELnnwghcIHNngi3qgv3ApHml4mPzYe83Xk0D4BsOy2kbdXRCxhRA0jmnoVkvOgDS9g7mG8T4hJxx4Vh2jCLc4IJRiASGY142aTnLdAmOR5mCNdFyyPAMDjIlMy_-YYanOA-mUBlNNPnuSyGniiDG3CAZ9zu7nOY5IFgyDTSW4HSIS72EebXBgMJfrNS9X3iKT6GKZztA3rFIFhU0HSAYhtFE6aGDkghYFz9jA&h=KTnriCyo9NTeg7dUkzvUnAzxu1lJta6CUF6yPKqU5qc response: body: string: '{"status":"Enqueued"}' @@ -4933,21 +4561,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:49 GMT + - Fri, 23 Feb 2024 20:11:11 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: D46D5822CDDE4D04B5CA766CC5799095 Ref B: MNZ221060610033 Ref C: 2024-02-23T20:11:12Z' status: code: 200 message: Ok @@ -4965,9 +4591,9 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/05a4fba9-1f6e-4dc9-a6b9-c6065b4268f7?api-version=2023-09-15&t=638327083098272959&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=rw6H3g_s8LMlmEfPX0BtpchRuz-h6FaDGKFwxdfqwOKApJTDzBIccULTqxs3BkVc3VOYJfC7B63MHz10BICqh37YEBsHCMosQ5ez6RvY95zDPFdnRu1CMd1nOebfkkBt3up5DbOXcZq7fqkAVp4tDVGL3_AGYGYZHpoEYymUCZxh-Yo-7-sz8eM7F1SZhXTe_Ix_6eYpS3OX_fLf7INQkj798O5SsMlaG2OrZRUQ9PWvX-LoERC5FyczkcE0lyRD8i4II6JkBmt52fu1OzRo_Kx2oCDsxsPd2PaxUUSnyaJvz-odHubaqpXNfmQupHMgKNmaqeWA34lhIx51-YkY4g&h=P8d16Grxg4US5YbKe0crNwKlx2HvbocpMTG7zDa5Mb8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e4cc9b4-8166-4a8a-8be2-8afe4f802a87?api-version=2023-04-15&t=638443158723517498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SbS0J9FoUWblSU12FvCCQ0p_db5OlhB-GpNu7jj7onV7AfCfzggubtyAhg2KWqN8exfTl6ke2d3KPtyINhsrXlY9fqsV5Fps0vZW_YUS7cuZKZK_uELnnwghcIHNngi3qgv3ApHml4mPzYe83Xk0D4BsOy2kbdXRCxhRA0jmnoVkvOgDS9g7mG8T4hJxx4Vh2jCLc4IJRiASGY142aTnLdAmOR5mCNdFyyPAMDjIlMy_-YYanOA-mUBlNNPnuSyGniiDG3CAZ9zu7nOY5IFgyDTSW4HSIS72EebXBgMJfrNS9X3iKT6GKZztA3rFIFhU0HSAYhtFE6aGDkghYFz9jA&h=KTnriCyo9NTeg7dUkzvUnAzxu1lJta6CUF6yPKqU5qc response: body: string: '{"status":"Succeeded"}' @@ -4979,21 +4605,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:52:19 GMT + - Fri, 23 Feb 2024 20:11:42 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 063F9EA097024139A5A97DD29E2EBB69 Ref B: MNZ221060610033 Ref C: 2024-02-23T20:11:42Z' status: code: 200 message: Ok @@ -5011,9 +4635,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-04-15 response: body: string: '{"value":[]}' @@ -5025,21 +4649,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:52:22 GMT + - Fri, 23 Feb 2024 20:11:43 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 91E357F7666A46DF947B398D51B96578 Ref B: BL2AA2030104051 Ref C: 2024-02-23T20:11:43Z' status: code: 200 message: Ok diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_command.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_command.yaml index ed05fdacb43..1dc3f8d39a4 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_command.yaml +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_command.yaml @@ -13,38 +13,40 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_account_restore_command000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001","name":"cli_test_cosmosdb_table_account_restore_command000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table_account_restore_command","date":"2023-10-12T11:31:23Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001","name":"cli_test_cosmosdb_table_account_restore_command000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table_account_restore_command","date":"2024-02-23T01:32:30Z","module":"azure-cli-extensions-restorewithttldisabled"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '499' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Oct 2023 11:31:25 GMT + - Fri, 23 Feb 2024 01:32:32 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7E310D8F3AF74732A58F14ADFC22B823 Ref B: MNZ221060610051 Ref C: 2024-02-23T01:32:32Z' status: code: 200 message: OK - request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], + body: '{"location": "westcentralus", "kind": "GlobalDocumentDB", "properties": + {"locations": [{"locationName": "westcentralus", "failoverPriority": 0, "isZoneRedundant": + false}], "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": "Continuous30Days"}}}}' headers: @@ -57,53 +59,51 @@ interactions: Connection: - keep-alive Content-Length: - - '387' + - '399' Content-Type: - application/json ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:31.1222104Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:31.1222104Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:31.1222104Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:31.1222104Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:31.1222104Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:32:35.362879Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:32:35.362879Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:32:35.362879Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:32:35.362879Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:32:35.362879Z"}}},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/146b87a1-8694-415b-8110-549601c4e9c1?api-version=2023-09-15-preview&t=638327070928432839&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=clsBWsFmpad3FAPfo7Cf-LbVIFfm7_caL8RwT01eH42MZ36p3fKFtXI48tyN9HdfYXYTINaiHNuITq1ST2-CmACM4A91g4dnxs4g4yo2DcGiF-ylBadvSfBYOGXrchT50pXAbwpk8NjwaVeI0vzduO8fHyG3IPOcEKZkmUFk99Um3XYAQIYUQQoIj-iu2HbkqE6hJk305Ljpu44Nd-0RICUjpU_yVNVC1K0l8LkMQ3jvj5YhitKtGMH3kokPUhI8O2HU9ULDTXa8TYFVTm648__TUGSHPRleolpjFXIrZ2oNBy0aOBUgOQoQak7ubbyO1vv32aPmG399A4tOeQiiNw&h=wmP8fxCa44fyhmsJfagxR8qWjIZ-zYuK8gTBmtilHY8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw cache-control: - no-store, no-cache content-length: - - '2500' + - '2759' content-type: - application/json date: - - Thu, 12 Oct 2023 11:31:31 GMT + - Fri, 23 Feb 2024 01:32:35 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/146b87a1-8694-415b-8110-549601c4e9c1?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KXO3j4dHpVg5-lGEfTlxvDS1QjmqlhJYIPaMs0KAsN1eUPAMPjOSvLyTsm5PfJ9WphtPLgqtBhq3DaHt9vc0DNgxJCIGs2stjfuV9iDCkPfAb0q1CHt1nR2S2zQwZUHrXLZNaMvtIp-5Zug-qBXm_zoLN33K1Bf_R5h2HogHKKRDbwnGIrkcpQ08OYrvcHRNzeE8SkRTWEz3p26njfTUseZ05OzvYYE8ZO7-qFzHsVWhXW11k5GC0YsCi3nlt6WAOPJmRbLBsy8iNQOdV_WL6_xIxg7zgf-mGka8BKecQJLw11iamL7A-Ego-BgA9bqbttzayCu5bnBCEUTQSyMyhw&h=8KvE6hVSnfx1q5FeluKKVaWJG9BcAyxGZwXzGN_zn58 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: D91809BC28034058916C974287A57858 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:32:32Z' status: code: 200 message: Ok @@ -121,9 +121,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/146b87a1-8694-415b-8110-549601c4e9c1?api-version=2023-09-15-preview&t=638327070928432839&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=clsBWsFmpad3FAPfo7Cf-LbVIFfm7_caL8RwT01eH42MZ36p3fKFtXI48tyN9HdfYXYTINaiHNuITq1ST2-CmACM4A91g4dnxs4g4yo2DcGiF-ylBadvSfBYOGXrchT50pXAbwpk8NjwaVeI0vzduO8fHyG3IPOcEKZkmUFk99Um3XYAQIYUQQoIj-iu2HbkqE6hJk305Ljpu44Nd-0RICUjpU_yVNVC1K0l8LkMQ3jvj5YhitKtGMH3kokPUhI8O2HU9ULDTXa8TYFVTm648__TUGSHPRleolpjFXIrZ2oNBy0aOBUgOQoQak7ubbyO1vv32aPmG399A4tOeQiiNw&h=wmP8fxCa44fyhmsJfagxR8qWjIZ-zYuK8gTBmtilHY8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw response: body: string: '{"status":"Enqueued"}' @@ -135,21 +135,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:31:32 GMT + - Fri, 23 Feb 2024 01:32:36 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: CB90E513D5884965AE03227C7A827700 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:32:36Z' status: code: 200 message: Ok @@ -167,9 +165,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/146b87a1-8694-415b-8110-549601c4e9c1?api-version=2023-09-15-preview&t=638327070928432839&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=clsBWsFmpad3FAPfo7Cf-LbVIFfm7_caL8RwT01eH42MZ36p3fKFtXI48tyN9HdfYXYTINaiHNuITq1ST2-CmACM4A91g4dnxs4g4yo2DcGiF-ylBadvSfBYOGXrchT50pXAbwpk8NjwaVeI0vzduO8fHyG3IPOcEKZkmUFk99Um3XYAQIYUQQoIj-iu2HbkqE6hJk305Ljpu44Nd-0RICUjpU_yVNVC1K0l8LkMQ3jvj5YhitKtGMH3kokPUhI8O2HU9ULDTXa8TYFVTm648__TUGSHPRleolpjFXIrZ2oNBy0aOBUgOQoQak7ubbyO1vv32aPmG399A4tOeQiiNw&h=wmP8fxCa44fyhmsJfagxR8qWjIZ-zYuK8gTBmtilHY8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw response: body: string: '{"status":"Dequeued"}' @@ -181,21 +179,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:32:03 GMT + - Fri, 23 Feb 2024 01:33:06 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 491CDD2BB17F4CDB998E1F66E653F4A5 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:33:07Z' status: code: 200 message: Ok @@ -213,9 +209,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/146b87a1-8694-415b-8110-549601c4e9c1?api-version=2023-09-15-preview&t=638327070928432839&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=clsBWsFmpad3FAPfo7Cf-LbVIFfm7_caL8RwT01eH42MZ36p3fKFtXI48tyN9HdfYXYTINaiHNuITq1ST2-CmACM4A91g4dnxs4g4yo2DcGiF-ylBadvSfBYOGXrchT50pXAbwpk8NjwaVeI0vzduO8fHyG3IPOcEKZkmUFk99Um3XYAQIYUQQoIj-iu2HbkqE6hJk305Ljpu44Nd-0RICUjpU_yVNVC1K0l8LkMQ3jvj5YhitKtGMH3kokPUhI8O2HU9ULDTXa8TYFVTm648__TUGSHPRleolpjFXIrZ2oNBy0aOBUgOQoQak7ubbyO1vv32aPmG399A4tOeQiiNw&h=wmP8fxCa44fyhmsJfagxR8qWjIZ-zYuK8gTBmtilHY8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw response: body: string: '{"status":"Dequeued"}' @@ -227,21 +223,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:32:33 GMT + - Fri, 23 Feb 2024 01:33:36 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: CD444DC0F94247D4B64B2B3A1142C5BC Ref B: MNZ221060608045 Ref C: 2024-02-23T01:33:37Z' status: code: 200 message: Ok @@ -259,9 +253,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/146b87a1-8694-415b-8110-549601c4e9c1?api-version=2023-09-15-preview&t=638327070928432839&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=clsBWsFmpad3FAPfo7Cf-LbVIFfm7_caL8RwT01eH42MZ36p3fKFtXI48tyN9HdfYXYTINaiHNuITq1ST2-CmACM4A91g4dnxs4g4yo2DcGiF-ylBadvSfBYOGXrchT50pXAbwpk8NjwaVeI0vzduO8fHyG3IPOcEKZkmUFk99Um3XYAQIYUQQoIj-iu2HbkqE6hJk305Ljpu44Nd-0RICUjpU_yVNVC1K0l8LkMQ3jvj5YhitKtGMH3kokPUhI8O2HU9ULDTXa8TYFVTm648__TUGSHPRleolpjFXIrZ2oNBy0aOBUgOQoQak7ubbyO1vv32aPmG399A4tOeQiiNw&h=wmP8fxCa44fyhmsJfagxR8qWjIZ-zYuK8gTBmtilHY8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw response: body: string: '{"status":"Dequeued"}' @@ -273,21 +267,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:33:03 GMT + - Fri, 23 Feb 2024 01:34:06 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 12FCA01DB9C64E48998275D45EF0D043 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:34:07Z' status: code: 200 message: Ok @@ -305,9 +297,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/146b87a1-8694-415b-8110-549601c4e9c1?api-version=2023-09-15-preview&t=638327070928432839&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=clsBWsFmpad3FAPfo7Cf-LbVIFfm7_caL8RwT01eH42MZ36p3fKFtXI48tyN9HdfYXYTINaiHNuITq1ST2-CmACM4A91g4dnxs4g4yo2DcGiF-ylBadvSfBYOGXrchT50pXAbwpk8NjwaVeI0vzduO8fHyG3IPOcEKZkmUFk99Um3XYAQIYUQQoIj-iu2HbkqE6hJk305Ljpu44Nd-0RICUjpU_yVNVC1K0l8LkMQ3jvj5YhitKtGMH3kokPUhI8O2HU9ULDTXa8TYFVTm648__TUGSHPRleolpjFXIrZ2oNBy0aOBUgOQoQak7ubbyO1vv32aPmG399A4tOeQiiNw&h=wmP8fxCa44fyhmsJfagxR8qWjIZ-zYuK8gTBmtilHY8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw response: body: string: '{"status":"Dequeued"}' @@ -319,21 +311,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:33:34 GMT + - Fri, 23 Feb 2024 01:34:37 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: F5CB2A645EF0480D8AF2ACEB2B0A26AF Ref B: MNZ221060608045 Ref C: 2024-02-23T01:34:37Z' status: code: 200 message: Ok @@ -351,9 +341,9 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/146b87a1-8694-415b-8110-549601c4e9c1?api-version=2023-09-15-preview&t=638327070928432839&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=clsBWsFmpad3FAPfo7Cf-LbVIFfm7_caL8RwT01eH42MZ36p3fKFtXI48tyN9HdfYXYTINaiHNuITq1ST2-CmACM4A91g4dnxs4g4yo2DcGiF-ylBadvSfBYOGXrchT50pXAbwpk8NjwaVeI0vzduO8fHyG3IPOcEKZkmUFk99Um3XYAQIYUQQoIj-iu2HbkqE6hJk305Ljpu44Nd-0RICUjpU_yVNVC1K0l8LkMQ3jvj5YhitKtGMH3kokPUhI8O2HU9ULDTXa8TYFVTm648__TUGSHPRleolpjFXIrZ2oNBy0aOBUgOQoQak7ubbyO1vv32aPmG399A4tOeQiiNw&h=wmP8fxCa44fyhmsJfagxR8qWjIZ-zYuK8gTBmtilHY8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw response: body: string: '{"status":"Succeeded"}' @@ -365,21 +355,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:04 GMT + - Fri, 23 Feb 2024 01:35:07 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4C51C2B3D3B9416EBA180819B66C7D46 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:35:08Z' status: code: 200 message: Ok @@ -397,41 +385,39 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:33:29.627152Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:34:30.0560444Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2920' + - '3207' content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:05 GMT + - Fri, 23 Feb 2024 01:35:07 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4AD013F7DE49401284ACAF92F95FF94C Ref B: MNZ221060608045 Ref C: 2024-02-23T01:35:08Z' status: code: 200 message: Ok @@ -449,41 +435,39 @@ interactions: ParameterSetName: - -n -g --backup-policy-type --locations --capabilities User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:33:29.627152Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:34:30.0560444Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2920' + - '3207' content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:05 GMT + - Fri, 23 Feb 2024 01:35:08 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 01D89E9AE7874A4EB093724480EC3104 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:35:08Z' status: code: 200 message: Ok @@ -501,41 +485,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:33:29.627152Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:29.627152Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:34:30.0560444Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '2920' + - '3207' content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:06 GMT + - Fri, 23 Feb 2024 01:35:08 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 81FF98E75AA14594BC6DFCC0CE5D0636 Ref B: MNZ221060609025 Ref C: 2024-02-23T01:35:09Z' status: code: 200 message: Ok @@ -557,15 +539,15 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-04-15 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/fa65d701-e184-4f6d-8c87-e0867492d336?api-version=2023-09-15&t=638327072502248343&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=c1g_SWixb7mtHXOTftqVdDD7jntDi9ioZ52PhhjKjuyQGBTZliyJ7EWpFdr3dNpbMteekNSbQ1o7mFrX4mpOQBFqF0ELOTRvJMaE49RUKYBEjB73QmvRgew45CQuhb4Ot5391ZPkpARP8bcXJfSB-PgQJlGLVQwwhnyT99JuCbtdWNtEe2_a8k7f_oNALDmKn486dqyI2oWLj3oSxQFrRfepM-peC77vLKhpRkYPTvfn31ek9qzIagAVcRj4OIHEkSjtl-igZl8XkjqopGCQd4nrE21NxFRlj25Ou_Hnr_7O1cd5yuHG56sB8lu5b--0ogJKMIAA4mifsm0vwESVhA&h=se8BFqd_zCi1Rbrbzuv0Mib-a4ZAPPC1VO7Kyltj2NA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/cd3fb89f-f01c-41c5-a5ab-8b549bfa142d?api-version=2023-04-15&t=638442489107940895&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AuILpyTHdcAnv0fdVww9-NKjSwnBDHHG2FBP79Axue9t2Ki6LG1YTMKzjkb6Bl52uG71XKQNf_u1RKj130JYCE9rVOBiBzS-os_Anb9Z9tfPVAZloPcA4CcxAou9qF6SwEfM9fXRKhABK5XhDPr78oO3OVAcTMS9L4aJXYKzc64F8OL_bvbNH8WHNoDCJdtU3eD4dCg3uVO_s7KeDLyLrzOkiXFkD0RS6_0mCyl0wmuqoPXeCUso0h8B1BaD_82VdfWk0ET3Q2j9VjXyJFSU7rNWoQXgnCvd0wScCRG4NPvcC_cAbZMhxy9p7vTyFU476eQTgRFgXRAkdYlG8O_gCQ&h=exE0dss0op7Cixb1lz-vIh0jtN4LPkR255hspOuu3Fg cache-control: - no-store, no-cache content-length: @@ -573,21 +555,23 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:10 GMT + - Fri, 23 Feb 2024 01:35:10 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/fa65d701-e184-4f6d-8c87-e0867492d336?api-version=2023-09-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/cd3fb89f-f01c-41c5-a5ab-8b549bfa142d?api-version=2023-04-15&t=638442489108097172&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lFWooKjsqFlcn8eSkU3B9GzPbhsPprcqv38_0RiR4k4fmpLtQ_YsrDZO0APcVN9Mp4oDrO15-yY1TIudhN0CGuejmRxhKdBsdsc0zw2adyvIQ7HYk0T-gOm4At1tZQVR4j-GnTFYTcNvAJPEQ26WWaJZY4HWqLLePbvBKbUTZ0T2UUMOeJqJv80rRN9eKp1J8vxrXIXa8QjTB4hTR5DKM6p00jGiDOp06zd93InRhdRrEc4jyGyCT4ucYxzyyUFE4rZDXPSbOvzCeWBjjt4upQmZL9R96DR_m1O9tmwz1mqqv-w5-k9dLY3OGT8srPBPk_xBi4v4rAFPXldPCtwxBg&h=wrKrkJp1zNSJ_PrSxS_sPHYUYncfEUbjPxw_D-Inayg pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: EDBE7C51F5BD45F388F01DB48E02715A Ref B: MNZ221060608047 Ref C: 2024-02-23T01:35:10Z' status: code: 202 message: Accepted @@ -605,9 +589,9 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/fa65d701-e184-4f6d-8c87-e0867492d336?api-version=2023-09-15&t=638327072502248343&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=c1g_SWixb7mtHXOTftqVdDD7jntDi9ioZ52PhhjKjuyQGBTZliyJ7EWpFdr3dNpbMteekNSbQ1o7mFrX4mpOQBFqF0ELOTRvJMaE49RUKYBEjB73QmvRgew45CQuhb4Ot5391ZPkpARP8bcXJfSB-PgQJlGLVQwwhnyT99JuCbtdWNtEe2_a8k7f_oNALDmKn486dqyI2oWLj3oSxQFrRfepM-peC77vLKhpRkYPTvfn31ek9qzIagAVcRj4OIHEkSjtl-igZl8XkjqopGCQd4nrE21NxFRlj25Ou_Hnr_7O1cd5yuHG56sB8lu5b--0ogJKMIAA4mifsm0vwESVhA&h=se8BFqd_zCi1Rbrbzuv0Mib-a4ZAPPC1VO7Kyltj2NA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/cd3fb89f-f01c-41c5-a5ab-8b549bfa142d?api-version=2023-04-15&t=638442489107940895&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AuILpyTHdcAnv0fdVww9-NKjSwnBDHHG2FBP79Axue9t2Ki6LG1YTMKzjkb6Bl52uG71XKQNf_u1RKj130JYCE9rVOBiBzS-os_Anb9Z9tfPVAZloPcA4CcxAou9qF6SwEfM9fXRKhABK5XhDPr78oO3OVAcTMS9L4aJXYKzc64F8OL_bvbNH8WHNoDCJdtU3eD4dCg3uVO_s7KeDLyLrzOkiXFkD0RS6_0mCyl0wmuqoPXeCUso0h8B1BaD_82VdfWk0ET3Q2j9VjXyJFSU7rNWoQXgnCvd0wScCRG4NPvcC_cAbZMhxy9p7vTyFU476eQTgRFgXRAkdYlG8O_gCQ&h=exE0dss0op7Cixb1lz-vIh0jtN4LPkR255hspOuu3Fg response: body: string: '{"status":"Enqueued"}' @@ -619,21 +603,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:10 GMT + - Fri, 23 Feb 2024 01:35:10 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: B1799CDCEF424ABA9CD71F88D771853D Ref B: MNZ221060608047 Ref C: 2024-02-23T01:35:10Z' status: code: 200 message: Ok @@ -651,9 +633,9 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/fa65d701-e184-4f6d-8c87-e0867492d336?api-version=2023-09-15&t=638327072502248343&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=c1g_SWixb7mtHXOTftqVdDD7jntDi9ioZ52PhhjKjuyQGBTZliyJ7EWpFdr3dNpbMteekNSbQ1o7mFrX4mpOQBFqF0ELOTRvJMaE49RUKYBEjB73QmvRgew45CQuhb4Ot5391ZPkpARP8bcXJfSB-PgQJlGLVQwwhnyT99JuCbtdWNtEe2_a8k7f_oNALDmKn486dqyI2oWLj3oSxQFrRfepM-peC77vLKhpRkYPTvfn31ek9qzIagAVcRj4OIHEkSjtl-igZl8XkjqopGCQd4nrE21NxFRlj25Ou_Hnr_7O1cd5yuHG56sB8lu5b--0ogJKMIAA4mifsm0vwESVhA&h=se8BFqd_zCi1Rbrbzuv0Mib-a4ZAPPC1VO7Kyltj2NA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/cd3fb89f-f01c-41c5-a5ab-8b549bfa142d?api-version=2023-04-15&t=638442489107940895&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AuILpyTHdcAnv0fdVww9-NKjSwnBDHHG2FBP79Axue9t2Ki6LG1YTMKzjkb6Bl52uG71XKQNf_u1RKj130JYCE9rVOBiBzS-os_Anb9Z9tfPVAZloPcA4CcxAou9qF6SwEfM9fXRKhABK5XhDPr78oO3OVAcTMS9L4aJXYKzc64F8OL_bvbNH8WHNoDCJdtU3eD4dCg3uVO_s7KeDLyLrzOkiXFkD0RS6_0mCyl0wmuqoPXeCUso0h8B1BaD_82VdfWk0ET3Q2j9VjXyJFSU7rNWoQXgnCvd0wScCRG4NPvcC_cAbZMhxy9p7vTyFU476eQTgRFgXRAkdYlG8O_gCQ&h=exE0dss0op7Cixb1lz-vIh0jtN4LPkR255hspOuu3Fg response: body: string: '{"status":"Succeeded"}' @@ -665,21 +647,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:40 GMT + - Fri, 23 Feb 2024 01:35:41 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 202AEEE1AD304C859B010326C9C029AB Ref B: MNZ221060608047 Ref C: 2024-02-23T01:35:41Z' status: code: 200 message: Ok @@ -697,12 +677,12 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-04-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"x4pSAOeoU3Y=","_etag":"\"00000000-0000-0000-fd00-0990080201d9\"","_ts":1697110458}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"q5wEANNeZTA=","_etag":"\"00000000-0000-0000-65f8-91adb40601da\"","_ts":1708652123}}}' headers: cache-control: - no-store, no-cache @@ -711,21 +691,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:41 GMT + - Fri, 23 Feb 2024 01:35:41 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 528DB8B192A249C095F178F4F4B5970D Ref B: MNZ221060608047 Ref C: 2024-02-23T01:35:41Z' status: code: 200 message: Ok @@ -743,38 +721,36 @@ interactions: ParameterSetName: - --location --instance-id User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d?api-version=2024-02-15-preview response: body: - string: '{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East US - 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"cli000003","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}}' + string: '{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"cli000003","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","oldestRestorableTime":"2024-02-23T01:34:31Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z"}]}}' headers: cache-control: - no-store, no-cache content-length: - - '623' + - '641' content-type: - application/json date: - - Thu, 12 Oct 2023 11:34:42 GMT + - Fri, 23 Feb 2024 01:35:42 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 594A91E40C38454688E1C041A88A11E3 Ref B: MNZ221060610051 Ref C: 2024-02-23T01:35:42Z' status: code: 200 message: Ok @@ -790,1078 +766,834 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2024-02-15-preview response: body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","oldestRestorableTime":"2023-10-12T11:35:17Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","oldestRestorableTime":"2023-10-12T11:35:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"cli000003","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","oldestRestorableTime":"2023-10-12T11:35:19+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:38:44Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:38:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"cli000003","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","oldestRestorableTime":"2024-02-23T01:34:31Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-16T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T00:34:40Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-16T01:39:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-01-24T01:39:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-17T01:28:01Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' headers: cache-control: - no-cache content-length: - - '297277' + - '238473' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Oct 2023 11:38:49 GMT + - Fri, 23 Feb 2024 01:39:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-original-request-ids: @@ -1905,7 +1637,8 @@ interactions: - '' - '' - '' - - '' + x-msedge-ref: + - 'Ref A: FA422E6E4C3A4554AFD11CC19CE9CDD9 Ref B: MNZ221060608023 Ref C: 2024-02-23T01:39:43Z' status: code: 200 message: OK @@ -1921,46 +1654,45 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b/restorableTableResources?api-version=2023-09-15-preview&restoreLocation=eastus2&restoreTimestampInUtc=2023-10-12%2011%3A37%3A30%2B00%3A00 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d/restorableTableResources?api-version=2024-02-15-preview&restoreLocation=westcentralus&restoreTimestampInUtc=2024-02-23%2001%3A38%3A31%2B00%3A00 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b/restorableTableResources/cli000002","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTableResources","name":"cli000002"}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d/restorableTableResources/cli000002","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTableResources","name":"cli000002"}]}' headers: cache-control: - no-store, no-cache content-length: - - '331' + - '337' content-type: - application/json date: - - Thu, 12 Oct 2023 11:38:50 GMT + - Fri, 23 Feb 2024 01:39:47 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: E0588A6892E04ABD95D0CBD6B9849202 Ref B: MNZ221060609045 Ref C: 2024-02-23T01:39:47Z' status: code: 200 message: Ok - request: - body: '{"location": "East US 2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0}], "databaseAccountOfferType": + body: '{"location": "West Central US", "kind": "GlobalDocumentDB", "properties": + {"locations": [{"locationName": "westcentralus", "failoverPriority": 0}], "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Restore", "restoreParameters": - {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b", - "restoreTimestampInUtc": "2023-10-12T11:37:30.000Z", "restoreMode": "PointInTime"}}}' + {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d", + "restoreTimestampInUtc": "2024-02-23T01:38:31.000Z", "restoreWithTtlDisabled": + true, "restoreMode": "PointInTime"}}}' headers: Accept: - application/json @@ -1971,54 +1703,52 @@ interactions: Connection: - keep-alive Content-Length: - - '513' + - '563' Content-Type: - application/json ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:38:53.6114487Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"86847e11-666e-4b55-ac44-8804d38f49cb","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","restoreTimestampInUtc":"2023-10-12T11:37:30Z","sourceBackupLocation":"East - US 2","tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:38:53.6114487Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:38:53.6114487Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:38:53.6114487Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:38:53.6114487Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:39:49.5236991Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bc3cb286-1d63-4180-98dd-8a047430c763","createMode":"Restore","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","restoreTimestampInUtc":"2024-02-23T01:38:31Z","sourceBackupLocation":"West + Central US","restoreWithTtlDisabled":true,"tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:39:49.5236991Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:39:49.5236991Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:39:49.5236991Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:39:49.5236991Z"}}},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww cache-control: - no-store, no-cache content-length: - - '2894' + - '3220' content-type: - application/json date: - - Thu, 12 Oct 2023 11:38:55 GMT + - Fri, 23 Feb 2024 01:39:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923396668&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jOtxe6o12U9KFLqY_G1kcviuoa8SX5pbRh9U07ItoMB3CjcXnNn3Rcxz_yE-Hc-9QumHeRIJGMeINaGqiUig_dwgvJfEWb7abzfC7lRUg8HRBTYt3bq5NXXZeE2I6fOcBSM-em6dZ3jHWwvnP1wQ2Qtmaj3JhhlshWgjw4bkAgh_QQs4Rx4ndxegs10d83gmffpAAIOoN6QpPv3MOJVGFaSA06dxoX0xB0TrnEBH19ILCaC2Q1oTvMTSWy6A8O8N823aBD56ClQYYh8tLIyAgrf8QBxFOmh5-2s51N4Z7Z53adO6Ctr8Is0b1CbWltGUWpKQDx7cWWI4Hdxbn8oh0g&h=C9OeR7IVQuWmHNC--vQTlJPbmGmS_L2jH64sjpCqozY pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 1592407BF57D4CF7A374733D8A3D2292 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:39:48Z' status: code: 200 message: Ok @@ -2034,11 +1764,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Enqueued"}' @@ -2050,205 +1780,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:38:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:40:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:40:56 GMT + - Fri, 23 Feb 2024 01:39:52 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2F3991EF577440BB94DB68A80FB4D4F3 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:39:52Z' status: code: 200 message: Ok @@ -2264,11 +1808,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2280,21 +1824,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:41:27 GMT + - Fri, 23 Feb 2024 01:40:23 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: EA7201461E4E40E6B0986801BC4751E3 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:40:22Z' status: code: 200 message: Ok @@ -2310,11 +1852,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2326,21 +1868,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:41:57 GMT + - Fri, 23 Feb 2024 01:40:53 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 19663F5B6C0140A7AE43605F169AD4FA Ref B: MNZ221060609053 Ref C: 2024-02-23T01:40:53Z' status: code: 200 message: Ok @@ -2356,11 +1896,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2372,21 +1912,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:42:27 GMT + - Fri, 23 Feb 2024 01:41:23 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9A20A753B38E497586A9FC1463660D7F Ref B: MNZ221060609053 Ref C: 2024-02-23T01:41:23Z' status: code: 200 message: Ok @@ -2402,11 +1940,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2418,21 +1956,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:42:58 GMT + - Fri, 23 Feb 2024 01:41:53 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: B447D207FC7D4C31AF0EFC57A669C9E1 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:41:53Z' status: code: 200 message: Ok @@ -2448,11 +1984,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2464,21 +2000,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:43:28 GMT + - Fri, 23 Feb 2024 01:42:24 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: B68990266E564A41A6E4A6584457AE6B Ref B: MNZ221060609053 Ref C: 2024-02-23T01:42:24Z' status: code: 200 message: Ok @@ -2494,11 +2028,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2510,21 +2044,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:43:59 GMT + - Fri, 23 Feb 2024 01:42:54 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 23F150D0D6F94849BF974A183FEE35E9 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:42:54Z' status: code: 200 message: Ok @@ -2540,11 +2072,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2556,21 +2088,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:44:29 GMT + - Fri, 23 Feb 2024 01:43:24 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: FCE61D481CCF4BF0BE44EC3A1C4008CF Ref B: MNZ221060609053 Ref C: 2024-02-23T01:43:24Z' status: code: 200 message: Ok @@ -2586,11 +2116,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2602,21 +2132,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:44:59 GMT + - Fri, 23 Feb 2024 01:43:55 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: D856A67484CE486D82485349CF1A7EEE Ref B: MNZ221060609053 Ref C: 2024-02-23T01:43:55Z' status: code: 200 message: Ok @@ -2632,11 +2160,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2648,21 +2176,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:45:30 GMT + - Fri, 23 Feb 2024 01:44:25 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 63DEA409E36548279BA733E6CF7D9886 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:44:25Z' status: code: 200 message: Ok @@ -2678,11 +2204,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2694,21 +2220,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:46:01 GMT + - Fri, 23 Feb 2024 01:44:55 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2501D5DF18FF4DD6A060AA96B9C4527E Ref B: MNZ221060609053 Ref C: 2024-02-23T01:44:55Z' status: code: 200 message: Ok @@ -2724,11 +2248,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2740,21 +2264,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:46:32 GMT + - Fri, 23 Feb 2024 01:45:25 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: F52EDF6C1AF245618BD0A582256CB543 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:45:26Z' status: code: 200 message: Ok @@ -2770,11 +2292,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2786,21 +2308,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:47:02 GMT + - Fri, 23 Feb 2024 01:45:56 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9167DBF0E48F45EB92B4B545B8DCBC9C Ref B: MNZ221060609053 Ref C: 2024-02-23T01:45:56Z' status: code: 200 message: Ok @@ -2816,11 +2336,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2832,21 +2352,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:47:32 GMT + - Fri, 23 Feb 2024 01:46:26 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4A0DA1DB81A0492BB6A88E7C290A5352 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:46:26Z' status: code: 200 message: Ok @@ -2862,11 +2380,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2878,21 +2396,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:48:03 GMT + - Fri, 23 Feb 2024 01:46:56 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: F9E0CDC7447B4AF79D81973F2FC257DD Ref B: MNZ221060609053 Ref C: 2024-02-23T01:46:56Z' status: code: 200 message: Ok @@ -2908,11 +2424,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2924,21 +2440,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:48:32 GMT + - Fri, 23 Feb 2024 01:47:26 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: FC23471B92D64FE9826B920FB7883F7A Ref B: MNZ221060609053 Ref C: 2024-02-23T01:47:27Z' status: code: 200 message: Ok @@ -2954,11 +2468,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -2970,21 +2484,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:49:04 GMT + - Fri, 23 Feb 2024 01:47:57 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 34D7D1CCA6C84CDBACFDC6CD3C6417DD Ref B: MNZ221060609053 Ref C: 2024-02-23T01:47:57Z' status: code: 200 message: Ok @@ -3000,11 +2512,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -3016,21 +2528,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:49:34 GMT + - Fri, 23 Feb 2024 01:48:27 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 924AE12DD23A49108EAF881B223A19B0 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:48:27Z' status: code: 200 message: Ok @@ -3046,11 +2556,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -3062,21 +2572,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:50:04 GMT + - Fri, 23 Feb 2024 01:48:57 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 817EC6C30D1340D19A06B180A2B97B16 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:48:57Z' status: code: 200 message: Ok @@ -3092,11 +2600,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -3108,21 +2616,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:50:35 GMT + - Fri, 23 Feb 2024 01:49:27 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: E6E83003C80D4A01AFB9D0716AF779A4 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:49:28Z' status: code: 200 message: Ok @@ -3138,11 +2644,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -3154,21 +2660,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:05 GMT + - Fri, 23 Feb 2024 01:49:58 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 019F4B517BDA48298668E001F4889590 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:49:58Z' status: code: 200 message: Ok @@ -3184,11 +2688,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -3200,21 +2704,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:51:36 GMT + - Fri, 23 Feb 2024 01:50:28 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 724334EFA5B64C36B234BEF65965B9EA Ref B: MNZ221060609053 Ref C: 2024-02-23T01:50:28Z' status: code: 200 message: Ok @@ -3230,11 +2732,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Dequeued"}' @@ -3246,21 +2748,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:52:06 GMT + - Fri, 23 Feb 2024 01:50:58 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: B2FF4061674943E0B7753179EF78FE14 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:50:59Z' status: code: 200 message: Ok @@ -3276,11 +2776,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1e33f6d2-6d9a-4197-9144-702376302a18?api-version=2023-09-15-preview&t=638327075358014707&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sshQKT8SoxwidQNWoVwhj3JpIQkZ82oR5qEp_MqJLmsx46OYLKe7s9tfqWYaBkpRSyX8RtFQgL9lfU3yCTRd469pnlyGxBCXgf-Csnop3mczg-oi44JUfcQEZrp0GHMZDETxh07zGjoC60R2kmU1SpLQrWeNUpHBZu_DhljIpjECIwJJVjEyQk8zkVv3_M8ZKwb9JzycYxx-5qaFeIuSo3zbGhuXwRVL_bNNhucowhtPiM494R32j_DvBJ54G9YK51S7hLIj7N0qq7v3ZEfAXzEZ5NhFpiRfzI_BdCted1bIInuKa6nT7yKKyk4PLUT2t_WdHqLIXRdC3cU39Q7yQA&h=RXh67t6blAujYzoKqbT0oyreru2cY05lUub1TvMNYXo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww response: body: string: '{"status":"Succeeded"}' @@ -3292,21 +2792,19 @@ interactions: content-type: - application/json date: - - Thu, 12 Oct 2023 11:52:36 GMT + - Fri, 23 Feb 2024 01:51:29 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5FF7339AA85D43F992D08A3BBFC650A6 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:51:29Z' status: code: 200 message: Ok @@ -3322,44 +2820,42 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:52:17.7240333Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"86847e11-666e-4b55-ac44-8804d38f49cb","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","restoreTimestampInUtc":"2023-10-12T11:37:30Z","sourceBackupLocation":"East - US 2","tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:51:00.9538897Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bc3cb286-1d63-4180-98dd-8a047430c763","createMode":"Restore","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","restoreTimestampInUtc":"2024-02-23T01:38:31Z","sourceBackupLocation":"West + Central US","restoreWithTtlDisabled":true,"tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '3252' + - '3596' content-type: - application/json date: - - Thu, 12 Oct 2023 11:52:37 GMT + - Fri, 23 Feb 2024 01:51:29 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7E03F7B3AC9C4936B7B0BF314AEF56D1 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:51:29Z' status: code: 200 message: Ok @@ -3375,44 +2871,42 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -a --restore-timestamp --location + - -n -g -a --restore-timestamp --location --disable-ttl User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:52:17.7240333Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"86847e11-666e-4b55-ac44-8804d38f49cb","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","restoreTimestampInUtc":"2023-10-12T11:37:30Z","sourceBackupLocation":"East - US 2","tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:51:00.9538897Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bc3cb286-1d63-4180-98dd-8a047430c763","createMode":"Restore","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","restoreTimestampInUtc":"2024-02-23T01:38:31Z","sourceBackupLocation":"West + Central US","restoreWithTtlDisabled":true,"tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '3252' + - '3596' content-type: - application/json date: - - Thu, 12 Oct 2023 11:52:37 GMT + - Fri, 23 Feb 2024 01:51:30 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 96043E5E7A344EC6B7305ADCB6EECB15 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:51:30Z' status: code: 200 message: Ok @@ -3430,42 +2924,40 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:52:17.7240333Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"86847e11-666e-4b55-ac44-8804d38f49cb","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","restoreTimestampInUtc":"2023-10-12T11:37:30Z","sourceBackupLocation":"East - US 2","tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:17.7240333Z"}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:51:00.9538897Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bc3cb286-1d63-4180-98dd-8a047430c763","createMode":"Restore","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","restoreTimestampInUtc":"2024-02-23T01:38:31Z","sourceBackupLocation":"West + Central US","restoreWithTtlDisabled":true,"tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache content-length: - - '3252' + - '3596' content-type: - application/json date: - - Thu, 12 Oct 2023 11:52:39 GMT + - Fri, 23 Feb 2024 01:51:31 GMT pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-msedge-ref: + - 'Ref A: 515C432391F04B529B2F49CC804B8CDA Ref B: MNZ221060608025 Ref C: 2024-02-23T01:51:31Z' status: code: 200 message: Ok diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py index 0f725d3dccd..53fdfcef007 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py @@ -109,8 +109,7 @@ def test_cosmosdb_sql_normal_database_restore(self, resource_group): restore_ts_string = datetime.datetime.utcnow().isoformat() self.kwargs.update({ - 'rts': restore_ts_string, - 'dt': True + 'rts': restore_ts_string }) assert self.cmd('az cosmosdb sql database exists -g {rg} -a {acc} -n {db_name}').get_output_in_json() @@ -119,7 +118,7 @@ def test_cosmosdb_sql_normal_database_restore(self, resource_group): database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() assert len(database_list) == 0 - self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name} --restore-timestamp {rts} --disable-ttl {dt}') + self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name} --restore-timestamp {rts}') database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() assert database_restore["name"] == db_name @@ -132,7 +131,7 @@ def test_cosmosdb_sql_normal_database_restore(self, resource_group): @AllowLargeResponse() - @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_sql_shared_database_restore') + @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_sql_shared_database_restore', location='westcentralus') def test_cosmosdb_sql_shared_database_restore(self, resource_group): db_name = self.create_random_name(prefix='cli', length=15) ctn_name = self.create_random_name(prefix='cli', length=15) @@ -140,8 +139,9 @@ def test_cosmosdb_sql_shared_database_restore(self, resource_group): unique_key_policy = '"{\\"uniqueKeys\\": [{\\"paths\\": [\\"/path/to/key1\\"]}, {\\"paths\\": [\\"/path/to/key2\\"]}]}"' conflict_resolution_policy = '"{\\"mode\\": \\"lastWriterWins\\", \\"conflictResolutionPath\\": \\"/path\\"}"' indexing = '"{\\"indexingMode\\": \\"consistent\\", \\"automatic\\": true, \\"includedPaths\\": [{\\"path\\": \\"/*\\"}], \\"excludedPaths\\": [{\\"path\\": \\"/headquarters/employees/?\\"}]}"' - location = "WestUS" + location = "WestCentralUS" tp1 = 1000 + ttl = 1800 self.kwargs.update({ 'acc': self.create_random_name(prefix='cli', length=15), @@ -152,7 +152,8 @@ def test_cosmosdb_sql_shared_database_restore(self, resource_group): "conflict_resolution": conflict_resolution_policy, "indexing": indexing, 'loc': location, - 'tp1': tp1 + 'tp1': tp1, + 'ttl': ttl }) self.cmd('az cosmosdb create -n {acc} -g {rg} --backup-policy-type Continuous --locations regionName={loc}') @@ -160,10 +161,11 @@ def test_cosmosdb_sql_shared_database_restore(self, resource_group): assert not self.cmd('az cosmosdb sql container exists -g {rg} -a {acc} -d {db_name} -n {ctn_name}').get_output_in_json() - container_create = self.cmd('az cosmosdb sql container create -g {rg} -a {acc} -d {db_name} -n {ctn_name} -p {part} --unique-key-policy {unique_key} --conflict-resolution-policy {conflict_resolution} --idx {indexing}').get_output_in_json() + container_create = self.cmd('az cosmosdb sql container create -g {rg} -a {acc} -d {db_name} -n {ctn_name} -p {part} --unique-key-policy {unique_key} --conflict-resolution-policy {conflict_resolution} --idx {indexing} --ttl {ttl}').get_output_in_json() assert container_create["name"] == ctn_name assert container_create["resource"]["partitionKey"]["paths"][0] == partition_key + assert container_create["resource"]["defaultTtl"] == ttl assert len(container_create["resource"]["uniqueKeyPolicy"]["uniqueKeys"]) == 2 assert container_create["resource"]["conflictResolutionPolicy"]["mode"] == "lastWriterWins" assert container_create["resource"]["indexingPolicy"]["excludedPaths"][0]["path"] == "/headquarters/employees/?" @@ -177,7 +179,8 @@ def test_cosmosdb_sql_shared_database_restore(self, resource_group): restore_ts_string = datetime.datetime.utcnow().isoformat() self.kwargs.update({ - 'rts': restore_ts_string + 'rts': restore_ts_string, + 'dt': True }) import time time.sleep(300) @@ -201,7 +204,7 @@ def test_cosmosdb_sql_shared_database_restore(self, resource_group): import time time.sleep(500) - self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name} --restore-timestamp {rts}') + self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name} --restore-timestamp {rts} --disable-ttl {dt}') database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() assert database_restore["name"] == db_name @@ -211,6 +214,7 @@ def test_cosmosdb_sql_shared_database_restore(self, resource_group): container_show = self.cmd('az cosmosdb sql container show -g {rg} -a {acc} -d {db_name} -n {ctn_name}').get_output_in_json() assert container_show["name"] == ctn_name + assert container_show["resource"]["defaultTtl"] == None self.cmd('az cosmosdb sql database delete -g {rg} -a {acc} -n {db_name} --yes') database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-pitr_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-pitr_scenario.py index d9886f5d8b7..95df5175b9b 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-pitr_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-pitr_scenario.py @@ -188,7 +188,7 @@ def test_cosmosdb_table_account_restore_using_create(self, resource_group): assert restored_account['restoreParameters']['restoreSource'] == restorable_database_account['id'] assert restored_account['restoreParameters']['restoreTimestampInUtc'] == restore_ts_string - @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_table_account_restore_command', location='eastus2') + @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_table_account_restore_command', location='westcentralus') @AllowLargeResponse(size_kb=9999) def test_cosmosdb_table_account_restore_command(self, resource_group): table = self.create_random_name(prefix='cli', length=15) @@ -197,7 +197,7 @@ def test_cosmosdb_table_account_restore_command(self, resource_group): 'acc': self.create_random_name(prefix='cli', length=15), 'restored_acc': self.create_random_name(prefix='cli', length=15), 'table': table, - 'loc': 'eastus2' + 'loc': 'westcentralus' }) self.cmd('az cosmosdb create -n {acc} -g {rg} --backup-policy-type Continuous --locations regionName={loc} --capabilities EnableTable') @@ -227,6 +227,7 @@ def test_cosmosdb_table_account_restore_command(self, resource_group): assert restored_account['restoreParameters']['restoreSource'] == restorable_database_account['id'] assert restored_account['restoreParameters']['restoreTimestampInUtc'] == restore_ts_string + assert restored_account['restoreParameters']['restoreWithTtlDisabled'] == True @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_table_restorable_commands', location='eastus2') @AllowLargeResponse(size_kb=9999) From ebfcbedcd87373f2db33d3de8f5d216e7c6731b4 Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Fri, 23 Feb 2024 12:24:44 -0800 Subject: [PATCH 16/37] Update history file --- src/cosmosdb-preview/HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cosmosdb-preview/HISTORY.rst b/src/cosmosdb-preview/HISTORY.rst index c93c816aebf..c572ed4d2ab 100644 --- a/src/cosmosdb-preview/HISTORY.rst +++ b/src/cosmosdb-preview/HISTORY.rst @@ -4,6 +4,7 @@ Release History =============== 0.27.0 * Add support for Per-Region Per-Partition Autoscale. '--enable-per-region-per-partition-autoscale' parameter can be used during account create/update. +* Add support for Restore with Time-To-Live Disabled. '--disable-ttl' parameter can be used during restore. * Add support for online mode in container copy job. ++++++ From 3f493c794afbe28bfc1d789247041c7f509ba0a8 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Wed, 28 Feb 2024 15:59:42 -0600 Subject: [PATCH 17/37] add missing changes from stable https://github.com/Azure/azure-cli/pull/26226 --- .../azext_cosmosdb_preview/_params.py | 2 +- .../azext_cosmosdb_preview/custom.py | 18 +++++------------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index deb593116ad..d4c7b203714 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -324,7 +324,7 @@ def load_arguments(self, _): c.argument('virtual_network_rules', nargs='+', validator=validate_virtual_network_rules, help='ACL\'s for virtual network') c.argument('enable_multiple_write_locations', arg_type=get_three_state_flag(), help="Enable Multiple Write Locations") c.argument('disable_key_based_metadata_write_access', arg_type=get_three_state_flag(), help="Disable write operations on metadata resources (databases, containers, throughput) via account keys") - c.argument('enable_public_network', options_list=['--enable-public-network', '-e'], arg_type=get_three_state_flag(), help="Enable or disable public network access to server.") + c.argument('public_network_access', options_list=['--public-network-access', '-p'], arg_type=get_enum_type(['ENABLED', 'DISABLED', 'SECUREDBYPERIMETER']), help="Sets public network access in server to either Enabled, Disabled, or SecuredByPerimeter.") c.argument('enable_analytical_storage', arg_type=get_three_state_flag(), help="Flag to enable log storage on the account.") c.argument('network_acl_bypass', arg_type=get_enum_type(NetworkAclBypass), options_list=['--network-acl-bypass'], help="Flag to enable or disable Network Acl Bypass.") c.argument('network_acl_bypass_resource_ids', nargs='+', options_list=['--network-acl-bypass-resource-ids', '-i'], help="List of Resource Ids to allow Network Acl Bypass.") diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 7576bd3c3e7..fab0e2d3fc3 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -756,7 +756,7 @@ def cli_cosmosdb_create(cmd, enable_multiple_write_locations=None, disable_key_based_metadata_write_access=None, key_uri=None, - enable_public_network=None, + public_network_access=None, enable_analytical_storage=None, enable_free_tier=None, server_version=None, @@ -812,7 +812,7 @@ def cli_cosmosdb_create(cmd, enable_multiple_write_locations=enable_multiple_write_locations, disable_key_based_metadata_write_access=disable_key_based_metadata_write_access, key_uri=key_uri, - enable_public_network=enable_public_network, + public_network_access=public_network_access, enable_analytical_storage=enable_analytical_storage, enable_free_tier=enable_free_tier, server_version=server_version, @@ -856,7 +856,7 @@ def cli_cosmosdb_update(client, virtual_network_rules=None, enable_multiple_write_locations=None, disable_key_based_metadata_write_access=None, - enable_public_network=None, + public_network_access=None, enable_analytical_storage=None, network_acl_bypass=None, network_acl_bypass_resource_ids=None, @@ -897,10 +897,6 @@ def cli_cosmosdb_update(client, max_staleness_prefix=max_staleness_prefix, max_interval_in_seconds=max_interval) - public_network_access = None - if enable_public_network is not None: - public_network_access = 'Enabled' if enable_public_network else 'Disabled' - api_properties = {'ServerVersion': server_version} backup_policy = None @@ -1124,7 +1120,7 @@ def cli_cosmosdb_restore(cmd, gremlin_databases_to_restore=gremlin_databases_to_restore, tables_to_restore=tables_to_restore, arm_location=target_restorable_account.location, - enable_public_network=enable_public_network, + public_network_access=enable_public_network, source_backup_location=source_backup_location, disable_ttl=disable_ttl) @@ -1148,7 +1144,7 @@ def _create_database_account(client, enable_multiple_write_locations=None, disable_key_based_metadata_write_access=None, key_uri=None, - enable_public_network=None, + public_network_access=None, enable_analytical_storage=None, enable_free_tier=None, server_version=None, @@ -1186,10 +1182,6 @@ def _create_database_account(client, locations = [] locations.append(Location(location_name=arm_location, failover_priority=0, is_zone_redundant=False)) - public_network_access = None - if enable_public_network is not None: - public_network_access = 'Enabled' if enable_public_network else 'Disabled' - managed_service_identity = None SYSTEM_ID = '[system]' enable_system = False From e53c8c6255ff13274994062e104dfc7e26161f58 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Wed, 28 Feb 2024 16:04:16 -0600 Subject: [PATCH 18/37] add stable changes https://github.com/Azure/azure-cli/pull/27175/files --- src/cosmosdb-preview/azext_cosmosdb_preview/_params.py | 2 +- src/cosmosdb-preview/azext_cosmosdb_preview/custom.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index d4c7b203714..054a123cd4e 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -355,7 +355,7 @@ def load_arguments(self, _): c.argument('tables_to_restore', nargs='+', action=CreateTableRestoreResource, is_preview=True) c.argument('assign_identity', nargs='*', help="Assign system or user assigned identities separated by spaces. Use '[system]' to refer system assigned identity.") c.argument('default_identity', help="The primary identity to access key vault in CMK related features. e.g. 'FirstPartyIdentity', 'SystemAssignedIdentity' and more.") - c.argument('enable_public_network', options_list=['--enable-public-network', '-e'], arg_type=get_three_state_flag(), help="Enable or disable public network access to server.", is_preview=True) + c.argument('public_network_access', options_list=['--public-network-access', '-p'], arg_type=get_enum_type(['ENABLED', 'DISABLED']), help="Sets public network access in server to either Enabled or Disabled.") c.argument('source_backup_location', help="This is the location of the source account where backups are located. Provide this value if the source and target are in different locations.", is_preview=True) c.argument('disable_ttl', options_list=['--disable-ttl', '-dt'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview=True) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index fab0e2d3fc3..ffa8f8a7577 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -1012,7 +1012,7 @@ def cli_cosmosdb_restore(cmd, databases_to_restore=None, gremlin_databases_to_restore=None, tables_to_restore=None, - enable_public_network=None, + public_network_access=None, source_backup_location=None, disable_ttl=None): restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) @@ -1120,7 +1120,7 @@ def cli_cosmosdb_restore(cmd, gremlin_databases_to_restore=gremlin_databases_to_restore, tables_to_restore=tables_to_restore, arm_location=target_restorable_account.location, - public_network_access=enable_public_network, + public_network_access=public_network_access, source_backup_location=source_backup_location, disable_ttl=disable_ttl) From f779e16c73a7dd8cbb3cadb463ab1160423be846 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Wed, 28 Feb 2024 16:29:15 -0600 Subject: [PATCH 19/37] https://github.com/Azure/azure-cli/pull/27322/files --- .../azext_cosmosdb_preview/_params.py | 6 ++++-- .../azext_cosmosdb_preview/custom.py | 18 ++++++++++++------ 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 054a123cd4e..4f062be3fb9 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -29,7 +29,7 @@ CreatePhysicalPartitionIdListAction) from azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.models import ( - ContinuousTier, DefaultPriorityLevel + ContinuousTier, DefaultPriorityLevel, MinimalTlsVersion ) from azure.cli.core.util import shell_safe_json_parse @@ -307,6 +307,7 @@ def load_arguments(self, _): c.argument('databases_to_restore', nargs='+', action=CreateDatabaseRestoreResource, is_preview=True, arg_group='Restore') c.argument('gremlin_databases_to_restore', nargs='+', action=CreateGremlinDatabaseRestoreResource, is_preview=True, arg_group='Restore') c.argument('tables_to_restore', nargs='+', action=CreateTableRestoreResource, is_preview=True, arg_group='Restore') + c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.") for scope in ['cosmosdb create', 'cosmosdb update']: with self.argument_context(scope) as c: @@ -337,10 +338,11 @@ def load_arguments(self, _): c.argument('backup_policy_type', arg_type=get_enum_type(BackupPolicyType), help="The type of backup policy of the account to create", arg_group='Backup Policy') c.argument('continuous_tier', arg_type=get_enum_type(ContinuousTier), help="The tier of Continuous backup", arg_group='Backup Policy') c.argument('enable_materialized_views', options_list=['--enable-materialized-views', '--enable-mv'], arg_type=get_three_state_flag(), help="Flag to enable MaterializedViews on the account.", is_preview=True) - c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.", is_preview=True) + c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.") c.argument('enable_priority_based_execution', options_list=['--enable-priority-based-execution', '--enable-pbe'], arg_type=get_three_state_flag(), help="Flag to enable priority based execution on the account.", is_preview=True) c.argument('default_priority_level', arg_type=get_enum_type(DefaultPriorityLevel), help="Default Priority Level of Request if not specified.", is_preview=True) c.argument('enable_per_region_per_partition_autoscale', arg_type=get_three_state_flag(), help="Enable or disable PerRegionPerPartitionAutoscale.", is_preview=True) + c.argument('minimal_tls_version', arg_type=get_enum_type(MinimalTlsVersion), help="Indicates the minimum allowed TLS version") with self.argument_context('cosmosdb update') as c: c.argument('key_uri', help="The URI of the key vault", is_preview=True) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index ffa8f8a7577..f78068f0e0f 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -780,7 +780,8 @@ def cli_cosmosdb_create(cmd, enable_burst_capacity=None, enable_priority_based_execution=None, default_priority_level=None, - enable_per_region_per_partition_autoscale=None): + enable_per_region_per_partition_autoscale=None, + minimal_tls_version=None): """Create a new Azure Cosmos DB database account.""" from azure.cli.core.commands.client_factory import get_mgmt_service_client @@ -837,7 +838,8 @@ def cli_cosmosdb_create(cmd, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, - enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale) + enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, + minimal_tls_version=minimal_tls_version) # pylint: disable=too-many-branches @@ -872,7 +874,8 @@ def cli_cosmosdb_update(client, enable_burst_capacity=None, enable_priority_based_execution=None, default_priority_level=None, - enable_per_region_per_partition_autoscale=None): + enable_per_region_per_partition_autoscale=None, + minimal_tls_version=None): """Update an existing Azure Cosmos DB database account. """ existing = client.get(resource_group_name, account_name) @@ -962,7 +965,8 @@ def cli_cosmosdb_update(client, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, - enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale) + enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, + minimal_tls_version=minimal_tls_version) async_docdb_update = client.begin_update(resource_group_name, account_name, params) docdb_account = async_docdb_update.result() @@ -1171,7 +1175,8 @@ def _create_database_account(client, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - disable_ttl=None): + disable_ttl=None, + minimal_tls_version=None): consistency_policy = None if default_consistency_level is not None: consistency_policy = ConsistencyPolicy(default_consistency_level=default_consistency_level, @@ -1309,7 +1314,8 @@ def _create_database_account(client, enable_burst_capacity=enable_burst_capacity, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, - enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale + enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, + minimal_tls_version=minimal_tls_version ) async_docdb_create = client.begin_create_or_update(resource_group_name, account_name, params) From f42f44ff48ff8ae1e3bc42d579e5ad331d1ed132 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Wed, 28 Feb 2024 17:01:32 -0600 Subject: [PATCH 20/37] add missing stable changes from https://github.com/Azure/azure-cli/pull/26392/files --- .../azext_cosmosdb_preview/_params.py | 2 ++ .../azext_cosmosdb_preview/custom.py | 18 ++++++++++++------ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 4f062be3fb9..13a1e5b1553 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -308,6 +308,7 @@ def load_arguments(self, _): c.argument('gremlin_databases_to_restore', nargs='+', action=CreateGremlinDatabaseRestoreResource, is_preview=True, arg_group='Restore') c.argument('tables_to_restore', nargs='+', action=CreateTableRestoreResource, is_preview=True, arg_group='Restore') c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.") + c.argument('enable_partition_merge', arg_type=get_three_state_flag(), help="Flag to enable partition merge on the account.") for scope in ['cosmosdb create', 'cosmosdb update']: with self.argument_context(scope) as c: @@ -343,6 +344,7 @@ def load_arguments(self, _): c.argument('default_priority_level', arg_type=get_enum_type(DefaultPriorityLevel), help="Default Priority Level of Request if not specified.", is_preview=True) c.argument('enable_per_region_per_partition_autoscale', arg_type=get_three_state_flag(), help="Enable or disable PerRegionPerPartitionAutoscale.", is_preview=True) c.argument('minimal_tls_version', arg_type=get_enum_type(MinimalTlsVersion), help="Indicates the minimum allowed TLS version") + c.argument('enable_partition_merge', arg_type=get_three_state_flag(), help="Flag to enable partition merge on the account.") with self.argument_context('cosmosdb update') as c: c.argument('key_uri', help="The URI of the key vault", is_preview=True) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index f78068f0e0f..0567e0612ad 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -781,7 +781,8 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - minimal_tls_version=None): + minimal_tls_version=None, + enable_partition_merge=None): """Create a new Azure Cosmos DB database account.""" from azure.cli.core.commands.client_factory import get_mgmt_service_client @@ -839,7 +840,8 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - minimal_tls_version=minimal_tls_version) + minimal_tls_version=minimal_tls_version, + enable_partition_merge=enable_partition_merge) # pylint: disable=too-many-branches @@ -875,7 +877,8 @@ def cli_cosmosdb_update(client, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - minimal_tls_version=None): + minimal_tls_version=None, + enable_partition_merge=None): """Update an existing Azure Cosmos DB database account. """ existing = client.get(resource_group_name, account_name) @@ -966,7 +969,8 @@ def cli_cosmosdb_update(client, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - minimal_tls_version=minimal_tls_version) + minimal_tls_version=minimal_tls_version, + enable_partition_merge=enable_partition_merge) async_docdb_update = client.begin_update(resource_group_name, account_name, params) docdb_account = async_docdb_update.result() @@ -1176,7 +1180,8 @@ def _create_database_account(client, default_priority_level=None, enable_per_region_per_partition_autoscale=None, disable_ttl=None, - minimal_tls_version=None): + minimal_tls_version=None, + enable_partition_merge=None): consistency_policy = None if default_consistency_level is not None: consistency_policy = ConsistencyPolicy(default_consistency_level=default_consistency_level, @@ -1315,7 +1320,8 @@ def _create_database_account(client, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - minimal_tls_version=minimal_tls_version + minimal_tls_version=minimal_tls_version, + enable_partition_merge=enable_partition_merge ) async_docdb_create = client.begin_create_or_update(resource_group_name, account_name, params) From a0f675b956b878feb3cba98dcf14214450411ca9 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Thu, 29 Feb 2024 11:41:51 -0600 Subject: [PATCH 21/37] Revert "https://github.com/Azure/azure-cli/pull/27322/files" This reverts commit f779e16c73a7dd8cbb3cadb463ab1160423be846. --- src/cosmosdb-preview/azext_cosmosdb_preview/_params.py | 6 ++---- src/cosmosdb-preview/azext_cosmosdb_preview/custom.py | 6 ------ 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 13a1e5b1553..86adf89643c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -29,7 +29,7 @@ CreatePhysicalPartitionIdListAction) from azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.models import ( - ContinuousTier, DefaultPriorityLevel, MinimalTlsVersion + ContinuousTier, DefaultPriorityLevel ) from azure.cli.core.util import shell_safe_json_parse @@ -307,7 +307,6 @@ def load_arguments(self, _): c.argument('databases_to_restore', nargs='+', action=CreateDatabaseRestoreResource, is_preview=True, arg_group='Restore') c.argument('gremlin_databases_to_restore', nargs='+', action=CreateGremlinDatabaseRestoreResource, is_preview=True, arg_group='Restore') c.argument('tables_to_restore', nargs='+', action=CreateTableRestoreResource, is_preview=True, arg_group='Restore') - c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.") c.argument('enable_partition_merge', arg_type=get_three_state_flag(), help="Flag to enable partition merge on the account.") for scope in ['cosmosdb create', 'cosmosdb update']: @@ -339,11 +338,10 @@ def load_arguments(self, _): c.argument('backup_policy_type', arg_type=get_enum_type(BackupPolicyType), help="The type of backup policy of the account to create", arg_group='Backup Policy') c.argument('continuous_tier', arg_type=get_enum_type(ContinuousTier), help="The tier of Continuous backup", arg_group='Backup Policy') c.argument('enable_materialized_views', options_list=['--enable-materialized-views', '--enable-mv'], arg_type=get_three_state_flag(), help="Flag to enable MaterializedViews on the account.", is_preview=True) - c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.") + c.argument('enable_burst_capacity', arg_type=get_three_state_flag(), help="Flag to enable burst capacity on the account.", is_preview=True) c.argument('enable_priority_based_execution', options_list=['--enable-priority-based-execution', '--enable-pbe'], arg_type=get_three_state_flag(), help="Flag to enable priority based execution on the account.", is_preview=True) c.argument('default_priority_level', arg_type=get_enum_type(DefaultPriorityLevel), help="Default Priority Level of Request if not specified.", is_preview=True) c.argument('enable_per_region_per_partition_autoscale', arg_type=get_three_state_flag(), help="Enable or disable PerRegionPerPartitionAutoscale.", is_preview=True) - c.argument('minimal_tls_version', arg_type=get_enum_type(MinimalTlsVersion), help="Indicates the minimum allowed TLS version") c.argument('enable_partition_merge', arg_type=get_three_state_flag(), help="Flag to enable partition merge on the account.") with self.argument_context('cosmosdb update') as c: diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 0567e0612ad..ca5fdc7a672 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -781,7 +781,6 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - minimal_tls_version=None, enable_partition_merge=None): """Create a new Azure Cosmos DB database account.""" @@ -840,7 +839,6 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - minimal_tls_version=minimal_tls_version, enable_partition_merge=enable_partition_merge) @@ -877,7 +875,6 @@ def cli_cosmosdb_update(client, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - minimal_tls_version=None, enable_partition_merge=None): """Update an existing Azure Cosmos DB database account. """ existing = client.get(resource_group_name, account_name) @@ -969,7 +966,6 @@ def cli_cosmosdb_update(client, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - minimal_tls_version=minimal_tls_version, enable_partition_merge=enable_partition_merge) async_docdb_update = client.begin_update(resource_group_name, account_name, params) @@ -1180,7 +1176,6 @@ def _create_database_account(client, default_priority_level=None, enable_per_region_per_partition_autoscale=None, disable_ttl=None, - minimal_tls_version=None, enable_partition_merge=None): consistency_policy = None if default_consistency_level is not None: @@ -1320,7 +1315,6 @@ def _create_database_account(client, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - minimal_tls_version=minimal_tls_version, enable_partition_merge=enable_partition_merge ) From be4709e94c905bcf5f8bc18579df937804727261 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Thu, 29 Feb 2024 12:07:26 -0600 Subject: [PATCH 22/37] add missing stable changes for minimal tls version from https://github.com/Azure/azure-cli/pull/27322 --- .../azext_cosmosdb_preview/_params.py | 3 ++- .../azext_cosmosdb_preview/custom.py | 18 ++++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 86adf89643c..cf16f784dc7 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -29,7 +29,7 @@ CreatePhysicalPartitionIdListAction) from azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.models import ( - ContinuousTier, DefaultPriorityLevel + ContinuousTier, DefaultPriorityLevel, MinimalTlsVersion ) from azure.cli.core.util import shell_safe_json_parse @@ -343,6 +343,7 @@ def load_arguments(self, _): c.argument('default_priority_level', arg_type=get_enum_type(DefaultPriorityLevel), help="Default Priority Level of Request if not specified.", is_preview=True) c.argument('enable_per_region_per_partition_autoscale', arg_type=get_three_state_flag(), help="Enable or disable PerRegionPerPartitionAutoscale.", is_preview=True) c.argument('enable_partition_merge', arg_type=get_three_state_flag(), help="Flag to enable partition merge on the account.") + c.argument('minimal_tls_version', arg_type=get_enum_type(MinimalTlsVersion), help="Indicates the minimum allowed TLS version") with self.argument_context('cosmosdb update') as c: c.argument('key_uri', help="The URI of the key vault", is_preview=True) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index ca5fdc7a672..4699318fb2a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -781,7 +781,8 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - enable_partition_merge=None): + enable_partition_merge=None, + minimal_tls_version=None): """Create a new Azure Cosmos DB database account.""" from azure.cli.core.commands.client_factory import get_mgmt_service_client @@ -839,7 +840,8 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - enable_partition_merge=enable_partition_merge) + enable_partition_merge=enable_partition_merge + minimal_tls_version=minimal_tls_version) # pylint: disable=too-many-branches @@ -875,7 +877,8 @@ def cli_cosmosdb_update(client, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - enable_partition_merge=None): + enable_partition_merge=None, + minimal_tls_version=None): """Update an existing Azure Cosmos DB database account. """ existing = client.get(resource_group_name, account_name) @@ -966,7 +969,8 @@ def cli_cosmosdb_update(client, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - enable_partition_merge=enable_partition_merge) + enable_partition_merge=enable_partition_merge, + minimal_tls_version=minimal_tls_version) async_docdb_update = client.begin_update(resource_group_name, account_name, params) docdb_account = async_docdb_update.result() @@ -1176,7 +1180,8 @@ def _create_database_account(client, default_priority_level=None, enable_per_region_per_partition_autoscale=None, disable_ttl=None, - enable_partition_merge=None): + enable_partition_merge=None, + minimal_tls_version=None): consistency_policy = None if default_consistency_level is not None: consistency_policy = ConsistencyPolicy(default_consistency_level=default_consistency_level, @@ -1315,7 +1320,8 @@ def _create_database_account(client, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - enable_partition_merge=enable_partition_merge + enable_partition_merge=enable_partition_merge, + minimal_tls_version=minimal_tls_version ) async_docdb_create = client.begin_create_or_update(resource_group_name, account_name, params) From d4f4abead8d24fa0766355b42379b320040214f3 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Thu, 29 Feb 2024 12:24:13 -0600 Subject: [PATCH 23/37] nit --- src/cosmosdb-preview/azext_cosmosdb_preview/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 4699318fb2a..a460ab6d8a8 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -840,7 +840,7 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - enable_partition_merge=enable_partition_merge + enable_partition_merge=enable_partition_merge, minimal_tls_version=minimal_tls_version) From 9de20eedb7cc77e8e3820499c212588e9cc6f471 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Thu, 29 Feb 2024 12:30:06 -0600 Subject: [PATCH 24/37] Revert "nit" This reverts commit d4f4abead8d24fa0766355b42379b320040214f3. --- src/cosmosdb-preview/azext_cosmosdb_preview/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index a460ab6d8a8..4699318fb2a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -840,7 +840,7 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - enable_partition_merge=enable_partition_merge, + enable_partition_merge=enable_partition_merge minimal_tls_version=minimal_tls_version) From e8e627987fc87d18c8d9a16d37b36037a802088d Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Thu, 29 Feb 2024 12:30:24 -0600 Subject: [PATCH 25/37] Revert "add missing stable changes for minimal tls version from https://github.com/Azure/azure-cli/pull/27322" This reverts commit be4709e94c905bcf5f8bc18579df937804727261. --- .../azext_cosmosdb_preview/_params.py | 3 +-- .../azext_cosmosdb_preview/custom.py | 18 ++++++------------ 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index cf16f784dc7..86adf89643c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -29,7 +29,7 @@ CreatePhysicalPartitionIdListAction) from azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.models import ( - ContinuousTier, DefaultPriorityLevel, MinimalTlsVersion + ContinuousTier, DefaultPriorityLevel ) from azure.cli.core.util import shell_safe_json_parse @@ -343,7 +343,6 @@ def load_arguments(self, _): c.argument('default_priority_level', arg_type=get_enum_type(DefaultPriorityLevel), help="Default Priority Level of Request if not specified.", is_preview=True) c.argument('enable_per_region_per_partition_autoscale', arg_type=get_three_state_flag(), help="Enable or disable PerRegionPerPartitionAutoscale.", is_preview=True) c.argument('enable_partition_merge', arg_type=get_three_state_flag(), help="Flag to enable partition merge on the account.") - c.argument('minimal_tls_version', arg_type=get_enum_type(MinimalTlsVersion), help="Indicates the minimum allowed TLS version") with self.argument_context('cosmosdb update') as c: c.argument('key_uri', help="The URI of the key vault", is_preview=True) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index 4699318fb2a..ca5fdc7a672 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -781,8 +781,7 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - enable_partition_merge=None, - minimal_tls_version=None): + enable_partition_merge=None): """Create a new Azure Cosmos DB database account.""" from azure.cli.core.commands.client_factory import get_mgmt_service_client @@ -840,8 +839,7 @@ def cli_cosmosdb_create(cmd, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - enable_partition_merge=enable_partition_merge - minimal_tls_version=minimal_tls_version) + enable_partition_merge=enable_partition_merge) # pylint: disable=too-many-branches @@ -877,8 +875,7 @@ def cli_cosmosdb_update(client, enable_priority_based_execution=None, default_priority_level=None, enable_per_region_per_partition_autoscale=None, - enable_partition_merge=None, - minimal_tls_version=None): + enable_partition_merge=None): """Update an existing Azure Cosmos DB database account. """ existing = client.get(resource_group_name, account_name) @@ -969,8 +966,7 @@ def cli_cosmosdb_update(client, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - enable_partition_merge=enable_partition_merge, - minimal_tls_version=minimal_tls_version) + enable_partition_merge=enable_partition_merge) async_docdb_update = client.begin_update(resource_group_name, account_name, params) docdb_account = async_docdb_update.result() @@ -1180,8 +1176,7 @@ def _create_database_account(client, default_priority_level=None, enable_per_region_per_partition_autoscale=None, disable_ttl=None, - enable_partition_merge=None, - minimal_tls_version=None): + enable_partition_merge=None): consistency_policy = None if default_consistency_level is not None: consistency_policy = ConsistencyPolicy(default_consistency_level=default_consistency_level, @@ -1320,8 +1315,7 @@ def _create_database_account(client, enable_priority_based_execution=enable_priority_based_execution, default_priority_level=default_priority_level, enable_per_region_per_partition_autoscale=enable_per_region_per_partition_autoscale, - enable_partition_merge=enable_partition_merge, - minimal_tls_version=minimal_tls_version + enable_partition_merge=enable_partition_merge ) async_docdb_create = client.begin_create_or_update(resource_group_name, account_name, params) From cbf8bf01a7e439bd857a52e39fd0d5de25b333b0 Mon Sep 17 00:00:00 2001 From: Carolyn Jackson Date: Fri, 1 Mar 2024 12:20:51 -0600 Subject: [PATCH 26/37] fix style checl --- src/cosmosdb-preview/azext_cosmosdb_preview/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index ca5fdc7a672..aedf8125208 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -1936,7 +1936,7 @@ def cli_cosmosdb_mongodb_database_restore(cmd, if disable_ttl is not None: restore_parameters.restore_with_ttl_disabled = disable_ttl - + mongodb_database_resource = MongoDBDatabaseCreateUpdateParameters( resource=MongoDBDatabaseResource(id=database_name, create_mode=create_mode, From e5a86ecf0763845c2cd81216fe413aac1749f46b Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Fri, 1 Mar 2024 10:27:57 -0800 Subject: [PATCH 27/37] Address multi character short flag issue --- src/cosmosdb-preview/azext_cosmosdb_preview/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 86adf89643c..b944e468bff 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -359,7 +359,7 @@ def load_arguments(self, _): c.argument('default_identity', help="The primary identity to access key vault in CMK related features. e.g. 'FirstPartyIdentity', 'SystemAssignedIdentity' and more.") c.argument('public_network_access', options_list=['--public-network-access', '-p'], arg_type=get_enum_type(['ENABLED', 'DISABLED']), help="Sets public network access in server to either Enabled or Disabled.") c.argument('source_backup_location', help="This is the location of the source account where backups are located. Provide this value if the source and target are in different locations.", is_preview=True) - c.argument('disable_ttl', options_list=['--disable-ttl', '-dt'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview=True) + c.argument('disable_ttl', options_list=['--disable-ttl', '-d'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview=True) # Restorable Database Accounts with self.argument_context('cosmosdb restorable-database-account show') as c: From 24a9ef5ff939d0734950e8931ffb132b79b29919 Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Fri, 1 Mar 2024 11:27:29 -0800 Subject: [PATCH 28/37] Add missing parameters --- src/cosmosdb-preview/azext_cosmosdb_preview/_params.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index b944e468bff..2e6f660b573 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -571,6 +571,7 @@ def load_arguments(self, _): c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # SQL collection restore with self.argument_context('cosmosdb sql container restore') as c: @@ -578,12 +579,14 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True) c.argument('container_name', options_list=['--name', '-n'], help="Container name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the container needs to be restored to.", required=True) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # MongoDB database restore with self.argument_context('cosmosdb mongodb database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # MongoDB collection restore with self.argument_context('cosmosdb mongodb collection restore') as c: @@ -591,12 +594,14 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True) c.argument('collection_name', options_list=['--name', '-n'], help="Collection name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the collection needs to be restored to.", required=True) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # Gremlin database restore with self.argument_context('cosmosdb gremlin database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # Gremlin Graph restore with self.argument_context('cosmosdb gremlin graph restore') as c: @@ -604,9 +609,11 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True, help='Name of the CosmosDB Gremlin database name') c.argument('graph_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin graph name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the graph needs to be restored to.", required=True) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # Table restore with self.argument_context('cosmosdb table restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('table_name', options_list=['--table-name', '-n'], required=True, help='Name of the CosmosDB Table name') c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the Table needs to be restored to.", required=True) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) From ea6e462454a24829710b5f3ce95c360d838ff244 Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Fri, 1 Mar 2024 13:49:02 -0800 Subject: [PATCH 29/37] Fix syntax issue --- .../azext_cosmosdb_preview/_params.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 2e6f660b573..dc271eaeb2c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -571,7 +571,7 @@ def load_arguments(self, _): c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # SQL collection restore with self.argument_context('cosmosdb sql container restore') as c: @@ -579,14 +579,14 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True) c.argument('container_name', options_list=['--name', '-n'], help="Container name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the container needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # MongoDB database restore with self.argument_context('cosmosdb mongodb database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # MongoDB collection restore with self.argument_context('cosmosdb mongodb collection restore') as c: @@ -594,14 +594,14 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True) c.argument('collection_name', options_list=['--name', '-n'], help="Collection name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the collection needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # Gremlin database restore with self.argument_context('cosmosdb gremlin database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # Gremlin Graph restore with self.argument_context('cosmosdb gremlin graph restore') as c: @@ -609,11 +609,11 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True, help='Name of the CosmosDB Gremlin database name') c.argument('graph_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin graph name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the graph needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) # Table restore with self.argument_context('cosmosdb table restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('table_name', options_list=['--table-name', '-n'], required=True, help='Name of the CosmosDB Table name') c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the Table needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd', arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) From eccd1f19796d8e76e76580ea8e0e8e6ac30b0df7 Mon Sep 17 00:00:00 2001 From: Min Ho Kang Date: Fri, 1 Mar 2024 14:07:37 -0800 Subject: [PATCH 30/37] Remove short flag --- .../azext_cosmosdb_preview/_params.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index dc271eaeb2c..834a0fc49b8 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -359,7 +359,7 @@ def load_arguments(self, _): c.argument('default_identity', help="The primary identity to access key vault in CMK related features. e.g. 'FirstPartyIdentity', 'SystemAssignedIdentity' and more.") c.argument('public_network_access', options_list=['--public-network-access', '-p'], arg_type=get_enum_type(['ENABLED', 'DISABLED']), help="Sets public network access in server to either Enabled or Disabled.") c.argument('source_backup_location', help="This is the location of the source account where backups are located. Provide this value if the source and target are in different locations.", is_preview=True) - c.argument('disable_ttl', options_list=['--disable-ttl', '-d'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview=True) + c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview=True) # Restorable Database Accounts with self.argument_context('cosmosdb restorable-database-account show') as c: @@ -571,7 +571,7 @@ def load_arguments(self, _): c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) # SQL collection restore with self.argument_context('cosmosdb sql container restore') as c: @@ -579,14 +579,14 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True) c.argument('container_name', options_list=['--name', '-n'], help="Container name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the container needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) # MongoDB database restore with self.argument_context('cosmosdb mongodb database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) # MongoDB collection restore with self.argument_context('cosmosdb mongodb collection restore') as c: @@ -594,14 +594,14 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True) c.argument('collection_name', options_list=['--name', '-n'], help="Collection name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the collection needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) # Gremlin database restore with self.argument_context('cosmosdb gremlin database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin database name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) # Gremlin Graph restore with self.argument_context('cosmosdb gremlin graph restore') as c: @@ -609,11 +609,11 @@ def load_arguments(self, _): c.argument('database_name', database_name_type, required=True, help='Name of the CosmosDB Gremlin database name') c.argument('graph_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin graph name", required=True) c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the graph needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) # Table restore with self.argument_context('cosmosdb table restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('table_name', options_list=['--table-name', '-n'], required=True, help='Name of the CosmosDB Table name') c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the Table needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl', 'd'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False]) + c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) From 679d530c5a887d944e5e6a8be5d752c1ccd83a94 Mon Sep 17 00:00:00 2001 From: "Vivek Agarwal (from Dev Box)" Date: Sat, 2 Mar 2024 14:48:03 -0800 Subject: [PATCH 31/37] poc for test changes --- .../azext_cosmosdb_preview/_params.py | 16 +- .../azext_cosmosdb_preview/custom.py | 542 +++++++++++++++--- ...test_cosmosdb-InAccountRestore_scenario.py | 131 +++++ 3 files changed, 587 insertions(+), 102 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 86adf89643c..d13a9fc659a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -350,7 +350,7 @@ def load_arguments(self, _): with self.argument_context('cosmosdb restore') as c: c.argument('target_database_account_name', options_list=['--target-database-account-name', '-n'], help='Name of the new target Cosmos DB database account after the restore') c.argument('account_name', completer=None, options_list=['--account-name', '-a'], help='Name of the source Cosmos DB database account for the restore', id_part=None) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the account has to be restored to.") + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the account has to be restored to.", required=True) c.argument('location', arg_type=get_location_type(self.cli_ctx), help="This is the write region of the restored account. This is also the location of the source account where its backups are located if source_backup_location is not provided.") c.argument('databases_to_restore', nargs='+', action=CreateDatabaseRestoreResource) c.argument('gremlin_databases_to_restore', nargs='+', action=CreateGremlinDatabaseRestoreResource, is_preview=True) @@ -570,43 +570,43 @@ def load_arguments(self, _): with self.argument_context('cosmosdb sql database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=False) # SQL collection restore with self.argument_context('cosmosdb sql container restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', database_name_type, required=True) c.argument('container_name', options_list=['--name', '-n'], help="Container name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the container needs to be restored to.", required=True) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the container needs to be restored to.", required=False) # MongoDB database restore with self.argument_context('cosmosdb mongodb database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=False) # MongoDB collection restore with self.argument_context('cosmosdb mongodb collection restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', database_name_type, required=True) c.argument('collection_name', options_list=['--name', '-n'], help="Collection name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the collection needs to be restored to.", required=True) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the collection needs to be restored to.", required=False) # Gremlin database restore with self.argument_context('cosmosdb gremlin database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin database name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=False) # Gremlin Graph restore with self.argument_context('cosmosdb gremlin graph restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', database_name_type, required=True, help='Name of the CosmosDB Gremlin database name') c.argument('graph_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin graph name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the graph needs to be restored to.", required=True) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the graph needs to be restored to.", required=False) # Table restore with self.argument_context('cosmosdb table restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('table_name', options_list=['--table-name', '-n'], required=True, help='Name of the CosmosDB Table name') - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the Table needs to be restored to.", required=True) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the Table needs to be restored to.", required=False) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index ca5fdc7a672..aac89fc3b82 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long, too-many-statements, consider-using-f-string, broad-except, no-member, raise-missing-from - +import datetime from knack.util import CLIError from knack.log import get_logger from azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.models import ( @@ -1797,6 +1797,61 @@ def _handle_exists_exception(http_response_error): raise http_response_error +def process_restorable_databases(restorable_databases, database_name): + + latest_database_delete_time = datetime.datetime.utcfromtimestamp(0) + latest_database_create_or_recreate_time = datetime.datetime.utcfromtimestamp(0) + database_rid = None + + for restorable_database in restorable_databases: + resource = restorable_database.resource + if resource.owner_id == database_name: + database_rid = resource.owner_resource_id + event_timestamp = datetime.datetime.strptime(resource.event_timestamp, "%Y-%m-%dT%H:%M:%SZ") + if resource.operation_type == "Delete" and latest_database_delete_time < event_timestamp: + latest_database_delete_time = event_timestamp + + if (resource.operation_type == "Create" or resource.operation_type == "Recreate") and latest_database_create_or_recreate_time < event_timestamp: + latest_database_create_or_recreate_time = event_timestamp + + if database_rid is None: + raise CLIError("No restorable database found with name: {}".format(database_name)) + + # Database never deleted then reset it to max time + latest_database_delete_time = datetime.datetime.max if latest_database_delete_time == datetime.datetime.utcfromtimestamp(0) else latest_database_delete_time + + logger.debug('process_restorable_databases: latest_database_delete_time {} latest_database_create_or_recreate_time {} database_name {}'.format(latest_database_delete_time, latest_database_create_or_recreate_time, database_name)) # pylint: disable=logging-format-interpolation + + return latest_database_delete_time, latest_database_create_or_recreate_time, database_rid + + +def process_restorable_collections(restorable_collections, collection_name, database_name): + latest_collection_delete_time = datetime.datetime.utcfromtimestamp(0) + latest_collection_create_or_recreate_time = datetime.datetime.utcfromtimestamp(0) + collection_rid = None + + for restorable_collection in restorable_collections: + resource = restorable_collection.resource + if resource.owner_id == collection_name: + collection_rid = resource.owner_resource_id + event_timestamp = datetime.datetime.strptime(resource.event_timestamp, "%Y-%m-%dT%H:%M:%SZ") + if resource.operation_type == "Delete" and latest_collection_delete_time < event_timestamp: + latest_collection_delete_time = event_timestamp + + if (resource.operation_type == "Create" or resource.operation_type == "Recreate") and latest_collection_create_or_recreate_time < event_timestamp: + latest_collection_create_or_recreate_time = event_timestamp + + if collection_rid is None: + raise CLIError("No restorable collection with name: {} found in the database with name: {}".format(collection_name, database_name)) + + # Collection never deleted then reset it to max time + latest_collection_delete_time = datetime.datetime.max if latest_collection_delete_time == datetime.datetime.utcfromtimestamp(0) else latest_collection_delete_time + + logger.debug('process_restorable_databases: latest_collection_delete_time {} latest_collection_create_or_recreate_time {} database_name {} collection_name {}'.format(latest_collection_delete_time, latest_collection_create_or_recreate_time, database_name, collection_name)) # pylint: disable=logging-format-interpolation + + return latest_collection_delete_time, latest_collection_create_or_recreate_time + + def cli_cosmosdb_sql_database_restore(cmd, client, resource_group_name, @@ -1804,24 +1859,60 @@ def cli_cosmosdb_sql_database_restore(cmd, database_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_sql_databases + restorable_databases_client = cf_restorable_sql_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) # pylint: disable=unused-variable + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_create_or_recreate_time > latest_database_delete_time or latest_database_delete_time == datetime.datetime.max + + if database_alive: + raise CLIError("Database with name {} already exists in this account with name {} in location {}".format(database_name, account_name, restorable_database_account.location)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_database_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB SQL database""" create_mode = CreateMode.restore.value @@ -1854,25 +1945,77 @@ def cli_cosmosdb_sql_container_restore(cmd, container_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the deleted Azure Cosmos DB SQL container """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None + + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + restorable_database_account = latest_account_to_restore + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + database_rid = None + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_sql_databases + restorable_databases_client = cf_restorable_sql_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_delete_time == datetime.datetime.max or latest_database_create_or_recreate_time > latest_database_delete_time + + if not database_alive: + raise CLIError("No active database with name {} found that contains the collection {}".format(database_name, container_name)) + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_sql_containers + restorable_containers_client = cf_restorable_sql_containers(cmd.cli_ctx, []) + restorable_containers = restorable_containers_client.list( + restorable_database_account.location, + restorable_database_account.name, + database_rid) + + latest_container_delete_time, latest_container_create_or_recreate_time = process_restorable_collections(restorable_containers, container_name, database_name) + + # Container is alive if create or recreate timestamp is later than latest delete timestamp + container_alive = latest_container_create_or_recreate_time > latest_container_delete_time or latest_container_delete_time == datetime.datetime.max + + if container_alive: + raise CLIError("The collection {} is currently online. Please delete the collection and provide a restore timestamp for restoring different instance of the collection.".format(container_name)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_container_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB SQL container""" create_mode = CreateMode.restore.value @@ -1882,7 +2025,7 @@ def cli_cosmosdb_sql_container_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl sql_container_resource = SqlContainerResource( id=container_name, @@ -1907,25 +2050,61 @@ def cli_cosmosdb_mongodb_database_restore(cmd, database_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the deleted Azure Cosmos DB MongoDB database""" restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_mongodb_databases + restorable_databases_client = cf_restorable_mongodb_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) # pylint: disable=unused-variable + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_create_or_recreate_time > latest_database_delete_time or latest_database_delete_time == datetime.datetime.max + + if database_alive: + raise CLIError("Database with name {} already exists in this account with name {} in location {}".format(database_name, account_name, restorable_database_account.location)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_database_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB MongoDB database""" create_mode = CreateMode.restore.value @@ -1935,8 +2114,8 @@ def cli_cosmosdb_mongodb_database_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl - + restore_parameters.restore_with_ttl_disabled = disable_ttl + mongodb_database_resource = MongoDBDatabaseCreateUpdateParameters( resource=MongoDBDatabaseResource(id=database_name, create_mode=create_mode, @@ -1957,25 +2136,77 @@ def cli_cosmosdb_mongodb_collection_restore(cmd, collection_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the Azure Cosmos DB MongoDB collection """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + database_rid = None + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_mongodb_databases + restorable_databases_client = cf_restorable_mongodb_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_delete_time == datetime.datetime.max or latest_database_create_or_recreate_time > latest_database_delete_time + + if not database_alive: + raise CLIError("Cannot find a database account with name {} that is online when latest collection instance was deleted".format(account_name)) + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_mongodb_collections + restorable_collections_client = cf_restorable_mongodb_collections(cmd.cli_ctx, []) + restorable_collections = restorable_collections_client.list( + restorable_database_account.location, + restorable_database_account.name, + database_rid) + + latest_collection_delete_time, latest_collection_create_or_recreate_time = process_restorable_collections(restorable_collections, collection_name, database_name) + + # Collection is alive if create or recreate timestamp is later than latest delete timestamp + collection_alive = latest_collection_create_or_recreate_time > latest_collection_delete_time or latest_collection_delete_time == datetime.datetime.max + + if collection_alive: + raise CLIError("The collection {} is currently online. Please delete the collection and provide a restore timestamp for restoring different instance of the collection.".format(collection_name)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_collection_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB MongoDB collection""" create_mode = CreateMode.restore.value @@ -1985,7 +2216,7 @@ def cli_cosmosdb_mongodb_collection_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl mongodb_collection_resource = MongoDBCollectionResource(id=collection_name, create_mode=create_mode, @@ -2182,24 +2413,60 @@ def cli_cosmosdb_gremlin_database_restore(cmd, database_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break + + if restorable_database_account is None: + raise CLIError("Cannot find a Gremlin database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account - if restorable_database_account is None: - raise CLIError("Cannot find a Gremlin database account with name {} that is online at {}".format(account_name, restore_timestamp)) + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a Gremlin database account with name {} that is online".format(account_name)) + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_gremlin_databases + restorable_databases_client = cf_restorable_gremlin_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) # pylint: disable=unused-variable + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_create_or_recreate_time > latest_database_delete_time or latest_database_delete_time == datetime.datetime.max + + if database_alive: + raise CLIError("Database with name {} already exists in this account with name {} in location {}".format(database_name, account_name, restorable_database_account.location)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_database_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a Gremlin database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB Gremlin database""" create_mode = CreateMode.restore.value @@ -2209,7 +2476,7 @@ def cli_cosmosdb_gremlin_database_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl gremlin_database_resource = GremlinDatabaseCreateUpdateParameters( resource=SqlDatabaseResource( @@ -2232,25 +2499,77 @@ def cli_cosmosdb_gremlin_graph_restore(cmd, graph_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the deleted Azure Cosmos DB Gremlin graph """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted gremlin database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted gremlin database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + database_rid = None + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_gremlin_databases + restorable_databases_client = cf_restorable_gremlin_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_delete_time == datetime.datetime.max or latest_database_create_or_recreate_time > latest_database_delete_time + + if not database_alive: + raise CLIError("No active database with name {} found that contains the graph {}".format(database_name, graph_name)) + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_gremlin_graphs + restorable_graphs_client = cf_restorable_gremlin_graphs(cmd.cli_ctx, []) + restorable_graphs = restorable_graphs_client.list( + restorable_database_account.location, + restorable_database_account.name, + database_rid) + + latest_graph_delete_time, latest_graph_create_or_recreate_time = process_restorable_collections(restorable_graphs, graph_name, database_name) + + # Graph is alive if create or recreate timestamp is later than latest delete timestamp + graph_alive = latest_graph_create_or_recreate_time > latest_graph_delete_time or latest_graph_delete_time == datetime.datetime.max + + if graph_alive: + raise CLIError("The graph {} is currently online. Please delete the graph and provide a restore timestamp for restoring different instance of the graph.".format(graph_name)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_graph_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB Gremlin graph""" create_mode = CreateMode.restore.value @@ -2260,7 +2579,7 @@ def cli_cosmosdb_gremlin_graph_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl gremlin_graph_resource = GremlinGraphResource( id=graph_name, @@ -2276,8 +2595,6 @@ def cli_cosmosdb_gremlin_graph_restore(cmd, database_name, graph_name, gremlin_graph_create_update_resource) - - def cli_cosmosdb_table_restore(cmd, client, resource_group_name, @@ -2285,25 +2602,61 @@ def cli_cosmosdb_table_restore(cmd, table_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the deleted Azure Cosmos DB Table""" restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted table {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted table {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break + + if restorable_database_account is None: + raise CLIError("Cannot find a account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_tables + restorable_tables_client = cf_restorable_tables(cmd.cli_ctx, []) + restorable_tables = restorable_tables_client.list( + restorable_database_account.location, + restorable_database_account.name) - if restorable_database_account is None: - raise CLIError("Cannot find a account with name {} that is online at {}".format(account_name, restore_timestamp)) + latest_table_delete_time, latest_table_create_or_recreate_time, table_rid = process_restorable_databases(restorable_tables, table_name) # pylint: disable=unused-variable + + # Table is alive if create or recreate timestamp is later than latest delete timestamp + table_alive = latest_table_create_or_recreate_time > latest_table_delete_time or latest_table_delete_time == datetime.datetime.max + + if table_alive: + raise CLIError("Table with name {} already exists in this account with name {} in location {}".format(table_name, account_name, restorable_database_account.location)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_table_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a table account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB Table""" create_mode = CreateMode.restore.value @@ -2313,7 +2666,7 @@ def cli_cosmosdb_table_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl table_resource = TableCreateUpdateParameters( resource=TableResource(id=table_name, @@ -2325,3 +2678,4 @@ def cli_cosmosdb_table_restore(cmd, account_name, table_name, table_resource) + diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py index 53fdfcef007..a9c7244dce5 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py @@ -642,3 +642,134 @@ def test_cosmosdb_mongodb_shared_database_prov_collection_restore(self, resource self.cmd('az cosmosdb mongodb database delete -g {rg} -a {acc} -n {db_name} --yes') database_list = self.cmd('az cosmosdb mongodb database list -g {rg} -a {acc}').get_output_in_json() assert len(database_list) == 0 + + # test + @AllowLargeResponse() + @ResourceGroupPreparer(name_prefix='cli_test_coding') + def test_coding(self, resource_group): + + #container_restore = self.cmd('az cosmosdb sql container restore --resource-group "agarwalvivekfun" --account-name "pitr-mm-r1" --database-name "sharedrudb" --name "sharedDBProviosnedColl1"') + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore --resource-group "agarwalvivekfun" --account-name "pitr-mm-r1" --database-name "sharedrudb" --name "sharedDBProviosnedColl1"')) + #assert len(container_restore) == 0 + + + # InAccount No timestamp restore validation + @AllowLargeResponse() + @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt') + def test_cosmosdb_sql_normal_database_prov_container_restore_nt(self, resource_group): + db_name = self.create_random_name(prefix='cli', length=15) + ctn_name = self.create_random_name(prefix='cli', length=15) + partition_key = "/thePartitionKey" + unique_key_policy = '"{\\"uniqueKeys\\": [{\\"paths\\": [\\"/path/to/key1\\"]}, {\\"paths\\": [\\"/path/to/key2\\"]}]}"' + conflict_resolution_policy = '"{\\"mode\\": \\"lastWriterWins\\", \\"conflictResolutionPath\\": \\"/path\\"}"' + indexing = '"{\\"indexingMode\\": \\"consistent\\", \\"automatic\\": true, \\"includedPaths\\": [{\\"path\\": \\"/*\\"}], \\"excludedPaths\\": [{\\"path\\": \\"/headquarters/employees/?\\"}]}"' + location = "WestUS" + + self.kwargs.update({ + 'acc': self.create_random_name(prefix='ntbrcli', length=15), + 'db_name': db_name, + 'ctn_name': ctn_name, + 'part': partition_key, + 'unique_key': unique_key_policy, + "conflict_resolution": conflict_resolution_policy, + "indexing": indexing, + 'loc': location + }) + + self.cmd('az cosmosdb create -n {acc} -g {rg} --backup-policy-type Continuous --locations regionName={loc}') + self.cmd('az cosmosdb sql database create -g {rg} -a {acc} -n {db_name}') + + container_create = self.cmd('az cosmosdb sql container create -g {rg} -a {acc} -d {db_name} -n {ctn_name} -p {part} --unique-key-policy {unique_key} --conflict-resolution-policy {conflict_resolution} --idx {indexing}').get_output_in_json() + + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 1 + + restore_ts_string = datetime.utcnow().isoformat() + + self.kwargs.update({ + 'rts': restore_ts_string + }) + import time + time.sleep(300) + + # remove container + self.cmd('az cosmosdb sql container delete -g {rg} -a {acc} -d {db_name} -n {ctn_name} --yes') + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 0 + + # 6. Restore non-existent container - expect failure + invalid_ctn_string = datetime.utcnow().isoformat() + self.kwargs.update({ + 'invalid_ctn_name': invalid_ctn_string + }) + + # restore invalid container + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {invalid_ctn_name}')) + + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 0 + + # restore valid container + self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}') + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 1 + + # delete database + self.cmd('az cosmosdb sql database delete -g {rg} -a {acc} -n {db_name} --yes') + database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() + assert len(database_list) == 0 + + # restore container expect failure + # with deleted database collection is non-existent + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 0 + # restore when database is offline + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}')) + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 0 + + # restore database + self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}') + + database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() + assert database_restore["name"] == db_name + + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 0 + + # restore container + self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}') + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 1 + + # restore again expect failure(already container online) + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}')) + + # delete database + self.cmd('az cosmosdb sql database delete -g {rg} -a {acc} -n {db_name} --yes') + database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() + assert len(database_list) == 0 + + # 6. Restore non-existent database - expect failure + invalid_db_name_string = "invalid_database" + self.kwargs.update({ + 'invalid_db_name': invalid_db_name_string + }) + + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {invalid_db_name}')) + + # restore database + self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}') + database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() + assert database_restore["name"] == db_name + + # restore database again + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}')) + + self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name} --restore-timestamp {rts}') + + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 1 + + container_show = self.cmd('az cosmosdb sql container show -g {rg} -a {acc} -d {db_name} -n {ctn_name}').get_output_in_json() + assert container_show["name"] == ctn_name From 7a72305c0cc29692a57cf057c9fd8895fac96174 Mon Sep 17 00:00:00 2001 From: Vivek Agarwal Date: Sat, 2 Mar 2024 15:42:14 -0800 Subject: [PATCH 32/37] inital changes in custom.py --- .../azext_cosmosdb_preview/custom.py | 540 +++++++++++++++--- 1 file changed, 447 insertions(+), 93 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index aedf8125208..aac89fc3b82 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long, too-many-statements, consider-using-f-string, broad-except, no-member, raise-missing-from - +import datetime from knack.util import CLIError from knack.log import get_logger from azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.models import ( @@ -1797,6 +1797,61 @@ def _handle_exists_exception(http_response_error): raise http_response_error +def process_restorable_databases(restorable_databases, database_name): + + latest_database_delete_time = datetime.datetime.utcfromtimestamp(0) + latest_database_create_or_recreate_time = datetime.datetime.utcfromtimestamp(0) + database_rid = None + + for restorable_database in restorable_databases: + resource = restorable_database.resource + if resource.owner_id == database_name: + database_rid = resource.owner_resource_id + event_timestamp = datetime.datetime.strptime(resource.event_timestamp, "%Y-%m-%dT%H:%M:%SZ") + if resource.operation_type == "Delete" and latest_database_delete_time < event_timestamp: + latest_database_delete_time = event_timestamp + + if (resource.operation_type == "Create" or resource.operation_type == "Recreate") and latest_database_create_or_recreate_time < event_timestamp: + latest_database_create_or_recreate_time = event_timestamp + + if database_rid is None: + raise CLIError("No restorable database found with name: {}".format(database_name)) + + # Database never deleted then reset it to max time + latest_database_delete_time = datetime.datetime.max if latest_database_delete_time == datetime.datetime.utcfromtimestamp(0) else latest_database_delete_time + + logger.debug('process_restorable_databases: latest_database_delete_time {} latest_database_create_or_recreate_time {} database_name {}'.format(latest_database_delete_time, latest_database_create_or_recreate_time, database_name)) # pylint: disable=logging-format-interpolation + + return latest_database_delete_time, latest_database_create_or_recreate_time, database_rid + + +def process_restorable_collections(restorable_collections, collection_name, database_name): + latest_collection_delete_time = datetime.datetime.utcfromtimestamp(0) + latest_collection_create_or_recreate_time = datetime.datetime.utcfromtimestamp(0) + collection_rid = None + + for restorable_collection in restorable_collections: + resource = restorable_collection.resource + if resource.owner_id == collection_name: + collection_rid = resource.owner_resource_id + event_timestamp = datetime.datetime.strptime(resource.event_timestamp, "%Y-%m-%dT%H:%M:%SZ") + if resource.operation_type == "Delete" and latest_collection_delete_time < event_timestamp: + latest_collection_delete_time = event_timestamp + + if (resource.operation_type == "Create" or resource.operation_type == "Recreate") and latest_collection_create_or_recreate_time < event_timestamp: + latest_collection_create_or_recreate_time = event_timestamp + + if collection_rid is None: + raise CLIError("No restorable collection with name: {} found in the database with name: {}".format(collection_name, database_name)) + + # Collection never deleted then reset it to max time + latest_collection_delete_time = datetime.datetime.max if latest_collection_delete_time == datetime.datetime.utcfromtimestamp(0) else latest_collection_delete_time + + logger.debug('process_restorable_databases: latest_collection_delete_time {} latest_collection_create_or_recreate_time {} database_name {} collection_name {}'.format(latest_collection_delete_time, latest_collection_create_or_recreate_time, database_name, collection_name)) # pylint: disable=logging-format-interpolation + + return latest_collection_delete_time, latest_collection_create_or_recreate_time + + def cli_cosmosdb_sql_database_restore(cmd, client, resource_group_name, @@ -1804,24 +1859,60 @@ def cli_cosmosdb_sql_database_restore(cmd, database_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_sql_databases + restorable_databases_client = cf_restorable_sql_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) # pylint: disable=unused-variable + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_create_or_recreate_time > latest_database_delete_time or latest_database_delete_time == datetime.datetime.max + + if database_alive: + raise CLIError("Database with name {} already exists in this account with name {} in location {}".format(database_name, account_name, restorable_database_account.location)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_database_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB SQL database""" create_mode = CreateMode.restore.value @@ -1854,25 +1945,77 @@ def cli_cosmosdb_sql_container_restore(cmd, container_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the deleted Azure Cosmos DB SQL container """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None + + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + restorable_database_account = latest_account_to_restore + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + database_rid = None + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_sql_databases + restorable_databases_client = cf_restorable_sql_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_delete_time == datetime.datetime.max or latest_database_create_or_recreate_time > latest_database_delete_time + + if not database_alive: + raise CLIError("No active database with name {} found that contains the collection {}".format(database_name, container_name)) + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_sql_containers + restorable_containers_client = cf_restorable_sql_containers(cmd.cli_ctx, []) + restorable_containers = restorable_containers_client.list( + restorable_database_account.location, + restorable_database_account.name, + database_rid) + + latest_container_delete_time, latest_container_create_or_recreate_time = process_restorable_collections(restorable_containers, container_name, database_name) + + # Container is alive if create or recreate timestamp is later than latest delete timestamp + container_alive = latest_container_create_or_recreate_time > latest_container_delete_time or latest_container_delete_time == datetime.datetime.max + + if container_alive: + raise CLIError("The collection {} is currently online. Please delete the collection and provide a restore timestamp for restoring different instance of the collection.".format(container_name)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_container_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB SQL container""" create_mode = CreateMode.restore.value @@ -1882,7 +2025,7 @@ def cli_cosmosdb_sql_container_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl sql_container_resource = SqlContainerResource( id=container_name, @@ -1907,25 +2050,61 @@ def cli_cosmosdb_mongodb_database_restore(cmd, database_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the deleted Azure Cosmos DB MongoDB database""" restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_mongodb_databases + restorable_databases_client = cf_restorable_mongodb_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) # pylint: disable=unused-variable + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_create_or_recreate_time > latest_database_delete_time or latest_database_delete_time == datetime.datetime.max + + if database_alive: + raise CLIError("Database with name {} already exists in this account with name {} in location {}".format(database_name, account_name, restorable_database_account.location)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_database_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB MongoDB database""" create_mode = CreateMode.restore.value @@ -1935,7 +2114,7 @@ def cli_cosmosdb_mongodb_database_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl mongodb_database_resource = MongoDBDatabaseCreateUpdateParameters( resource=MongoDBDatabaseResource(id=database_name, @@ -1957,25 +2136,77 @@ def cli_cosmosdb_mongodb_collection_restore(cmd, collection_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the Azure Cosmos DB MongoDB collection """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + database_rid = None + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_mongodb_databases + restorable_databases_client = cf_restorable_mongodb_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_delete_time == datetime.datetime.max or latest_database_create_or_recreate_time > latest_database_delete_time + + if not database_alive: + raise CLIError("Cannot find a database account with name {} that is online when latest collection instance was deleted".format(account_name)) + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_mongodb_collections + restorable_collections_client = cf_restorable_mongodb_collections(cmd.cli_ctx, []) + restorable_collections = restorable_collections_client.list( + restorable_database_account.location, + restorable_database_account.name, + database_rid) + + latest_collection_delete_time, latest_collection_create_or_recreate_time = process_restorable_collections(restorable_collections, collection_name, database_name) + + # Collection is alive if create or recreate timestamp is later than latest delete timestamp + collection_alive = latest_collection_create_or_recreate_time > latest_collection_delete_time or latest_collection_delete_time == datetime.datetime.max + + if collection_alive: + raise CLIError("The collection {} is currently online. Please delete the collection and provide a restore timestamp for restoring different instance of the collection.".format(collection_name)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_collection_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB MongoDB collection""" create_mode = CreateMode.restore.value @@ -1985,7 +2216,7 @@ def cli_cosmosdb_mongodb_collection_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl mongodb_collection_resource = MongoDBCollectionResource(id=collection_name, create_mode=create_mode, @@ -2182,24 +2413,60 @@ def cli_cosmosdb_gremlin_database_restore(cmd, database_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break + + if restorable_database_account is None: + raise CLIError("Cannot find a Gremlin database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account - if restorable_database_account is None: - raise CLIError("Cannot find a Gremlin database account with name {} that is online at {}".format(account_name, restore_timestamp)) + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a Gremlin database account with name {} that is online".format(account_name)) + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_gremlin_databases + restorable_databases_client = cf_restorable_gremlin_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) # pylint: disable=unused-variable + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_create_or_recreate_time > latest_database_delete_time or latest_database_delete_time == datetime.datetime.max + + if database_alive: + raise CLIError("Database with name {} already exists in this account with name {} in location {}".format(database_name, account_name, restorable_database_account.location)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_database_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a Gremlin database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB Gremlin database""" create_mode = CreateMode.restore.value @@ -2209,7 +2476,7 @@ def cli_cosmosdb_gremlin_database_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl gremlin_database_resource = GremlinDatabaseCreateUpdateParameters( resource=SqlDatabaseResource( @@ -2232,25 +2499,77 @@ def cli_cosmosdb_gremlin_graph_restore(cmd, graph_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the deleted Azure Cosmos DB Gremlin graph """ restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted gremlin database account {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted gremlin database account {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break - if restorable_database_account is None: - raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + database_rid = None + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_gremlin_databases + restorable_databases_client = cf_restorable_gremlin_databases(cmd.cli_ctx, []) + restorable_databases = restorable_databases_client.list( + restorable_database_account.location, + restorable_database_account.name) + + latest_database_delete_time, latest_database_create_or_recreate_time, database_rid = process_restorable_databases(restorable_databases, database_name) + + # Database is alive if create or recreate timestamp is later than latest delete timestamp + database_alive = latest_database_delete_time == datetime.datetime.max or latest_database_create_or_recreate_time > latest_database_delete_time + + if not database_alive: + raise CLIError("No active database with name {} found that contains the graph {}".format(database_name, graph_name)) + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_gremlin_graphs + restorable_graphs_client = cf_restorable_gremlin_graphs(cmd.cli_ctx, []) + restorable_graphs = restorable_graphs_client.list( + restorable_database_account.location, + restorable_database_account.name, + database_rid) + + latest_graph_delete_time, latest_graph_create_or_recreate_time = process_restorable_collections(restorable_graphs, graph_name, database_name) + + # Graph is alive if create or recreate timestamp is later than latest delete timestamp + graph_alive = latest_graph_create_or_recreate_time > latest_graph_delete_time or latest_graph_delete_time == datetime.datetime.max + + if graph_alive: + raise CLIError("The graph {} is currently online. Please delete the graph and provide a restore timestamp for restoring different instance of the graph.".format(graph_name)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_graph_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a database account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB Gremlin graph""" create_mode = CreateMode.restore.value @@ -2260,7 +2579,7 @@ def cli_cosmosdb_gremlin_graph_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl gremlin_graph_resource = GremlinGraphResource( id=graph_name, @@ -2276,8 +2595,6 @@ def cli_cosmosdb_gremlin_graph_restore(cmd, database_name, graph_name, gremlin_graph_create_update_resource) - - def cli_cosmosdb_table_restore(cmd, client, resource_group_name, @@ -2285,25 +2602,61 @@ def cli_cosmosdb_table_restore(cmd, table_name, restore_timestamp=None, disable_ttl=None): + + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_database_accounts # """Restores the deleted Azure Cosmos DB Table""" restorable_database_accounts_client = cf_restorable_database_accounts(cmd.cli_ctx, []) restorable_database_accounts = restorable_database_accounts_client.list() restorable_database_accounts_list = list(restorable_database_accounts) - restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) restorable_database_account = None - for account in restorable_database_accounts_list: - if account.account_name == account_name: - if account.deletion_time is not None: - if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: - raise CLIError("Cannot perform inaccount restore on a deleted table {}".format(account_name)) - else: - if restore_timestamp_datetime_utc >= account.creation_time: - restorable_database_account = account - break + if restore_timestamp is not None: + restore_timestamp_datetime_utc = _convert_to_utc_timestamp(restore_timestamp) + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if account.deletion_time is not None: + if account.deletion_time >= restore_timestamp_datetime_utc >= account.creation_time: + raise CLIError("Cannot perform inaccount restore on a deleted table {}".format(account_name)) + else: + if restore_timestamp_datetime_utc >= account.creation_time: + restorable_database_account = account + break + + if restorable_database_account is None: + raise CLIError("Cannot find a account with name {} that is online at {}".format(account_name, restore_timestamp)) + else: + latest_account_to_restore = None + for account in restorable_database_accounts_list: + if account.account_name == account_name: + if latest_account_to_restore is None or account.creation_time > latest_account_to_restore.creation_time: + if account.deletion_time is None: + latest_account_to_restore = account + + restorable_database_account = latest_account_to_restore + + if restorable_database_account is None: + raise CLIError("Cannot find a database account with name {} that is online".format(account_name)) + + try: + from azure.cli.command_modules.cosmosdb._client_factory import cf_restorable_tables + restorable_tables_client = cf_restorable_tables(cmd.cli_ctx, []) + restorable_tables = restorable_tables_client.list( + restorable_database_account.location, + restorable_database_account.name) - if restorable_database_account is None: - raise CLIError("Cannot find a account with name {} that is online at {}".format(account_name, restore_timestamp)) + latest_table_delete_time, latest_table_create_or_recreate_time, table_rid = process_restorable_databases(restorable_tables, table_name) # pylint: disable=unused-variable + + # Table is alive if create or recreate timestamp is later than latest delete timestamp + table_alive = latest_table_create_or_recreate_time > latest_table_delete_time or latest_table_delete_time == datetime.datetime.max + + if table_alive: + raise CLIError("Table with name {} already exists in this account with name {} in location {}".format(table_name, account_name, restorable_database_account.location)) + + # """Subtracting -1 second from the deleted timestamp to restore till end of logchain""" + restore_time = latest_table_delete_time + datetime.timedelta(seconds=-1) + restore_timestamp = restore_time.strftime("%Y-%m-%dT%H:%M:%S%Z") + except ResourceNotFoundError: + raise CLIError("Cannot find a table account with name {} that is online in location {}".format(account_name, restorable_database_account.location)) # """Restores the deleted Azure Cosmos DB Table""" create_mode = CreateMode.restore.value @@ -2313,7 +2666,7 @@ def cli_cosmosdb_table_restore(cmd, ) if disable_ttl is not None: - restore_parameters.restore_with_ttl_disabled = disable_ttl + restore_parameters.restore_with_ttl_disabled = disable_ttl table_resource = TableCreateUpdateParameters( resource=TableResource(id=table_name, @@ -2325,3 +2678,4 @@ def cli_cosmosdb_table_restore(cmd, account_name, table_name, table_resource) + From 583371c4ef2a35969886f20592873f909225064d Mon Sep 17 00:00:00 2001 From: "Vivek Agarwal (from Dev Box)" Date: Sat, 2 Mar 2024 20:56:09 -0800 Subject: [PATCH 33/37] removing recordings --- .../test_cosmosdb_burst_capacity.yaml | 2130 ----- .../recordings/test_cosmosdb_collection.yaml | 3586 -------- .../test_cosmosdb_copy_cassandra.yaml | 847 -- .../recordings/test_cosmosdb_copy_mongo.yaml | 847 -- .../recordings/test_cosmosdb_copy_nosql.yaml | 2650 ------ .../recordings/test_cosmosdb_database.yaml | 2205 ----- .../latest/recordings/test_cosmosdb_dts.yaml | 925 -- ...le_per_region_per_partition_autoscale.yaml | 2008 ----- ...mosdb_gremlin_account_restore_command.yaml | 3777 -------- ..._gremlin_account_restore_using_create.yaml | 4070 --------- .../test_cosmosdb_gremlin_database.yaml | 1093 --- ...smosdb_gremlin_database_graph_restore.yaml | 5488 ----------- .../test_cosmosdb_gremlin_graph.yaml | 1574 ---- ...est_cosmosdb_gremlin_graph_backupinfo.yaml | 1888 ---- ..._cosmosdb_gremlin_restorable_commands.yaml | 1112 --- .../test_cosmosdb_materializedview.yaml | 2326 ----- .../recordings/test_cosmosdb_mongo_role.yaml | 2938 ------ .../test_cosmosdb_mongocluster_crud.yaml | 8010 ----------------- .../test_cosmosdb_mongocluster_firewall.yaml | 3817 -------- .../test_cosmosdb_mongodb_collection.yaml | 1236 --- ...osmosdb_mongodb_collection_adaptiveru.yaml | 1526 ---- ...osmosdb_mongodb_collection_backupinfo.yaml | 1794 ---- ...est_cosmosdb_mongodb_collection_merge.yaml | 1111 --- .../test_cosmosdb_mongodb_database.yaml | 1046 --- .../test_cosmosdb_mongodb_database_merge.yaml | 936 -- ...rmal_database_prov_collection_restore.yaml | 7148 --------------- ...ared_database_prov_collection_restore.yaml | 7284 --------------- ...osdb_mongodb_shared_resources_restore.yaml | 1108 --- .../test_cosmosdb_sql_container.yaml | 1237 --- ...est_cosmosdb_sql_container_adaptiveru.yaml | 1528 ---- ...est_cosmosdb_sql_container_backupinfo.yaml | 1886 ---- .../test_cosmosdb_sql_container_merge.yaml | 1113 --- .../test_cosmosdb_sql_continuous30days.yaml | 896 -- .../test_cosmosdb_sql_continuous7days.yaml | 896 -- .../test_cosmosdb_sql_database.yaml | 1085 --- .../test_cosmosdb_sql_database_merge.yaml | 938 -- ...l_migrate_periodic_to_continuous7days.yaml | 3552 -------- ...ormal_database_prov_container_restore.yaml | 7341 --------------- ..._cosmosdb_sql_normal_database_restore.yaml | 2672 ------ ...est_cosmosdb_sql_oldestRestorableTime.yaml | 2031 ----- ...cosmosdb_sql_priority_based_execution.yaml | 2798 ------ ...hared_database_prov_container_restore.yaml | 7621 ---------------- ..._cosmosdb_sql_shared_database_restore.yaml | 4668 ---------- ...test_cosmosdb_system_identity_restore.yaml | 5419 ----------- .../recordings/test_cosmosdb_table.yaml | 3450 ------- ...osmosdb_table_account_restore_command.yaml | 2964 ------ ...db_table_account_restore_using_create.yaml | 3783 -------- .../test_cosmosdb_table_backupinfo.yaml | 1425 --- ...st_cosmosdb_table_restorable_commands.yaml | 920 -- .../latest/recordings/test_cosmosdb_xrr.yaml | 3886 -------- ...st_cosmosdb_xrr_single_region_account.yaml | 3737 -------- ...cassandra_cluster_without_datacenters.yaml | 2090 ----- .../test_managed_cassandra_verify_lists.yaml | 5102 ----------- 53 files changed, 147518 deletions(-) delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_burst_capacity.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_collection.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_nosql.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_database.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_dts.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_account_restore_command.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_account_restore_using_create.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database_graph_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph_backupinfo.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_restorable_commands.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_materializedview.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongo_role.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongocluster_crud.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongocluster_firewall.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_adaptiveru.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_backupinfo.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_merge.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database_merge.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_normal_database_prov_collection_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_database_prov_collection_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_resources_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_adaptiveru.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_backupinfo.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_merge.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_continuous30days.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_continuous7days.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database_merge.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_migrate_periodic_to_continuous7days.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_oldestRestorableTime.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_priority_based_execution.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_prov_container_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_system_identity_restore.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_command.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_using_create.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_backupinfo.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_restorable_commands.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_xrr.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_xrr_single_region_account.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml delete mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_burst_capacity.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_burst_capacity.yaml deleted file mode 100644 index ca2cfb8e6c6..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_burst_capacity.yaml +++ /dev/null @@ -1,2130 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cosmosTest?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest","name":"cosmosTest","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DONT - CREATE NEW RESOURCES HERE":"TRUE"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:52:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "enableBurstCapacity": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:52:27.3226276Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:52:27.3226276Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:52:27.3226276Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.3226276Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.3226276Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ca11233-a600-43f4-b205-dd510ee7c0a7?api-version=2023-09-15-preview&t=638327047493844289&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=A67At7KLYbHv54Qh9zeCDmMNz74XemrQU6vSvnaO-iV6APjXD4NBSTuGD-p_tzEGVQNffnvh5rAvqfRhkGQxPH-OHNbnHLuQoCS7WMTpaQzgSCzVQMuZJ4r87HvnTSUFUMxJFO1_lzH7XgDAE5NO4GflTQj__0s9KiqARjKsOVfwrb2JQYbWcuPuIVOxd5RWiOpGhMQL9MloTwupUv0JkZhDe_MCG95JAPiZobd_4M61jLfkH-noeA586JCNvdTR0R8whjcZCIWZCYQh-b21ERoUXXZd0-whRIdt9lYTjt6-5Bf7_a09kF9diqolX4E0rbNCIsTuBwiWysULe6grAQ&h=K-EWytQz9g698ZoLZVUqcFYrIiV2L3duxjQkMw2Yt6k - cache-control: - - no-store, no-cache - content-length: - - '2522' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813/operationResults/5ca11233-a600-43f4-b205-dd510ee7c0a7?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ca11233-a600-43f4-b205-dd510ee7c0a7?api-version=2023-09-15-preview&t=638327047493844289&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=A67At7KLYbHv54Qh9zeCDmMNz74XemrQU6vSvnaO-iV6APjXD4NBSTuGD-p_tzEGVQNffnvh5rAvqfRhkGQxPH-OHNbnHLuQoCS7WMTpaQzgSCzVQMuZJ4r87HvnTSUFUMxJFO1_lzH7XgDAE5NO4GflTQj__0s9KiqARjKsOVfwrb2JQYbWcuPuIVOxd5RWiOpGhMQL9MloTwupUv0JkZhDe_MCG95JAPiZobd_4M61jLfkH-noeA586JCNvdTR0R8whjcZCIWZCYQh-b21ERoUXXZd0-whRIdt9lYTjt6-5Bf7_a09kF9diqolX4E0rbNCIsTuBwiWysULe6grAQ&h=K-EWytQz9g698ZoLZVUqcFYrIiV2L3duxjQkMw2Yt6k - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ca11233-a600-43f4-b205-dd510ee7c0a7?api-version=2023-09-15-preview&t=638327047493844289&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=A67At7KLYbHv54Qh9zeCDmMNz74XemrQU6vSvnaO-iV6APjXD4NBSTuGD-p_tzEGVQNffnvh5rAvqfRhkGQxPH-OHNbnHLuQoCS7WMTpaQzgSCzVQMuZJ4r87HvnTSUFUMxJFO1_lzH7XgDAE5NO4GflTQj__0s9KiqARjKsOVfwrb2JQYbWcuPuIVOxd5RWiOpGhMQL9MloTwupUv0JkZhDe_MCG95JAPiZobd_4M61jLfkH-noeA586JCNvdTR0R8whjcZCIWZCYQh-b21ERoUXXZd0-whRIdt9lYTjt6-5Bf7_a09kF9diqolX4E0rbNCIsTuBwiWysULe6grAQ&h=K-EWytQz9g698ZoLZVUqcFYrIiV2L3duxjQkMw2Yt6k - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ca11233-a600-43f4-b205-dd510ee7c0a7?api-version=2023-09-15-preview&t=638327047493844289&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=A67At7KLYbHv54Qh9zeCDmMNz74XemrQU6vSvnaO-iV6APjXD4NBSTuGD-p_tzEGVQNffnvh5rAvqfRhkGQxPH-OHNbnHLuQoCS7WMTpaQzgSCzVQMuZJ4r87HvnTSUFUMxJFO1_lzH7XgDAE5NO4GflTQj__0s9KiqARjKsOVfwrb2JQYbWcuPuIVOxd5RWiOpGhMQL9MloTwupUv0JkZhDe_MCG95JAPiZobd_4M61jLfkH-noeA586JCNvdTR0R8whjcZCIWZCYQh-b21ERoUXXZd0-whRIdt9lYTjt6-5Bf7_a09kF9diqolX4E0rbNCIsTuBwiWysULe6grAQ&h=K-EWytQz9g698ZoLZVUqcFYrIiV2L3duxjQkMw2Yt6k - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ca11233-a600-43f4-b205-dd510ee7c0a7?api-version=2023-09-15-preview&t=638327047493844289&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=A67At7KLYbHv54Qh9zeCDmMNz74XemrQU6vSvnaO-iV6APjXD4NBSTuGD-p_tzEGVQNffnvh5rAvqfRhkGQxPH-OHNbnHLuQoCS7WMTpaQzgSCzVQMuZJ4r87HvnTSUFUMxJFO1_lzH7XgDAE5NO4GflTQj__0s9KiqARjKsOVfwrb2JQYbWcuPuIVOxd5RWiOpGhMQL9MloTwupUv0JkZhDe_MCG95JAPiZobd_4M61jLfkH-noeA586JCNvdTR0R8whjcZCIWZCYQh-b21ERoUXXZd0-whRIdt9lYTjt6-5Bf7_a09kF9diqolX4E0rbNCIsTuBwiWysULe6grAQ&h=K-EWytQz9g698ZoLZVUqcFYrIiV2L3duxjQkMw2Yt6k - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ca11233-a600-43f4-b205-dd510ee7c0a7?api-version=2023-09-15-preview&t=638327047493844289&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=A67At7KLYbHv54Qh9zeCDmMNz74XemrQU6vSvnaO-iV6APjXD4NBSTuGD-p_tzEGVQNffnvh5rAvqfRhkGQxPH-OHNbnHLuQoCS7WMTpaQzgSCzVQMuZJ4r87HvnTSUFUMxJFO1_lzH7XgDAE5NO4GflTQj__0s9KiqARjKsOVfwrb2JQYbWcuPuIVOxd5RWiOpGhMQL9MloTwupUv0JkZhDe_MCG95JAPiZobd_4M61jLfkH-noeA586JCNvdTR0R8whjcZCIWZCYQh-b21ERoUXXZd0-whRIdt9lYTjt6-5Bf7_a09kF9diqolX4E0rbNCIsTuBwiWysULe6grAQ&h=K-EWytQz9g698ZoLZVUqcFYrIiV2L3duxjQkMw2Yt6k - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ca11233-a600-43f4-b205-dd510ee7c0a7?api-version=2023-09-15-preview&t=638327047493844289&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=A67At7KLYbHv54Qh9zeCDmMNz74XemrQU6vSvnaO-iV6APjXD4NBSTuGD-p_tzEGVQNffnvh5rAvqfRhkGQxPH-OHNbnHLuQoCS7WMTpaQzgSCzVQMuZJ4r87HvnTSUFUMxJFO1_lzH7XgDAE5NO4GflTQj__0s9KiqARjKsOVfwrb2JQYbWcuPuIVOxd5RWiOpGhMQL9MloTwupUv0JkZhDe_MCG95JAPiZobd_4M61jLfkH-noeA586JCNvdTR0R8whjcZCIWZCYQh-b21ERoUXXZd0-whRIdt9lYTjt6-5Bf7_a09kF9diqolX4E0rbNCIsTuBwiWysULe6grAQ&h=K-EWytQz9g698ZoLZVUqcFYrIiV2L3duxjQkMw2Yt6k - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2941' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2941' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2941' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2941' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "enableBurstCapacity": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '67' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57a12829-58d0-431d-bb1d-92c5afb783a3?api-version=2023-09-15-preview&t=638327049131413140&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=l8Uq4KUcWOs7eNi9noAoxyUnxKtXY4LftTpwVb3H-5TlYCHi0DAY8VNkjdTFBRX20I06ho5tevNyOI_juHJfjKGAQxFslE9I-QNUq4fk2Kab99oW1BI1NOSBivzcBbE73Lniov6_jPudGrF__Gx-9_Y-vokycByOMfBzSCuHp_n_zD4ATodne7O5p00eQmlt3QX6E2WEiqVpL0RVCobHUJKgz46RJySEeTdsQ7_l3UICwdwrgbA_lp-j6yT3CfdGtg_hty3Psnc-ANHd5sQQn7ZZhuAAoEo788lWIJ7GPm_vwxHDbEoqqgbtfyH35St3SdEb09RQkMTgJFAPFvXPww&h=DGCBrHKNs2QM-adFqYd7Ey52L6xbNtg81aTilVWS90w - cache-control: - - no-store, no-cache - content-length: - - '2940' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:12 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813/operationResults/57a12829-58d0-431d-bb1d-92c5afb783a3?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57a12829-58d0-431d-bb1d-92c5afb783a3?api-version=2023-09-15-preview&t=638327049131413140&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=l8Uq4KUcWOs7eNi9noAoxyUnxKtXY4LftTpwVb3H-5TlYCHi0DAY8VNkjdTFBRX20I06ho5tevNyOI_juHJfjKGAQxFslE9I-QNUq4fk2Kab99oW1BI1NOSBivzcBbE73Lniov6_jPudGrF__Gx-9_Y-vokycByOMfBzSCuHp_n_zD4ATodne7O5p00eQmlt3QX6E2WEiqVpL0RVCobHUJKgz46RJySEeTdsQ7_l3UICwdwrgbA_lp-j6yT3CfdGtg_hty3Psnc-ANHd5sQQn7ZZhuAAoEo788lWIJ7GPm_vwxHDbEoqqgbtfyH35St3SdEb09RQkMTgJFAPFvXPww&h=DGCBrHKNs2QM-adFqYd7Ey52L6xbNtg81aTilVWS90w - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57a12829-58d0-431d-bb1d-92c5afb783a3?api-version=2023-09-15-preview&t=638327049131413140&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=l8Uq4KUcWOs7eNi9noAoxyUnxKtXY4LftTpwVb3H-5TlYCHi0DAY8VNkjdTFBRX20I06ho5tevNyOI_juHJfjKGAQxFslE9I-QNUq4fk2Kab99oW1BI1NOSBivzcBbE73Lniov6_jPudGrF__Gx-9_Y-vokycByOMfBzSCuHp_n_zD4ATodne7O5p00eQmlt3QX6E2WEiqVpL0RVCobHUJKgz46RJySEeTdsQ7_l3UICwdwrgbA_lp-j6yT3CfdGtg_hty3Psnc-ANHd5sQQn7ZZhuAAoEo788lWIJ7GPm_vwxHDbEoqqgbtfyH35St3SdEb09RQkMTgJFAPFvXPww&h=DGCBrHKNs2QM-adFqYd7Ey52L6xbNtg81aTilVWS90w - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57a12829-58d0-431d-bb1d-92c5afb783a3?api-version=2023-09-15-preview&t=638327049131413140&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=l8Uq4KUcWOs7eNi9noAoxyUnxKtXY4LftTpwVb3H-5TlYCHi0DAY8VNkjdTFBRX20I06ho5tevNyOI_juHJfjKGAQxFslE9I-QNUq4fk2Kab99oW1BI1NOSBivzcBbE73Lniov6_jPudGrF__Gx-9_Y-vokycByOMfBzSCuHp_n_zD4ATodne7O5p00eQmlt3QX6E2WEiqVpL0RVCobHUJKgz46RJySEeTdsQ7_l3UICwdwrgbA_lp-j6yT3CfdGtg_hty3Psnc-ANHd5sQQn7ZZhuAAoEo788lWIJ7GPm_vwxHDbEoqqgbtfyH35St3SdEb09RQkMTgJFAPFvXPww&h=DGCBrHKNs2QM-adFqYd7Ey52L6xbNtg81aTilVWS90w - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2967' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2967' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2967' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2967' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "enableBurstCapacity": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '66' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b83712bc-9f00-4870-812a-747cc573c14e?api-version=2023-09-15-preview&t=638327049857799364&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hxqbr4dIZIadmtzCW-axZ2E_cJIvhQv23i7LjQPdF_IeCOLEcBUUd7INwPtqux8UgHSyI8NlSjGcxwUr7FfmII8ebc9TGzvEH1Se7PaFpcxXfH9vjzLclYkVT_hsXb1g3bnJAYjXJoPUF5gNhqDTY-Ph9BkzbksKnUu3n2MvicC5MJPN2e1PQuK4GEoChjYZzp1sS0WxzZQYlfExyNQ8P3MWpjYojNf4cvUcp76BAZ6pKiQjW1YmuIFzEqsH2jgsszRbiioCyCLi27F0d3M23rM6Wti2XUI9ISSX_1IELIEmWv5HRx8NydkjWLi232uF7d-WW8ViWAkXCszMhaUlsA&h=2GTkO9mejRJZEcOsKqcMnMn1RbEnT5Rq9IflCDshV6A - cache-control: - - no-store, no-cache - content-length: - - '2966' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:25 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813/operationResults/b83712bc-9f00-4870-812a-747cc573c14e?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b83712bc-9f00-4870-812a-747cc573c14e?api-version=2023-09-15-preview&t=638327049857799364&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hxqbr4dIZIadmtzCW-axZ2E_cJIvhQv23i7LjQPdF_IeCOLEcBUUd7INwPtqux8UgHSyI8NlSjGcxwUr7FfmII8ebc9TGzvEH1Se7PaFpcxXfH9vjzLclYkVT_hsXb1g3bnJAYjXJoPUF5gNhqDTY-Ph9BkzbksKnUu3n2MvicC5MJPN2e1PQuK4GEoChjYZzp1sS0WxzZQYlfExyNQ8P3MWpjYojNf4cvUcp76BAZ6pKiQjW1YmuIFzEqsH2jgsszRbiioCyCLi27F0d3M23rM6Wti2XUI9ISSX_1IELIEmWv5HRx8NydkjWLi232uF7d-WW8ViWAkXCszMhaUlsA&h=2GTkO9mejRJZEcOsKqcMnMn1RbEnT5Rq9IflCDshV6A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b83712bc-9f00-4870-812a-747cc573c14e?api-version=2023-09-15-preview&t=638327049857799364&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hxqbr4dIZIadmtzCW-axZ2E_cJIvhQv23i7LjQPdF_IeCOLEcBUUd7INwPtqux8UgHSyI8NlSjGcxwUr7FfmII8ebc9TGzvEH1Se7PaFpcxXfH9vjzLclYkVT_hsXb1g3bnJAYjXJoPUF5gNhqDTY-Ph9BkzbksKnUu3n2MvicC5MJPN2e1PQuK4GEoChjYZzp1sS0WxzZQYlfExyNQ8P3MWpjYojNf4cvUcp76BAZ6pKiQjW1YmuIFzEqsH2jgsszRbiioCyCLi27F0d3M23rM6Wti2XUI9ISSX_1IELIEmWv5HRx8NydkjWLi232uF7d-WW8ViWAkXCszMhaUlsA&h=2GTkO9mejRJZEcOsKqcMnMn1RbEnT5Rq9IflCDshV6A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b83712bc-9f00-4870-812a-747cc573c14e?api-version=2023-09-15-preview&t=638327049857799364&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hxqbr4dIZIadmtzCW-axZ2E_cJIvhQv23i7LjQPdF_IeCOLEcBUUd7INwPtqux8UgHSyI8NlSjGcxwUr7FfmII8ebc9TGzvEH1Se7PaFpcxXfH9vjzLclYkVT_hsXb1g3bnJAYjXJoPUF5gNhqDTY-Ph9BkzbksKnUu3n2MvicC5MJPN2e1PQuK4GEoChjYZzp1sS0WxzZQYlfExyNQ8P3MWpjYojNf4cvUcp76BAZ6pKiQjW1YmuIFzEqsH2jgsszRbiioCyCLi27F0d3M23rM6Wti2XUI9ISSX_1IELIEmWv5HRx8NydkjWLi232uF7d-WW8ViWAkXCszMhaUlsA&h=2GTkO9mejRJZEcOsKqcMnMn1RbEnT5Rq9IflCDshV6A - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2966' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-burst-capacity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2966' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:02.3241368+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d2a92d98-16a1-4407-861a-d77d883969c0","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-westus","locationName":"West - US","documentEndpoint":"https://burst-test-38129749813-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:02.3241368+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2966' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:34 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationResults/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uYAxIIQYWkgqZQu6FWuGMKJYTlbhEEj6NIRM-rhgeRMJh5arwkHbvo62gDRl4Je9e-dzzvrMytcc2X5me3ca3fuW_A799Rk6zlQzmSrX8DvR-503dZl4TGGDsNpj6sssOrV0LDX-joYDsm0YN0cd0Cg2yRyg1Y7c9agyFxaGFqMZSsGT5pPLJeGs6sTIdGqTZ2fqe9v3AiCMv4vyammdHYqGwxhcMSqvhNrqOPssEQ1gIkJYc2Su23XaOmnYBpFyDaQBW9iEsyLAd7togYfIk5t--KoC4P6VgGUfIZdgOGTqPMB17_If46uNQLMpCQ4ccJ5IZfhob24Px9ZnzTpveA&h=7DzxQLvmWzbFl_Pxi1Ix7dgeu273Hh6HZpzKMwoOUF4 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fdabd008-cc71-4945-8997-a47194f6dafd?api-version=2023-09-15&t=638327050541187478&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tq5rc0YB40spkTwXuPIXBqQvMz7Mkwlegh5GEVPnyjHbUtOJlrl-wzjmvjOX1Es-tWSfiaPe7hqWcfVGYfMHjXDOzk93aWiXbQEksvyk6HhhhmcR5l4ljTiMXvVGV1aaBtbDF5kA7SQhQWO07_wM1NFQYDwJb4PJnTBwc_MIcF89cIeFbTLSMsW2TDEecYhZkNYl0pSIa7HWSe7e7i1AzTvnhPwSd8HTs66Psy0-1_ZU6rd12e8Z-tMaw2y39FUAD1mUPRSamymEJouuEWp06km4EQsTcyb9EAOw80movl4qngnj3gIxfcNmdLeMsckSYd9ncOhHgvC_KdKKSifmdA&h=S7a7cLVAVKbT6QYwGA9AwEjp3_BwADauhq6W6kwheU8 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_collection.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_collection.yaml deleted file mode 100644 index ab29dc90746..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_collection.yaml +++ /dev/null @@ -1,3586 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.1 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_collection000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001","name":"cli_test_cosmosdb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T17:04:01Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '346' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 26 Sep 2022 17:04:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '244' - Content-Type: - - application/json - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:04:08.9378785Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:04:08.9378785Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:04:08.9378785Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:04:08.9378785Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:04:08.9378785Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/542e90ca-53c9-4f2b-b1c9-ef37ca5f36a1?api-version=2022-08-15-preview - cache-control: - - no-store, no-cache - content-length: - - '2261' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:04:11 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/542e90ca-53c9-4f2b-b1c9-ef37ca5f36a1?api-version=2022-08-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/542e90ca-53c9-4f2b-b1c9-ef37ca5f36a1?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:04:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/542e90ca-53c9-4f2b-b1c9-ef37ca5f36a1?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:05:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/542e90ca-53c9-4f2b-b1c9-ef37ca5f36a1?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:05:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/542e90ca-53c9-4f2b-b1c9-ef37ca5f36a1?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/542e90ca-53c9-4f2b-b1c9-ef37ca5f36a1?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:05:45.1802282Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:05:45.1802282Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:05:45.1802282Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:05:45.1802282Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2556' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:05:45.1802282Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:05:45.1802282Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:05:45.1802282Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:05:45.1802282Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2556' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database create - Connection: - - keep-alive - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:41 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: '{"id":"cli000004"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '18' - Content-Type: - - application/json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:41 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: POST - uri: https://cli000003-westus.documents.azure.com/dbs - response: - body: - string: '{"id":"cli000004","_rid":"AoY8AA==","_self":"dbs\/AoY8AA==\/","_etag":"\"00007207-0000-0700-0000-6331dc230000\"","_colls":"colls\/","_users":"users\/","_ts":1664212003}' - headers: - cache-control: - - no-store, no-cache - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:42 GMT - etag: - - '"00007207-0000-0700-0000-6331dc230000"' - lsn: - - '8' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 658e0c54-a7d9-4e3b-a791-3b109279fd37 - x-ms-cosmos-llsn: - - '8' - x-ms-cosmos-quorum-acked-llsn: - - '7' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '7' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:02.919 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '7' - x-ms-request-charge: - - '4.95' - x-ms-request-duration-ms: - - '17.751' - x-ms-resource-quota: - - databases=1000; - x-ms-resource-usage: - - databases=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#8 - x-ms-transport-request-id: - - '189942' - x-ms-xp-role: - - '1' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d -c --default-ttl - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -n -d -c --default-ttl - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:42 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '156' - Content-Type: - - application/json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:42 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: POST - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ - response: - body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212004,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007407-0000-0700-0000-6331dc240000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - etag: - - '"00007407-0000-0700-0000-6331dc240000"' - lsn: - - '1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 67659ab9-be4a-4cbb-9b68-d6f7798155e2 - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-cosmos-item-llsn: - - '1' - x-ms-cosmos-llsn: - - '1' - x-ms-cosmos-quorum-acked-llsn: - - '1' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-documentdb-collection-index-transformation-progress: - - '100' - x-ms-documentdb-partitionkeyrangeid: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '1' - x-ms-item-lsn: - - '1' - x-ms-last-state-change-utc: - - Mon, 26 Sep 2022 16:30:18.306 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '1' - x-ms-request-charge: - - '1' - x-ms-request-duration-ms: - - '0.373' - x-ms-resource-quota: - - functions=50;storedProcedures=100;triggers=25;documentSize=10240;documentsSize=10485760;documentsCount=-1;collectionSize=10485760; - x-ms-resource-usage: - - functions=0;storedProcedures=0;triggers=0;documentSize=0;documentsSize=0;documentsCount=0;collectionSize=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#1 - x-ms-transport-request-id: - - '2' - x-ms-xp-role: - - '1' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:43 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/offers - response: - body: - string: '{"_rid":"","Offers":[{"resource":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","offerType":"Invalid","offerResourceId":"AoY8AO79UOo=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"eCkI","_rid":"eCkI","_self":"offers\/eCkI\/","_etag":"\"00007507-0000-0700-0000-6331dc240000\"","_ts":1664212004}],"_count":1}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/offers - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - lsn: - - '9' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 2e4d8c25-917c-481f-bc83-4b901da9345a - x-ms-cosmos-llsn: - - '9' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '9' - x-ms-item-count: - - '1' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:10.233 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '2' - x-ms-request-duration-ms: - - '0.369' - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#9 - x-ms-transport-request-id: - - '400353' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection show - Connection: - - keep-alive - ParameterSetName: - - -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:44 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:44 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ - response: - body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212004,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007407-0000-0700-0000-6331dc240000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/dbs/cli76mxgd5vtneo/colls/clixjfef44d52ik/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:45 GMT - etag: - - '"00007407-0000-0700-0000-6331dc240000"' - lsn: - - '1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 0e704e3f-95a3-4016-86ec-dc6cbc75b6d6 - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-content-path: - - AoY8AA== - x-ms-cosmos-item-llsn: - - '1' - x-ms-cosmos-llsn: - - '1' - x-ms-documentdb-collection-index-transformation-progress: - - '100' - x-ms-documentdb-partitionkeyrangeid: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '1' - x-ms-item-lsn: - - '1' - x-ms-last-state-change-utc: - - Mon, 26 Sep 2022 16:30:28.045 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '1' - x-ms-request-duration-ms: - - '0.473' - x-ms-resource-quota: - - functions=50;storedProcedures=100;triggers=25;documentSize=10240;documentsSize=10485760;documentsCount=-1;collectionSize=10485760; - x-ms-resource-usage: - - functions=0;storedProcedures=0;triggers=0;documentSize=0;documentsSize=0;documentsCount=0;collectionSize=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#1 - x-ms-transport-request-id: - - '1' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:44 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/offers - response: - body: - string: '{"_rid":"","Offers":[{"resource":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","offerType":"Invalid","offerResourceId":"AoY8AO79UOo=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"eCkI","_rid":"eCkI","_self":"offers\/eCkI\/","_etag":"\"00007507-0000-0700-0000-6331dc240000\"","_ts":1664212004}],"_count":1}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/offers - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:45 GMT - lsn: - - '9' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - afd2eba1-6f4c-456a-91e1-9e67403eee3a - x-ms-cosmos-llsn: - - '9' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '9' - x-ms-item-count: - - '1' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:08.756 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '2' - x-ms-request-duration-ms: - - '0.376' - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#9 - x-ms-transport-request-id: - - '402374' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection exists - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:45 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"clixjfef44d52ik"}]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '103' - Content-Type: - - application/query+json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:45 GMT - x-ms-documentdb-isquery: - - 'true' - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: POST - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ - response: - body: - string: '{"_rid":"AoY8AA==","DocumentCollections":[{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212004,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007407-0000-0700-0000-6331dc240000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}],"_count":1}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - lsn: - - '9' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 236cd9da-9965-4f7b-a401-c4fafcf08803 - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-content-path: - - AoY8AA== - x-ms-cosmos-is-partition-key-delete-pending: - - 'false' - x-ms-cosmos-llsn: - - '9' - x-ms-cosmos-query-execution-info: - - '{"reverseRidEnabled":false,"reverseIndexScan":false}' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '9' - x-ms-item-count: - - '1' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:10.233 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '5.64' - x-ms-request-duration-ms: - - '0.658' - x-ms-resource-quota: - - collections=5000; - x-ms-resource-usage: - - collections=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#9 - x-ms-transport-request-id: - - '400354' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection exists - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:46 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"invalid"}]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '95' - Content-Type: - - application/query+json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:46 GMT - x-ms-documentdb-isquery: - - 'true' - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: POST - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ - response: - body: - string: '{"_rid":"AoY8AA==","DocumentCollections":[],"_count":0}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:47 GMT - lsn: - - '9' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 8e4dd25f-caa3-4b58-9639-156b7ddcd0e8 - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-content-path: - - AoY8AA== - x-ms-cosmos-is-partition-key-delete-pending: - - 'false' - x-ms-cosmos-llsn: - - '9' - x-ms-cosmos-query-execution-info: - - '{"reverseRidEnabled":false,"reverseIndexScan":false}' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '9' - x-ms-item-count: - - '0' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:10.233 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '5.58' - x-ms-request-duration-ms: - - '0.522' - x-ms-resource-quota: - - collections=5000; - x-ms-resource-usage: - - collections=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#9 - x-ms-transport-request-id: - - '420888' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:47 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:47 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ - response: - body: - string: '{"_rid":"AoY8AA==","DocumentCollections":[{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212004,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007407-0000-0700-0000-6331dc240000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}],"_count":1}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/dbs/cli76mxgd5vtneo/colls/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:48 GMT - lsn: - - '9' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - d9fe19e6-505f-4b8f-a716-513e3ffc8c1a - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-content-path: - - AoY8AA== - x-ms-cosmos-llsn: - - '9' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '9' - x-ms-item-count: - - '1' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:08.756 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '2' - x-ms-request-duration-ms: - - '0.619' - x-ms-resource-quota: - - collections=5000; - x-ms-resource-usage: - - collections=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#9 - x-ms-transport-request-id: - - '286622' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection update - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --throughput -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection update - Connection: - - keep-alive - ParameterSetName: - - --throughput -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:48 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:48 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ - response: - body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212004,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007407-0000-0700-0000-6331dc240000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/dbs/cli76mxgd5vtneo/colls/clixjfef44d52ik/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:49 GMT - etag: - - '"00007407-0000-0700-0000-6331dc240000"' - lsn: - - '1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 7e854606-1f2c-4433-84ef-58ae522a6bcb - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-content-path: - - AoY8AA== - x-ms-cosmos-item-llsn: - - '1' - x-ms-cosmos-llsn: - - '1' - x-ms-cosmos-quorum-acked-llsn: - - '1' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-documentdb-collection-index-transformation-progress: - - '100' - x-ms-documentdb-partitionkeyrangeid: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '1' - x-ms-item-lsn: - - '1' - x-ms-last-state-change-utc: - - Mon, 26 Sep 2022 16:30:18.306 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '1' - x-ms-request-charge: - - '1' - x-ms-request-duration-ms: - - '0.404' - x-ms-resource-quota: - - functions=50;storedProcedures=100;triggers=25;documentSize=10240;documentsSize=10485760;documentsCount=-1;collectionSize=10485760; - x-ms-resource-usage: - - functions=0;storedProcedures=0;triggers=0;documentSize=0;documentsSize=0;documentsCount=0;collectionSize=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#1 - x-ms-transport-request-id: - - '1' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:48 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/offers - response: - body: - string: '{"_rid":"","Offers":[{"resource":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","offerType":"Invalid","offerResourceId":"AoY8AO79UOo=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"eCkI","_rid":"eCkI","_self":"offers\/eCkI\/","_etag":"\"00007507-0000-0700-0000-6331dc240000\"","_ts":1664212004}],"_count":1}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/offers - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:49 GMT - lsn: - - '9' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - a185f6d0-8978-441b-abb6-902122ea7e8c - x-ms-cosmos-llsn: - - '9' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '9' - x-ms-item-count: - - '1' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:08.756 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '2' - x-ms-request-duration-ms: - - '0.345' - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#9 - x-ms-transport-request-id: - - '402377' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: '{"resource":"dbs/AoY8AA==/colls/AoY8AO79UOo=/","offerType":"Invalid","offerResourceId":"AoY8AO79UOo=","offerVersion":"V2","content":{"offerThroughput":500,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"eCkI","_rid":"eCkI","_self":"offers/eCkI/","_etag":"\"00007507-0000-0700-0000-6331dc240000\"","_ts":1664212004}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '420' - Content-Type: - - application/json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:48 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: PUT - uri: https://cli000003-westus.documents.azure.com/offers/eCkI/ - response: - body: - string: '{"resource":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","offerType":"Invalid","offerResourceId":"AoY8AO79UOo=","offerVersion":"V2","content":{"offerThroughput":500,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":500,"maxConsumedStorageEverInKB":0}},"id":"eCkI","_rid":"eCkI","_self":"offers\/eCkI\/","_etag":"\"00007807-0000-0700-0000-6331dc2a0000\"","_ts":1664212010}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/offers/eCkI/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:49 GMT - etag: - - '"00007807-0000-0700-0000-6331dc2a0000"' - lsn: - - '10' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 7e485df2-3a28-4de4-add3-d13043ac6eb7 - x-ms-cosmos-llsn: - - '10' - x-ms-cosmos-quorum-acked-llsn: - - '9' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '9' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:02.919 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '9' - x-ms-request-charge: - - '9.9' - x-ms-request-duration-ms: - - '17.243' - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#10 - x-ms-transport-request-id: - - '215480' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection update - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --default-ttl -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection update - Connection: - - keep-alive - ParameterSetName: - - --default-ttl -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:49 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:49 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ - response: - body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212004,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007407-0000-0700-0000-6331dc240000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/dbs/cli76mxgd5vtneo/colls/clixjfef44d52ik/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:50 GMT - etag: - - '"00007407-0000-0700-0000-6331dc240000"' - lsn: - - '2' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 8a90d8a2-c00a-4dbd-8584-d174de63775b - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-content-path: - - AoY8AA== - x-ms-cosmos-item-llsn: - - '1' - x-ms-cosmos-llsn: - - '2' - x-ms-documentdb-collection-index-transformation-progress: - - '100' - x-ms-documentdb-partitionkeyrangeid: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '2' - x-ms-item-lsn: - - '1' - x-ms-last-state-change-utc: - - Mon, 26 Sep 2022 16:30:26.213 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '1' - x-ms-request-duration-ms: - - '0.412' - x-ms-resource-quota: - - functions=50;storedProcedures=100;triggers=25;documentSize=10240;documentsSize=10485760;documentsCount=-1;collectionSize=10485760; - x-ms-resource-usage: - - functions=0;storedProcedures=0;triggers=0;documentSize=0;documentsSize=0;documentsCount=0;collectionSize=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#2 - x-ms-transport-request-id: - - '1' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212004,"_self":"dbs/AoY8AA==/colls/AoY8AO79UOo=/","_etag":"\"00007407-0000-0700-0000-6331dc240000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","defaultTtl":1000}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '567' - Content-Type: - - application/json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:49 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: PUT - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ - response: - body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"defaultTtl":1000,"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212011,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007907-0000-0700-0000-6331dc2b0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/dbs/cli76mxgd5vtneo/colls/clixjfef44d52ik/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:50 GMT - etag: - - '"00007907-0000-0700-0000-6331dc2b0000"' - lsn: - - '3' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - a99e5496-704e-4112-b3c3-2a0eaa008c2a - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-cosmos-llsn: - - '3' - x-ms-cosmos-quorum-acked-llsn: - - '2' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-documentdb-partitionkeyrangeid: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '2' - x-ms-last-state-change-utc: - - Mon, 26 Sep 2022 16:30:18.306 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '2' - x-ms-request-charge: - - '9.9' - x-ms-request-duration-ms: - - '7.568' - x-ms-resource-quota: - - functions=50;storedProcedures=100;triggers=25;documentSize=10240;documentsSize=10485760;documentsCount=-1;collectionSize=10485760; - x-ms-resource-usage: - - functions=0;storedProcedures=0;triggers=0;documentSize=0;documentsSize=0;documentsCount=0;collectionSize=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#3 - x-ms-transport-request-id: - - '1' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection update - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --default-ttl -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection update - Connection: - - keep-alive - ParameterSetName: - - --default-ttl -g -n -d -c - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:50 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:50 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ - response: - body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"defaultTtl":1000,"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212011,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007907-0000-0700-0000-6331dc2b0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/dbs/cli76mxgd5vtneo/colls/clixjfef44d52ik/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:51 GMT - etag: - - '"00007907-0000-0700-0000-6331dc2b0000"' - lsn: - - '3' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 3b9f4497-f919-4ffe-9f65-cf1390a38aa6 - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-content-path: - - AoY8AA== - x-ms-cosmos-item-llsn: - - '3' - x-ms-cosmos-llsn: - - '3' - x-ms-cosmos-quorum-acked-llsn: - - '3' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-documentdb-collection-index-transformation-progress: - - '100' - x-ms-documentdb-partitionkeyrangeid: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '3' - x-ms-item-lsn: - - '3' - x-ms-last-state-change-utc: - - Mon, 26 Sep 2022 16:30:18.306 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '3' - x-ms-request-charge: - - '1' - x-ms-request-duration-ms: - - '0.481' - x-ms-resource-quota: - - functions=50;storedProcedures=100;triggers=25;documentSize=10240;documentsSize=10485760;documentsCount=-1;collectionSize=10485760; - x-ms-resource-usage: - - functions=0;storedProcedures=0;triggers=0;documentSize=0;documentsSize=0;documentsCount=0;collectionSize=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#3 - x-ms-transport-request-id: - - '1' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212011,"_self":"dbs/AoY8AA==/colls/AoY8AO79UOo=/","_etag":"\"00007907-0000-0700-0000-6331dc2b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '549' - Content-Type: - - application/json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:51 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: PUT - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ - response: - body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"AoY8AO79UOo=","_ts":1664212012,"_self":"dbs\/AoY8AA==\/colls\/AoY8AO79UOo=\/","_etag":"\"00007a07-0000-0700-0000-6331dc2c0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/dbs/cli76mxgd5vtneo/colls/clixjfef44d52ik/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:51 GMT - etag: - - '"00007a07-0000-0700-0000-6331dc2c0000"' - lsn: - - '4' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - cb6278f3-5bb7-4afe-8511-b7c9436ab4d3 - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-cosmos-llsn: - - '4' - x-ms-cosmos-quorum-acked-llsn: - - '3' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-documentdb-partitionkeyrangeid: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '3' - x-ms-last-state-change-utc: - - Mon, 26 Sep 2022 16:30:18.306 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '3' - x-ms-request-charge: - - '9.9' - x-ms-request-duration-ms: - - '7.369' - x-ms-resource-quota: - - functions=50;storedProcedures=100;triggers=25;documentSize=10240;documentsSize=10485760;documentsCount=-1;collectionSize=10485760; - x-ms-resource-usage: - - functions=0;storedProcedures=0;triggers=0;documentSize=0;documentsSize=0;documentsCount=0;collectionSize=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#4 - x-ms-transport-request-id: - - '2' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d -c --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"sYXrv0NYwPKhSKhPINej6gGQ5dsAJhALqqcpFRVKzsTE4IBTfyGyLm5srAG9XANvHMg1GkTnU90Byccg9kCQZA==","secondaryMasterKey":"NBkzbnMkxXKJx29Gt4tZnHgMnoAbctD2bE2PqxP7cw9Y4cRsqdtzOaGlKlAih0uA3MYBCSjiJvx6TiBZnlFycQ==","primaryReadonlyMasterKey":"KeyAAWDcS4n0Mp9YCoodi4i8QTOg2nTCJl7t6tkwOik0mVuxhPJypNF2hIXSQjEQlwAqpveBl35Qn8aHcJcRZw==","secondaryReadonlyMasterKey":"WUu9HqhZVI22PsEB1etVWdd4Op3exRHfy2WA5xNfeL9mHLXG8TJ3CaRFKAbXJMu4FxN7vQdF2V50yNt5UKyceA=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -d -c --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:45.1802282Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"135f2e8e-ea9f-4469-9d0e-be00e8e60254","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2159' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:51 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://clipwhflejozmqc.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:52 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: DELETE - uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - collection-partition-index: - - '0' - collection-service-index: - - '0' - content-length: - - '0' - content-location: - - https://clipwhflejozmqc-westus.documents.azure.com/dbs/cli76mxgd5vtneo/colls/clixjfef44d52ik/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:52 GMT - lsn: - - '13' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - x-ms-activity-id: - - cb8bce96-25bb-4718-831a-5519cebe1a6a - x-ms-alt-content-path: - - dbs/cli76mxgd5vtneo - x-ms-cosmos-llsn: - - '13' - x-ms-cosmos-quorum-acked-llsn: - - '12' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '12' - x-ms-last-state-change-utc: - - Sun, 18 Sep 2022 03:15:02.919 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '12' - x-ms-request-charge: - - '4.95' - x-ms-request-duration-ms: - - '24.028' - x-ms-resource-quota: - - collections=5000; - x-ms-resource-usage: - - collections=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#13 - x-ms-transport-request-id: - - '225769' - x-ms-xp-role: - - '1' - status: - code: 204 - message: No Content -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml deleted file mode 100644 index 02db0723c0c..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml +++ /dev/null @@ -1,847 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2024-02-19T18:02:41Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '334' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 19 Feb 2024 18:02:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4471B7E958CD4093B039B951A187E04C Ref B: MAA201060515037 Ref C: 2024-02-19T18:02:45Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}], - "apiProperties": {}, "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '291' - Content-Type: - - application/json - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:02:49.6701254Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7f5a9a10-6646-4216-9ac8-d76366dc53fc","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:02:49.6701254Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:02:49.6701254Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:02:49.6701254Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:02:49.6701254Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I - cache-control: - - no-store, no-cache - content-length: - - '2774' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:02:50 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712524094&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=DfEcFzzfyQzgrUF35GbUgtGGL-ei7RKuteo2Nc459I4RUqVjCvqqoKBlC18pvuMu8W-7rjsmhTwGpVJv6iBYVXwkfpJ2ZHtQuPqCpgmGV-kMHtgTFBUo5qJj-tv5XWsrgalKJ2MQWh8gT7CFESX0mx0KRaG1IIro4ulIye0QKk6fopaAFktpnI08Yc0hloJNCFZEvxkP3koJW7R5_QhWDntzxfKbUrbMaG1mVfVDcTMLcRomn335o30sM7Rig7cmMN7sbV4VoTZdj9CJFyuKqoJvPAbQlP6ME5Cq--HtdODaoL-QsCi66p8MxRx1yosRVWnGjdpq-i-fzu5hmZZTpg&h=KwLNFGfuGB1Bzr6r-9bnqnFfflqXXz6SKI8mzXOHKSI - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: BD3E2C9CC5BC4B469F81B25C8B0A41A1 Ref B: MAA201060516039 Ref C: 2024-02-19T18:02:45Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:03:20 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: A421FC34C2F14D1188267B0C2652DB41 Ref B: MAA201060516039 Ref C: 2024-02-19T18:03:21Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:03:51 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 084313F6F18E4A61961573F09B134FE1 Ref B: MAA201060516039 Ref C: 2024-02-19T18:03:51Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:22 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 59AF3E43DB8642BB92EF37D4D81C3DCA Ref B: MAA201060516039 Ref C: 2024-02-19T18:04:22Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc1ac1b4-85a3-411f-a06d-193baa25b571?api-version=2024-02-15-preview&t=638439625712367820&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=CZpVH6DEwgS5T-FjpdEQ8d24eXxm8fo-T1gYDemeZfx5DyDX2rULkkacBmN9HQMRmTgfLu2VrC9ZedSWOzWZE0uqguDhsVmw7YOuX2UWevaksVvEC_tcl6oXurmoYIE7TcUF370-D2AtX9VvMtxBlEWPZVGbRVrKEVdlypAQXCKe_vyq-kFpD_7m0Ub0sReH0E_6BTPvAC2_9SiVXWDM91eosR8U6aUjhIBneMJw-3vouKeUI4olPsq1r3fyaIp--Rh8_IC48B7CGp6zRlnAfGJ4qSmIbGIFxt4J1sutnXURnkIf-bxuyEJJA0zW5d7Gw0iBswC8Ff5MORjR_5AiVA&h=xjt9T3hD8ObTboswQNUOJXnYhcVFpGo7B0VUhdJAG5I - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:53 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 59C174E9B26B4330B6358795064B5C33 Ref B: MAA201060516039 Ref C: 2024-02-19T18:04:53Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:16.3154519Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7f5a9a10-6646-4216-9ac8-d76366dc53fc","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3200' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:54 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 00857F17688A4C7092110A569754C229 Ref B: MAA201060516039 Ref C: 2024-02-19T18:04:53Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:16.3154519Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7f5a9a10-6646-4216-9ac8-d76366dc53fc","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3200' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:55 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C6A3D1CF82DB473999F6ED9E1432C61D Ref B: MAA201060516039 Ref C: 2024-02-19T18:04:55Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:16.3154519Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7f5a9a10-6646-4216-9ac8-d76366dc53fc","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:16.3154519Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3200' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: A3DD3144EF42482EBFFEF7A69EA815D5 Ref B: MAA201060516053 Ref C: 2024-02-19T18:04:56Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"source": {"component": "CosmosDBCassandra", "keyspaceName": - "cli000002", "tableName": "cli000003"}, "destination": {"component": "CosmosDBCassandra", - "keyspaceName": "cli000002", "tableName": "cli000004"}, "mode": "Offline"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy create - Connection: - - keep-alive - Content-Length: - - '242' - Content-Type: - - application/json - ParameterSetName: - - -g --job-name --src-account --dest-account --src-cassandra --dest-cassandra - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:04:59.0283306Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '627' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:58 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 01F9AD7D993F428585E58F2C5DF1F966 Ref B: MAA201060514021 Ref C: 2024-02-19T18:04:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:04:59Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '619' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:00 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 0720B78AC8FF4BC0BF2D9848EBF9D686 Ref B: MAA201060513035 Ref C: 2024-02-19T18:04:59Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy list - Connection: - - keep-alive - ParameterSetName: - - -g --account-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2024-02-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:04:59Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '631' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:01 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 49903A3BC32E44338CA743E30CC98A11 Ref B: MAA201060513027 Ref C: 2024-02-19T18:05:01Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy pause - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-19T18:05:04Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '618' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:04 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: C7E3ADDD46184FB994871B1635B887E9 Ref B: MAA201060513033 Ref C: 2024-02-19T18:05:02Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-19T18:05:04Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '618' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:05 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 57B50B5619E7415DA6102F24AAD36105 Ref B: MAA201060516027 Ref C: 2024-02-19T18:05:05Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy resume - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:07Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '619' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:06 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: EB4E1B0736D3470F91636267C33C8AFD Ref B: MAA201060516021 Ref C: 2024-02-19T18:05:06Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:07Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '619' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C7A37662D62747539D996C4154BFFF47 Ref B: MAA201060514027 Ref C: 2024-02-19T18:05:07Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy cancel - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-19T18:05:09Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '621' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 9EBF4C7B8DD741C8A283968D06EFB1F9 Ref B: MAA201060513035 Ref C: 2024-02-19T18:05:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-19T18:05:09Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '621' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:09 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 7CD6F4B1F78F4B589500FDCC8CAC36EA Ref B: MAA201060516031 Ref C: 2024-02-19T18:05:10Z' - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml deleted file mode 100644 index a025fb7d5b2..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml +++ /dev/null @@ -1,847 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy_mongo000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001","name":"cli_test_cosmosdb_copy_mongo000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2024-02-19T18:02:41Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '346' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 19 Feb 2024 18:02:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6A80B5633EF34FB3AA0D7744BFEFA783 Ref B: MAA201060515045 Ref C: 2024-02-19T18:02:48Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "kind": "MongoDB", "properties": {"locations": [{"locationName": - "eastus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard", "capabilities": [{"name": "EnableMongo"}], "apiProperties": {}, - "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '278' - Content-Type: - - application/json - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:02:52.521284Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"95efbc1e-885f-46ec-9d8c-23650815d831","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:02:52.521284Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:02:52.521284Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:02:52.521284Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:02:52.521284Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k - cache-control: - - no-store, no-cache - content-length: - - '2801' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:02:54 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740471180&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=pPkUj4J0sclcYdB730CgmaGrNhZsTrhAW4AYd_O9cpy8kFQh28Ect3eNAJUV-A9-5_Aik4Bb2vIAYC_qehxUJQKPhClq01MULPTUdVaDXcVMXRgUfGjm9YxXvwQjUqDuxMNPEZJbmY8CH69PLdbwNsGZ1nBLAZOVpBkxpK__wjsqD0Wmmf0LA3bljRDjmBYJbw2MMezkrV0KjHsEUL_CF2rBuS1rlrKamTIksGpvCR1zIKJbVUpe9Zja-PLaozAP7PKgA03dlh-lWAd8HGQcC7SGOTvFD462KM_bPDzxR_Fs8c6tYj6iXzTVdAIB2KBIIn03LPzJTjyBENa3RzeHLw&h=HTQd3PLGdYesB4YE867qwtL9YiUGI7nLq0uDN1v2uLQ - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: FDB8E9508876403C8E358133B287621E Ref B: MAA201060515047 Ref C: 2024-02-19T18:02:48Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:03:24 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: FDA70EED33D34D46A9F514FBC9113BAE Ref B: MAA201060515047 Ref C: 2024-02-19T18:03:24Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:03:55 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 3FA8140A4D294DF2A8450FACEB089DB4 Ref B: MAA201060515047 Ref C: 2024-02-19T18:03:54Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:25 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 32369FF1CD3B4BA2AAFF8CDBF7CF692E Ref B: MAA201060515047 Ref C: 2024-02-19T18:04:25Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e97356b4-8b05-4b36-8787-f7962dae94fa?api-version=2024-02-15-preview&t=638439625740314923&c=MIIHHjCCBgagAwIBAgITfwKWMg6goKCq4WwU2AAEApYyDjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMTAzMDI3WhcNMjUwMTI0MTAzMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALMk1pBZQQoNY8tos8XBaEjHjcdWubRHrQk5CqKcX3tpFfukMI0_PVZK-Kr7xkZFQTYp_ItaM2RPRDXx-0W9-mmrUBKvdcQ0rdjcSXDek7GvWS29F5sDHojD1v3e9k2jJa4cVSWwdIguvXmdUa57t1EHxqtDzTL4WmjXitzY8QOIHLMRLyXUNg3Gqfxch40cmQeBoN4rVMlP31LizDfdwRyT1qghK7vgvworA3D9rE00aM0n7TcBH9I0mu-96JE0gSX1FWXctlEcmdwQmXj_U0sZCu11_Yr6Oa34bmUQHGc3hDvO226L1Au-QsLuRWFLbKJ-0wmSV5b3CbU1kweD5LUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQuoVkxdNhVmd-S8fHDZYn-1n9OaDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAG6_wraDi57hTBBW8zI9n7Dnd66DCf9ok7v4gM1-qxp2gZjb_eEnriIZQcCD3jLvW4q5_59OicwRN13rP_GY33E9HLUgw245zqSCIGd6gYnaCyxPNdhEa-W6-ZBBw1iWX8l-RJqDOUYwkrI7Lw-iea9CuiTbLjw_BJ5NGmd8D5GOVxFRnhJ7RBRrwa6p2_UqZqvdg8kneiyymbidRJCOZ_xkZ8OwL-ini_ge44CIEB7rvqwdf7DfwOjoDr7JU88gM0QgcE7kzx7cVUZpaJAXXhxLvOcb0MBuRiEyexrV6HrbOTafc9naJB26ejIXNHLsuIhpMMa5NEK60hGauLEMNlY&s=FNKNxz3BPz4TFYUYUcBWM2GjAGXtymLzEkC-c_M_Ea8skA10OFkro_q2evCJNeJjf6FjCemAF9l-2CvWLvhgDYEGA6dYp2RSdQrowxbDP9hckmlEMfALCqsyd1B0cScVWALulI3DhLxiw2Mv3HI2eXBlO4WJGc3DPygJ6PDi6675ngeTEcfxcwL7vf40X_zFTlrcRoxuv7dhAHnfimg3C1gPy4XyzD0hjKa3rf7eeND8n4noJ8PDST3M-V0dvL1CXjXNqOapyCyJB3VpTezEA-CGKWFe6LEjJaUdnX-6fQh8gNmiLqVhqn5UlxDUcU-82OGIcYDBKniKMajlmJRnig&h=ewlMOJZxAsf0ZMyYyuDGeVjZyIfMzjGvEf02dVmBW_k - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:56 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B2AEB846216F42ECBA57B3253C3DAC1B Ref B: MAA201060515047 Ref C: 2024-02-19T18:04:56Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:13.1583582Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"95efbc1e-885f-46ec-9d8c-23650815d831","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3250' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 695A24FE0B5D4AE98700B7469F151187 Ref B: MAA201060515047 Ref C: 2024-02-19T18:04:56Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities --kind - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:13.1583582Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"95efbc1e-885f-46ec-9d8c-23650815d831","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3250' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 381DE661CDB24E43B14F9926878F3C42 Ref B: MAA201060515047 Ref C: 2024-02-19T18:04:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-02-19T18:04:13.1583582Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"95efbc1e-885f-46ec-9d8c-23650815d831","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T18:04:13.1583582Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3250' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:04:58 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 5FA088D6CBDB424683439213CF3E2F43 Ref B: MAA201060516033 Ref C: 2024-02-19T18:04:58Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"source": {"component": "CosmosDBMongo", "databaseName": - "cli000002", "collectionName": "cli000003"}, "destination": {"component": "CosmosDBMongo", - "databaseName": "cli000002", "collectionName": "cli000004"}, "mode": "Offline"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy create - Connection: - - keep-alive - Content-Length: - - '244' - Content-Type: - - application/json - ParameterSetName: - - -g --job-name --src-account --dest-account --src-mongo --dest-mongo - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:01.0694965Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '635' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:01 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: C2EE9E9E712F4594B9A89C0F66299073 Ref B: MAA201060516037 Ref C: 2024-02-19T18:04:59Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:01Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '627' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:02 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 2A91F988D497459387F0A59293CCA5A6 Ref B: MAA201060513011 Ref C: 2024-02-19T18:05:02Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy list - Connection: - - keep-alive - ParameterSetName: - - -g --account-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2024-02-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:01Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '639' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:04 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 646FACAA06CB483786F943E0E7C48C5F Ref B: MAA201060516023 Ref C: 2024-02-19T18:05:03Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy pause - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-19T18:05:05Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '626' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:05 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 05879C2A8E934E3EB481771E1B011F23 Ref B: MAA201060516035 Ref C: 2024-02-19T18:05:05Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-19T18:05:05Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '626' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:06 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 0710D75352744C9CAE1F1C73EFB84D38 Ref B: MAA201060515023 Ref C: 2024-02-19T18:05:06Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy resume - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:08Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '627' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: FB8C13A9D797471F9C5A81878CA9C3FB Ref B: MAA201060514025 Ref C: 2024-02-19T18:05:07Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-19T18:05:08Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '627' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:09 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: E34FE36A56724991A76B8E9DD49BE26A Ref B: MAA201060515023 Ref C: 2024-02-19T18:05:09Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy cancel - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-19T18:05:11Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '629' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:10 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 385008E4A74B41B6B60E6499F1A2FAE5 Ref B: MAA201060516047 Ref C: 2024-02-19T18:05:10Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-19T18:05:11Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '629' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 18:05:12 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: BEF40624B1DC4729A2BA8E89BD9039B0 Ref B: MAA201060514011 Ref C: 2024-02-19T18:05:11Z' - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_nosql.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_nosql.yaml deleted file mode 100644 index 196d5972c09..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_nosql.yaml +++ /dev/null @@ -1,2650 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2024-02-20T05:22:34Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '334' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 20 Feb 2024 05:22:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5F2F7449CCE948848B4F45EECDD0817E Ref B: MAA201060515047 Ref C: 2024-02-20T05:22:39Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '244' - Content-Type: - - application/json - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:22:43.0044143Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:22:43.0044143Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:22:43.0044143Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:22:43.0044143Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:22:43.0044143Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 - cache-control: - - no-store, no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:22:43 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/operationResults/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645661856&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=T6x17WQVCx51GSy6F3vPRnkP4kuNp1_wENPUXMnjMYL6VwqjU2EaBFyTvIDR_ls-1sx_jXBV-8Zl7OGZTWY7JlOTx66iQHpKuXfDFVWqmMcvO6SgTyZb2r00NEkVkZwqHt3gyP7jAHLu4oIdxlxtRkLBA0-AkhtlgZSrtBxuCCSOYZ3T-Cl5CCTjiugXcEIw6fvYT3jMxs3kcmy3oopmrnzxlYdQJNmorUb55zp0-jdU7Ce-P_Vz4kV-lV4Y8Il99E5Z32Jr_6w9Cj1-HnoEXf9TvDKo7FvkdHMyUdE53aptdwu04wcoxt-DQ3c71xD3W9qK7pHX9uYeGacVVGO6bg&h=-C-PBM-nmfhJZStB7z8s1oeSM2t9KgEBK0Z27UUvLLo - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 35872797FF484EE08BEC2D54B2324FC9 Ref B: MAA201060513029 Ref C: 2024-02-20T05:22:39Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:23:14 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 8C2A15EEF57C444EACF4EC013A4E7CB4 Ref B: MAA201060513029 Ref C: 2024-02-20T05:23:14Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:23:45 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 1F69F1161D844076A9232332799164F2 Ref B: MAA201060513029 Ref C: 2024-02-20T05:23:45Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:15 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9FA865A852C94212AAE18B700DA9D055 Ref B: MAA201060513029 Ref C: 2024-02-20T05:24:16Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5009d23-04c0-4505-a908-4d72913fa786?api-version=2024-02-15-preview&t=638440033645505722&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gPoiGJ8o82HcVit59kIxwcKfKx5ev6zezq2tyCoqVl41wcFL_Y1Y47E5VQrcq-tPzPn3G_CJWeUNFEBOPr6obMbT7kO4Xf6jx4HSgypuz_ajGMSMdt14TTHiS7LWcIHJInGOErQzTPkLsmAbyIKJp21glR00S2xXKbMd4nhRKT3N4VWRLLuCl9i6Y3knWKjB9QCKYIIVF8XpzREFpy7rOIhLloF39svvXfB6tDGx2nQVf4RJvUXskIzMgAw1jekVI7n81x6Dbnd2AVm1XDyuhniHUNLjxSJdv0ubPeJVpteTQpkbWKb3i_Qd8r4uYNIaxh2bq-8iGiawHtMPN-wDdA&h=4g5nP0VID60PUXEZ5zyDr0XJW3D1QM1KZshc2hI5bp8 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:46 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 289756C04A3A42E48E33752E499B1D49 Ref B: MAA201060513029 Ref C: 2024-02-20T05:24:46Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3096' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:47 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: EACC120FC3B74CD7955D6130D083829E Ref B: MAA201060513029 Ref C: 2024-02-20T05:24:47Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3096' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:47 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 5D94DCF9FE0A4811BF1C564E300404BB Ref B: MAA201060513029 Ref C: 2024-02-20T05:24:48Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3096' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:49 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: D037624BDD2D442DA957EAA948F572C8 Ref B: MAA201060516033 Ref C: 2024-02-20T05:24:48Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"source": {"component": "CosmosDBSql", "databaseName": - "cli000002", "containerName": "cli000003"}, "destination": {"component": "CosmosDBSql", - "databaseName": "cli000002", "containerName": "cli000004"}, "mode": "Offline"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy create - Connection: - - keep-alive - Content-Length: - - '238' - Content-Type: - - application/json - ParameterSetName: - - -g --job-name --src-account --dest-account --src-nosql --dest-nosql - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:50.5961738Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '623' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:50 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: DE7EC70C7EB14FC69A1BFA533527B560 Ref B: MAA201060516045 Ref C: 2024-02-20T05:24:49Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:50Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '615' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:51 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C3F56D9EC8044ACCAB48346C9A935CCF Ref B: MAA201060513053 Ref C: 2024-02-20T05:24:51Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy list - Connection: - - keep-alive - ParameterSetName: - - -g --account-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs?api-version=2024-02-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:50Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '627' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:53 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 0DD1AC7F369444378DE93521B11849B0 Ref B: MAA201060515051 Ref C: 2024-02-20T05:24:52Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy pause - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-20T05:24:55Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '614' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:55 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: AC6039608DDF4BB3A9925CFDF780EAC9 Ref B: MAA201060516019 Ref C: 2024-02-20T05:24:53Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-02-20T05:24:55Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '614' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:55 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 91340D7700854B81AE0001557157A5C9 Ref B: MAA201060513017 Ref C: 2024-02-20T05:24:55Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy resume - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:57Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '615' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:58 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 4C6E69CBCE6248BEA233798468BD8D23 Ref B: MAA201060515025 Ref C: 2024-02-20T05:24:56Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:24:57Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '615' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:24:59 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: DFF149B878BB48709709C06908670DC2 Ref B: MAA201060514053 Ref C: 2024-02-20T05:24:58Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy cancel - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-20T05:25:01Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '617' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:25:00 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 4048F9D0DF32491399C157524FBB65AA Ref B: MAA201060513021 Ref C: 2024-02-20T05:25:00Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-02-20T05:25:01Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '617' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:25:01 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 837C21C040804469A253F6B714200ABE Ref B: MAA201060514053 Ref C: 2024-02-20T05:25:01Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2697' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:25:02 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: CA15CB5C4B6B4883A4673A6D3DCE7160 Ref B: MAA201060513037 Ref C: 2024-02-20T05:25:02Z' - status: - code: 200 - message: Ok -- request: - body: '{"identity": {"type": "SystemAssigned"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - Content-Length: - - '40' - Content-Type: - - application/json - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c784b6c6-b718-40b2-bea2-ff2b8c2fa6e2?api-version=2023-11-15&t=638440035077429605&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gxgbaoQoKaCBjaEcLg5dObDUKZ-1Pp3atlZbHrI3LEfFBLycNwAxcR5SruLPGswU5LS_hQKqR1n0UynJa4BXDEW4cv-ugr5z1t_zrDbmbeJWVMCq1x4HDMsVLSD3Zf5OPBBaK-IFAoGBVAeW28Pzwr6qteK0AjGOYss_MXFvpBemmfqrGlqnEwqpvsOw1J9bSJL7rYWwhwAZ0bbtXYEvcTtjvfnkEFFfypHpB2Xy5S3HFoGl50YL3eovpcGxuQBmpmI-eierV1cJa_ShaWjfw-8jX6ImSZkKLqbS4bTnme6_51y4ObWrcr4y8WGro0TdA-Cekrwq_3H-eFGN-zn7kg&h=tVOl06jazLif_-lnLFbgHumrVPrmy9qpyzMiCpfFbQA - cache-control: - - no-store, no-cache - content-length: - - '2696' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:25:06 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/operationResults/c784b6c6-b718-40b2-bea2-ff2b8c2fa6e2?api-version=2023-11-15&t=638440035077586066&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=BgMyXPupaf6tdaa0WUU9n-sYhz2-uoUNGuGejUUh0GanlSnMknwu-iHWnE6R5Q5si5vVNKpL_E4Fax6U01tSnzzLPbt4w1wj7Y0KIoU-m7QH2pTzujdPuznCaKdjlaZBugz8ElknT_o4pawBzqPxAJEFVYqea5G5tO_ZM0Dh_uNYwrJLGhD_M-qXnLtVtlThWP3WHOD_8WEDzCR4XzgPT7vmR4aXQIBum7BHACxAL3o2VsKLiwMdtLMVRoODM785QJJv8QUNgin2rZKv7pCkwHlgG4Xd9L9dKPENpjoYVriIxNGgMex49T9n1NFTiT1hNTPQijCG6lNAbHY1tRYRaA&h=fyKow2zLGZQ2RZz77QDT_Br_pKNMcgsYW7o5NbtNR1Y - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: DBE54360E1054E01AE8EDBBE735D1506 Ref B: MAA201060513037 Ref C: 2024-02-20T05:25:03Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c784b6c6-b718-40b2-bea2-ff2b8c2fa6e2?api-version=2023-11-15&t=638440035077429605&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gxgbaoQoKaCBjaEcLg5dObDUKZ-1Pp3atlZbHrI3LEfFBLycNwAxcR5SruLPGswU5LS_hQKqR1n0UynJa4BXDEW4cv-ugr5z1t_zrDbmbeJWVMCq1x4HDMsVLSD3Zf5OPBBaK-IFAoGBVAeW28Pzwr6qteK0AjGOYss_MXFvpBemmfqrGlqnEwqpvsOw1J9bSJL7rYWwhwAZ0bbtXYEvcTtjvfnkEFFfypHpB2Xy5S3HFoGl50YL3eovpcGxuQBmpmI-eierV1cJa_ShaWjfw-8jX6ImSZkKLqbS4bTnme6_51y4ObWrcr4y8WGro0TdA-Cekrwq_3H-eFGN-zn7kg&h=tVOl06jazLif_-lnLFbgHumrVPrmy9qpyzMiCpfFbQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:25:37 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: AAF2EFC12C0D4287B32EB1214DB37B53 Ref B: MAA201060513037 Ref C: 2024-02-20T05:25:37Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c784b6c6-b718-40b2-bea2-ff2b8c2fa6e2?api-version=2023-11-15&t=638440035077429605&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gxgbaoQoKaCBjaEcLg5dObDUKZ-1Pp3atlZbHrI3LEfFBLycNwAxcR5SruLPGswU5LS_hQKqR1n0UynJa4BXDEW4cv-ugr5z1t_zrDbmbeJWVMCq1x4HDMsVLSD3Zf5OPBBaK-IFAoGBVAeW28Pzwr6qteK0AjGOYss_MXFvpBemmfqrGlqnEwqpvsOw1J9bSJL7rYWwhwAZ0bbtXYEvcTtjvfnkEFFfypHpB2Xy5S3HFoGl50YL3eovpcGxuQBmpmI-eierV1cJa_ShaWjfw-8jX6ImSZkKLqbS4bTnme6_51y4ObWrcr4y8WGro0TdA-Cekrwq_3H-eFGN-zn7kg&h=tVOl06jazLif_-lnLFbgHumrVPrmy9qpyzMiCpfFbQA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:26:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 3224DBB75101415894C17571F784830A Ref B: MAA201060513037 Ref C: 2024-02-20T05:26:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2835' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:26:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 2687185C2D03409EA46ADA4547706541 Ref B: MAA201060513037 Ref C: 2024-02-20T05:26:09Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3234' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:26:10 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: F41BC49E77C641CBA080D4F104CCB902 Ref B: MAA201060513033 Ref C: 2024-02-20T05:26:10Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"defaultIdentity": "SystemAssignedIdentity", "apiProperties": - {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac0ee93c-166f-4dd9-891a-63e20f9276f6?api-version=2024-02-15-preview&t=638440035789045370&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=jbRq07EloPAeCfUs1-TZzfssx4mzu2847cGID_2wCdxTnnygmn7Ph-oQDzoJF6uTmqbFU7umqZVay0LsqEbccOCbQMT5z7MAfGiZd0kKYuyoLGo53ZZE0zqJuqiQSIWk8ZZ4uAd-3uo8TDwJRQPFq1Q9QYvdRUbKWv0qp4YTh2YBtg-m2uTJ01iXo08AEeSixAy9eEzHULUid99BOLwxOY9bK-jrSU1VUo3NLYdvRp0273PHV2FB3cSWmp7RoVTZQ7MjNzVYnfp-2w-xgmjvFO7vlozoEYyIYwhOVaHYYeeR3wde18is9hX_BmyOPV71lJGm7nprF7bTzQV-Ms9-7A&h=yiDCxh3rG8uFHo4y8mgGxt0GTDW8cZsw3cYnEmaCo-g - cache-control: - - no-store, no-cache - content-length: - - '3233' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:26:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/operationResults/ac0ee93c-166f-4dd9-891a-63e20f9276f6?api-version=2024-02-15-preview&t=638440035789201866&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=W4A3qBIEi_o0rxjXzxv_lS80hAALdwsIDj2QDrXyO-hJcsbj8OAg_xzyfqP9a5u3tYaALSkHbinnuGDt4XzvZ0wwvqK9Sh3UJ62AeyI6Z4sYXy7-0gayvhb0x1pUNmuEKPCqK4tiegd92UORIkqsxWknRQCqmP4HBlwuLyAhtzPKZlKI9f8_-zNDwd9txfSPKJRVHRmpccZqlCysrCPTBr-a2FXlTnYyHFudhaN_cN2KWjMb_0Ze4Hy5rIzZIXs9gdr-8TQf1JIW2V0qHDbXEJoRSHzoZCGTGIfaRxVRckdICUJ78fUtRqT4viXXphjL10w6a-tJP5WesRG6CoWQ0w&h=7mHIsMtv4ApUOuvJgC6ZtWSPzG7GbPTT_SmN39LiTp8 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F00C20A4DFE1484DA70D0D66CB55D05A Ref B: MAA201060513033 Ref C: 2024-02-20T05:26:11Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac0ee93c-166f-4dd9-891a-63e20f9276f6?api-version=2024-02-15-preview&t=638440035789045370&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=jbRq07EloPAeCfUs1-TZzfssx4mzu2847cGID_2wCdxTnnygmn7Ph-oQDzoJF6uTmqbFU7umqZVay0LsqEbccOCbQMT5z7MAfGiZd0kKYuyoLGo53ZZE0zqJuqiQSIWk8ZZ4uAd-3uo8TDwJRQPFq1Q9QYvdRUbKWv0qp4YTh2YBtg-m2uTJ01iXo08AEeSixAy9eEzHULUid99BOLwxOY9bK-jrSU1VUo3NLYdvRp0273PHV2FB3cSWmp7RoVTZQ7MjNzVYnfp-2w-xgmjvFO7vlozoEYyIYwhOVaHYYeeR3wde18is9hX_BmyOPV71lJGm7nprF7bTzQV-Ms9-7A&h=yiDCxh3rG8uFHo4y8mgGxt0GTDW8cZsw3cYnEmaCo-g - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:26:48 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C300035480AA4A43B03168446E420E06 Ref B: MAA201060513033 Ref C: 2024-02-20T05:26:49Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac0ee93c-166f-4dd9-891a-63e20f9276f6?api-version=2024-02-15-preview&t=638440035789045370&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=jbRq07EloPAeCfUs1-TZzfssx4mzu2847cGID_2wCdxTnnygmn7Ph-oQDzoJF6uTmqbFU7umqZVay0LsqEbccOCbQMT5z7MAfGiZd0kKYuyoLGo53ZZE0zqJuqiQSIWk8ZZ4uAd-3uo8TDwJRQPFq1Q9QYvdRUbKWv0qp4YTh2YBtg-m2uTJ01iXo08AEeSixAy9eEzHULUid99BOLwxOY9bK-jrSU1VUo3NLYdvRp0273PHV2FB3cSWmp7RoVTZQ7MjNzVYnfp-2w-xgmjvFO7vlozoEYyIYwhOVaHYYeeR3wde18is9hX_BmyOPV71lJGm7nprF7bTzQV-Ms9-7A&h=yiDCxh3rG8uFHo4y8mgGxt0GTDW8cZsw3cYnEmaCo-g - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:27:19 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 77A9B9CA4D974637B5896E9BCAEB37DA Ref B: MAA201060513033 Ref C: 2024-02-20T05:27:19Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3238' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:27:20 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 8E1184DD6F5142DEBCF39F764BD79757 Ref B: MAA201060513033 Ref C: 2024-02-20T05:27:20Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3238' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:27:21 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 028740EDBD4643389493DC2423A3C8D8 Ref B: MAA201060513033 Ref C: 2024-02-20T05:27:21Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2024-02-20T05:22:34Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '334' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 20 Feb 2024 05:27:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 49FA95A97A05495E9B1964C0733D1081 Ref B: MAA201060514033 Ref C: 2024-02-20T05:27:22Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '244' - Content-Type: - - application/json - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006","name":"cliremote000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:27:25.4991Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c3f18582-94dc-4cca-b099-8eae43ee7bd2","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cliremote000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cliremote000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cliremote000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cliremote000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:27:25.4991Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:27:25.4991Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:27:25.4991Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:27:25.4991Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U - cache-control: - - no-store, no-cache - content-length: - - '2763' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:27:26 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006/operationResults/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Gwgf3Pwj4bgaHIN5pL50tO1DKNofhkKjk3SA8ECBdKzz7ePV_T1kwn4qihFETRI5mMM2uGji6Hfk2x7C0SphUXO1uoVmPoEuEh2dUHK41D0qEcJsgAHb0OIiJl_0PxT20jmh60Sizhm2FEbeI4nhi5wbuIHBrZc-ARnFNdYkaTqGJmErWwqLeD84lszkW4a_aUOEVA9WRvsoe7JW9RrEHyjOUsOehap3wVAbMQMa0ewc7LTaPpH1QmmezqSSkG35mwtUn0Gd4d1nj9944zVr-DQAHNcXk3WBQRu5SuP5FAqEZVeFXiGsCOgMeYFNFs8hHtYp_6nbhvYPoorF3kcZEg&h=p56uoMbZMs9T9HkUboDFNTfDnSmZ-50N_s5zNYeEVRc - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 23871CEDE1F54B1B83004021E46A86E2 Ref B: MAA201060514027 Ref C: 2024-02-20T05:27:22Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:27:56 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 3EA6B3F747A1464A9299CB9D71B92F89 Ref B: MAA201060514027 Ref C: 2024-02-20T05:27:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:28:26 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 009B16B7DC924A729571A1DF80C85C83 Ref B: MAA201060514027 Ref C: 2024-02-20T05:28:27Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:28:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 8B0E8890CCF742D9B9BC28AFC17B647F Ref B: MAA201060514027 Ref C: 2024-02-20T05:28:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95a9b834-1eac-439b-9b57-99064ee55c64?api-version=2024-02-15-preview&t=638440036470947570&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=EIdyu77eJPuodIoG4EgafrlHpHErQE4AC8_kaJBenUdINWuqt28daAdAKKZ-orZjyWtOZrTHXD8yfTFgkaZBSX-P8kDwBxBDevK4DMYUzSieTMJRhqATmXDnbicZvdEwGUaU3srUXXoWcvB_1eADXz2qcdw58-NvpXmwa_WJuwTRe7eW20GDh7crPA-RqVx9RMIGd8wPTQeEP7b1OzpGjO3F5dv03QlYQMl3q9E0B7tCFmSmOKIwAEeQSQR8JSf9WqFswLZA3mYPAAjnVoLMxhVV0HOv00CzI0K3tjnCoJVvi7S1cDFytqIC3wMd2vUksl3HdKvRk_t2zzyh4_M63A&h=ooG0nhGY0Z1Kkx_qiWvdADdot9zuGNGHR_rqS4LdD2U - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:29:27 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 3C3BFB9A5E3F4CDEB473560825904D4D Ref B: MAA201060514027 Ref C: 2024-02-20T05:29:28Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006","name":"cliremote000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:28:40.9464964Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cliremote000006.documents.azure.com:443/","sqlEndpoint":"https://cliremote000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c3f18582-94dc-4cca-b099-8eae43ee7bd2","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cliremote000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3162' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:29:28 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 66249B1DFEBA474F8BD6FE109C0A44F3 Ref B: MAA201060514027 Ref C: 2024-02-20T05:29:28Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006","name":"cliremote000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:28:40.9464964Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cliremote000006.documents.azure.com:443/","sqlEndpoint":"https://cliremote000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c3f18582-94dc-4cca-b099-8eae43ee7bd2","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cliremote000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3162' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:29:29 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 1568FE7F18754FB192A0E72B060A4291 Ref B: MAA201060514027 Ref C: 2024-02-20T05:29:29Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cliremote000006","name":"cliremote000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:28:40.9464964Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cliremote000006.documents.azure.com:443/","sqlEndpoint":"https://cliremote000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c3f18582-94dc-4cca-b099-8eae43ee7bd2","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cliremote000006-eastus","locationName":"East - US","documentEndpoint":"https://cliremote000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cliremote000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:28:40.9464964Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3162' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:29:30 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: FDB2E6B281E54BE79AEC1D03596398F0 Ref B: MAA201060513023 Ref C: 2024-02-20T05:29:30Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"source": {"component": "CosmosDBSql", "remoteAccountName": - "cliremote000006", "databaseName": "cli000002", "containerName": "cli000003"}, - "destination": {"component": "CosmosDBSql", "databaseName": "cli000002", "containerName": - "cli000004"}, "mode": "Offline"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy create - Connection: - - keep-alive - Content-Length: - - '278' - Content-Type: - - application/json - ParameterSetName: - - -g --job-name --src-account --dest-account --src-nosql --dest-nosql - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000007?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000007","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000007","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:29:32.7758553Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","remoteAccountName":"cliremote000006","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '661' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:29:32 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F850313795954A95830429F01F965B64 Ref B: MAA201060516029 Ref C: 2024-02-20T05:29:31Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000007?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000007","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000007","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:29:32Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","remoteAccountName":"cliremote000006","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '653' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:29:34 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: A17FC9ACC4074D1C9FA964D57E8DB65D Ref B: MAA201060513035 Ref C: 2024-02-20T05:29:33Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --set --resource-type --namespace - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"},{"applicationId":"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9","roleDefinitionId":"D5A795DE-916D-4818-B015-33C9E103E39B"},{"applicationId":"a232010e-820c-4083-83bb-3ace5fc29d0b","roleDefinitionId":"D5A795DE-916D-4818-B015-33C9E103E39B"},{"applicationId":"e95a6071-4f90-4971-84e2-492d9323345b","roleDefinitionId":"A2EBFC51-AD44-4D13-A387-B95AFDFA016D"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"defaultApiVersion":"2022-08-15-preview","apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"databaseAccountNames","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operationResults","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations/operationsStatus","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/restorableDatabaseAccounts","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview","2020-06-01-preview"],"capabilities":"None"},{"resourceType":"restorableDatabaseAccounts","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview","2020-06-01-preview"],"capabilities":"None"},{"resourceType":"cassandraClusters","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview"],"defaultApiVersion":"2021-10-15","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"databaseAccounts/encryptionScopes","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview"],"capabilities":"None"},{"resourceType":"mongoClusters","locations":["East - US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada - Central","Central US","South Central US","Southeast Asia","UK South","Central - India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"defaultApiVersion":"2023-03-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/mongoClusterOperationResults","locations":["East - US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada - Central","Central US","South Central US","Southeast Asia","UK South","Central - India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/mongoClusterAzureAsyncOperation","locations":["East - US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada - Central","Central US","South Central US","Southeast Asia","UK South","Central - India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/checkMongoClusterNameAvailability","locations":["East - US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada - Central","Central US","South Central US","Southeast Asia","UK South","Central - India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","France South","Australia Central 2","UAE Central","West - US 3","Brazil SouthEast","Germany North","Switzerland West","South Africa - West","Norway West","Jio India West","Jio India Central","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15"],"capabilities":"None"},{"resourceType":"throughputPools","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"throughputPools/throughputPoolAccounts","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview"],"capabilities":"SystemAssignedResourceIdentity"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '20097' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 20 Feb 2024 05:29:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 644C042BBE224BCF875A16DC639F814E Ref B: MAA201060515017 Ref C: 2024-02-20T05:29:34Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --set --resource-type --namespace - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2839' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:29:35 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B224F18BC7A84DD1ABDA176034DE3766 Ref B: MAA201060515017 Ref C: 2024-02-20T05:29:34Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --set --resource-type --namespace - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"},{"applicationId":"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9","roleDefinitionId":"D5A795DE-916D-4818-B015-33C9E103E39B"},{"applicationId":"a232010e-820c-4083-83bb-3ace5fc29d0b","roleDefinitionId":"D5A795DE-916D-4818-B015-33C9E103E39B"},{"applicationId":"e95a6071-4f90-4971-84e2-492d9323345b","roleDefinitionId":"A2EBFC51-AD44-4D13-A387-B95AFDFA016D"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"defaultApiVersion":"2022-08-15-preview","apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"databaseAccountNames","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operationResults","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations/operationsStatus","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-08"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-15","2021-05-01-preview","2021-04-15","2021-04-01-preview","2021-03-15","2021-03-01-preview","2021-01-15","2020-09-01","2020-06-01-preview","2020-04-01","2020-03-01","2019-12-12","2019-08-01-preview","2019-08-01","2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/restorableDatabaseAccounts","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview","2020-06-01-preview"],"capabilities":"None"},{"resourceType":"restorableDatabaseAccounts","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-06-15","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview","2020-06-01-preview"],"capabilities":"None"},{"resourceType":"cassandraClusters","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview"],"defaultApiVersion":"2021-10-15","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"databaseAccounts/encryptionScopes","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15","2022-05-15-preview","2022-05-15","2022-02-15-preview","2021-11-15-preview","2021-10-15-preview","2021-10-15","2021-07-01-preview","2021-05-01-preview","2021-04-01-preview","2021-03-01-preview"],"capabilities":"None"},{"resourceType":"mongoClusters","locations":["East - US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada - Central","Central US","South Central US","Southeast Asia","UK South","Central - India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"defaultApiVersion":"2023-03-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/mongoClusterOperationResults","locations":["East - US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada - Central","Central US","South Central US","Southeast Asia","UK South","Central - India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/mongoClusterAzureAsyncOperation","locations":["East - US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada - Central","Central US","South Central US","Southeast Asia","UK South","Central - India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/checkMongoClusterNameAvailability","locations":["East - US","West Europe","Australia East","West US 2","East US 2","North Europe","Canada - Central","Central US","South Central US","Southeast Asia","UK South","Central - India"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-09-15-preview","2023-03-15-preview","2023-03-01-preview","2022-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","France South","Australia Central 2","UAE Central","West - US 3","Brazil SouthEast","Germany North","Switzerland West","South Africa - West","Norway West","Jio India West","Jio India Central","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview","2023-11-15","2023-09-15-preview","2023-09-15","2023-04-15","2023-03-15-preview","2023-03-15","2023-03-01-preview","2022-11-15-preview","2022-11-15","2022-08-15-preview","2022-08-15"],"capabilities":"None"},{"resourceType":"throughputPools","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"throughputPools/throughputPoolAccounts","locations":["West - Central US","North Central US","Central US","Brazil South","Canada Central","West - US 2","East US 2","France Central","Japan East","Southeast Asia","Central - India","South Africa North","Switzerland North","UAE North","UK West","North - Europe","West Europe","Norway East","Korea Central","Australia East","Canada - East","East Asia","Germany West Central","UK South","Australia Central","Australia - Southeast","Japan West","Korea South","South India","West India","West US","South - Central US","East US","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-02-15-preview","2023-11-15-preview"],"capabilities":"SystemAssignedResourceIdentity"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '20097' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 20 Feb 2024 05:29:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9DB10E1EB6234B4782F1CB0704CEA9CA Ref B: MAA201060513051 Ref C: 2024-02-20T05:29:36Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "East US", "tags": {}, "properties": {"provisioningState": - "Succeeded", "documentEndpoint": "https://cli000009.documents.azure.com:443/", - "sqlEndpoint": "https://cli000009.documents.azure.com:443/", "publicNetworkAccess": - "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": - false, "enablePartitionKeyMonitor": false, "isVirtualNetworkFilterEnabled": - false, "virtualNetworkRules": [], "EnabledApiTypes": "Sql", "disableKeyBasedMetadataWriteAccess": - false, "enableFreeTier": false, "enableAnalyticalStorage": false, "analyticalStorageConfiguration": - {"schemaType": "WellDefined"}, "instanceId": "ea2ff196-8807-4fba-b5ba-97c03988d1cf", - "databaseAccountOfferType": "Standard", "enableFullFidelityChangeFeed": true, - "defaultIdentity": "SystemAssignedIdentity", "networkAclBypass": "None", "disableLocalAuth": - false, "enablePartitionMerge": false, "enableBurstCapacity": false, "minimalTlsVersion": - "Tls12", "consistencyPolicy": {"defaultConsistencyLevel": "Session", "maxIntervalInSeconds": - 5, "maxStalenessPrefix": 100}, "configurationOverrides": {"EnablePerRegionPerPartitionAutoscaleOptIn": - "True"}, "writeLocations": [{"id": "cli000009-eastus", "locationName": "East - US", "documentEndpoint": "https://cli000009-eastus.documents.azure.com:443/", - "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": - false}], "readLocations": [{"id": "cli000009-eastus", "locationName": "East - US", "documentEndpoint": "https://cli000009-eastus.documents.azure.com:443/", - "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": - false}], "locations": [{"id": "cli000009-eastus", "locationName": "East US", - "documentEndpoint": "https://cli000009-eastus.documents.azure.com:443/", "provisioningState": - "Succeeded", "failoverPriority": 0, "isZoneRedundant": false}], "failoverPolicies": - [{"id": "cli000009-eastus", "locationName": "East US", "failoverPriority": 0}], - "cors": [], "capabilities": [], "ipRules": [], "backupPolicy": {"type": "Periodic", - "periodicModeProperties": {"backupIntervalInMinutes": 240, "backupRetentionIntervalInHours": - 8, "backupStorageRedundancy": "Geo"}}, "networkAclBypassResourceIds": [], "keysMetadata": - {"primaryMasterKey": {"generationTime": "2024-02-20T05:24:01.0738223+00:00"}, - "secondaryMasterKey": {"generationTime": "2024-02-20T05:24:01.0738223+00:00"}, - "primaryReadonlyMasterKey": {"generationTime": "2024-02-20T05:24:01.0738223+00:00"}, - "secondaryReadonlyMasterKey": {"generationTime": "2024-02-20T05:24:01.0738223+00:00"}}}, - "kind": "GlobalDocumentDB", "identity": {"type": "SystemAssigned"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource update - Connection: - - keep-alive - Content-Length: - - '2588' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --set --resource-type --namespace - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":false,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037786988974&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=mslQOLvCU83Gooi8xRWaiPoILJYMB8ullbhqy5FnBNGejxk6TGlVUEkIgLuMIk-LfjBcjqS4ln6o2MEUcuZ398f1yceKAQR_cGYRQmm1G018w0OLiCH7dSA8e7A6BpMcn6yrAWB3mx1uR2uUpBZdgdT2r9XR-ixfWLJ26rrjR8yBeOIiwLeaxnUYgM7vBdpRmuxIYiG4uJzkl3o8z8ZHqTDmj1D8G_0n9FoiTO2kpzjQSEEX8yow10ju-rcLXwWb9FUXlPMaWCD85tESCzSpfUJEFKnMPQG6UV_85onDfJBcXeKAl93-sNnlfgsHAxCZEUwUqByOzbtL8r0Q3977Dw&h=rRFSMn8u54Ed_44vzDtsxTneLLlJaottnmXGguPD-uU - cache-control: - - no-store, no-cache - content-length: - - '2838' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:29:38 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/operationResults/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037787145253&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=lFfOrVgUz-B7FtuRKS6XZ1MzdweLrNqXWU6U5MJ6VcBzpMyNfsDVt627EhyjtIYhggWk519tiBX2hlr11a4GVD84u5iUaOvtGHJyydszhgZmi3rL4kCnvPTO7irbzGgu1VFp-zUXx-avWidvrOcVNpFAfXjSFcWkYmfr0hyK0eYCnIqVurfBVBNBXC-jTbFhQG-voMRqlx_RSQSPaQ0FZ-I6GwPhWfv-dqZGmz9bOqqEPs2p3rwPEw9ic5eHvbej7CBNNEXZJdf5wz970oA1Gwa7Vtb7e4eNJpDISA89ps7-J0Toxua1PAngB3m7FEpw7yRVh7rFQqBHItcbX6bJSA&h=kyaM_yh1joJi4DgcS6tvgHw0oqI-yaEhEAmsDNQJ5UM - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F9FD4C728511482FB7840D9EF1A74EA6 Ref B: MAA201060513051 Ref C: 2024-02-20T05:29:36Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - resource update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --set --resource-type --namespace - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037786988974&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=mslQOLvCU83Gooi8xRWaiPoILJYMB8ullbhqy5FnBNGejxk6TGlVUEkIgLuMIk-LfjBcjqS4ln6o2MEUcuZ398f1yceKAQR_cGYRQmm1G018w0OLiCH7dSA8e7A6BpMcn6yrAWB3mx1uR2uUpBZdgdT2r9XR-ixfWLJ26rrjR8yBeOIiwLeaxnUYgM7vBdpRmuxIYiG4uJzkl3o8z8ZHqTDmj1D8G_0n9FoiTO2kpzjQSEEX8yow10ju-rcLXwWb9FUXlPMaWCD85tESCzSpfUJEFKnMPQG6UV_85onDfJBcXeKAl93-sNnlfgsHAxCZEUwUqByOzbtL8r0Q3977Dw&h=rRFSMn8u54Ed_44vzDtsxTneLLlJaottnmXGguPD-uU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:30:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: D18663E39A3949489C798BA2BB25C791 Ref B: MAA201060513051 Ref C: 2024-02-20T05:30:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - resource update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --set --resource-type --namespace - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037786988974&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=mslQOLvCU83Gooi8xRWaiPoILJYMB8ullbhqy5FnBNGejxk6TGlVUEkIgLuMIk-LfjBcjqS4ln6o2MEUcuZ398f1yceKAQR_cGYRQmm1G018w0OLiCH7dSA8e7A6BpMcn6yrAWB3mx1uR2uUpBZdgdT2r9XR-ixfWLJ26rrjR8yBeOIiwLeaxnUYgM7vBdpRmuxIYiG4uJzkl3o8z8ZHqTDmj1D8G_0n9FoiTO2kpzjQSEEX8yow10ju-rcLXwWb9FUXlPMaWCD85tESCzSpfUJEFKnMPQG6UV_85onDfJBcXeKAl93-sNnlfgsHAxCZEUwUqByOzbtL8r0Q3977Dw&h=rRFSMn8u54Ed_44vzDtsxTneLLlJaottnmXGguPD-uU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:30:38 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B92B4E42C7E1457CA3C2663692BB291F Ref B: MAA201060513051 Ref C: 2024-02-20T05:30:39Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - resource update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --set --resource-type --namespace - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ff03a2c-8829-44c4-bb34-1c6a48c193f3?api-version=2023-11-15&t=638440037786988974&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=mslQOLvCU83Gooi8xRWaiPoILJYMB8ullbhqy5FnBNGejxk6TGlVUEkIgLuMIk-LfjBcjqS4ln6o2MEUcuZ398f1yceKAQR_cGYRQmm1G018w0OLiCH7dSA8e7A6BpMcn6yrAWB3mx1uR2uUpBZdgdT2r9XR-ixfWLJ26rrjR8yBeOIiwLeaxnUYgM7vBdpRmuxIYiG4uJzkl3o8z8ZHqTDmj1D8G_0n9FoiTO2kpzjQSEEX8yow10ju-rcLXwWb9FUXlPMaWCD85tESCzSpfUJEFKnMPQG6UV_85onDfJBcXeKAl93-sNnlfgsHAxCZEUwUqByOzbtL8r0Q3977Dw&h=rRFSMn8u54Ed_44vzDtsxTneLLlJaottnmXGguPD-uU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:31:09 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: F9032705504E4F3D8B0C75476EEF50C2 Ref B: MAA201060513051 Ref C: 2024-02-20T05:31:09Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - resource update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --set --resource-type --namespace - User-Agent: - - AZURECLI/2.56.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009?api-version=2023-11-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009","name":"cli000009","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-20T05:24:01.0738223+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000009.documents.azure.com:443/","sqlEndpoint":"https://cli000009.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ea2ff196-8807-4fba-b5ba-97c03988d1cf","databaseAccountOfferType":"Standard","enableFullFidelityChangeFeed":true,"defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000009-eastus","locationName":"East - US","documentEndpoint":"https://cli000009-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000009-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-20T05:24:01.0738223+00:00"}}},"identity":{"type":"SystemAssigned","principalId":"ccd02964-7d57-481b-97bf-e780280d511a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2838' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:31:10 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C1D0488BFA714C94A9617261160CD3B2 Ref B: MAA201060513051 Ref C: 2024-02-20T05:31:09Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"source": {"component": "CosmosDBSql", "databaseName": - "cli000002", "containerName": "cli000003"}, "destination": {"component": "CosmosDBSql", - "databaseName": "cli000002", "containerName": "cli000004"}, "mode": "online"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy create - Connection: - - keep-alive - Content-Length: - - '237' - Content-Type: - - application/json - ParameterSetName: - - -g --mode --job-name --src-account --dest-account --src-nosql --dest-nosql - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000008?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000008","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000008","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:31:11.8754584Z","processedCount":0,"totalCount":0,"mode":"Online","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '622' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:31:11 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 4EE51E65FFAC43019984557503E59126 Ref B: MAA201060516047 Ref C: 2024-02-20T05:31:11Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb copy show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.56.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000008?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000009/dataTransferJobs/cli000008","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000008","status":"Pending","lastUpdatedUtcTime":"2024-02-20T05:31:11Z","processedCount":0,"totalCount":0,"mode":"Online","duration":"00:00:00","source":{"databaseName":"cli000002","containerName":"cli000003","component":"CosmosDBSql"},"destination":{"databaseName":"cli000002","containerName":"cli000004","component":"CosmosDBSql"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '614' - content-type: - - application/json - date: - - Tue, 20 Feb 2024 05:31:12 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9BF3515196B54C58B39470002D76B216 Ref B: MAA201060515033 Ref C: 2024-02-20T05:31:12Z' - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_database.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_database.yaml deleted file mode 100644 index e03bd41bd32..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_database.yaml +++ /dev/null @@ -1,2205 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.1 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_database000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001","name":"cli_test_cosmosdb_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T17:04:01Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '342' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 26 Sep 2022 17:04:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '244' - Content-Type: - - application/json - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:04:09.4058241Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:04:09.4058241Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:04:09.4058241Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:04:09.4058241Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:04:09.4058241Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/de63112b-d1f8-468b-af89-97e2114f963b?api-version=2022-08-15-preview - cache-control: - - no-store, no-cache - content-length: - - '2259' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:04:12 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/de63112b-d1f8-468b-af89-97e2114f963b?api-version=2022-08-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/de63112b-d1f8-468b-af89-97e2114f963b?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:04:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/de63112b-d1f8-468b-af89-97e2114f963b?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:05:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/de63112b-d1f8-468b-af89-97e2114f963b?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:05:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/de63112b-d1f8-468b-af89-97e2114f963b?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/de63112b-d1f8-468b-af89-97e2114f963b?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:05:58.8947694Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:05:58.8947694Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:05:58.8947694Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:05:58.8947694Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2554' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:05:58.8947694Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:05:58.8947694Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:05:58.8947694Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:05:58.8947694Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2554' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"ZpxjNbrsp1LD9gk8l4WfdaOHICENKYVmYi7ntYXYFHBfzbDEnaF9ZnulkIYB0sRsY6NrrsHzOeJZCf1zqeWEXA==","secondaryMasterKey":"ONwDBN63Jll4NwMqijb9it1LdfXTmzRNwVDhpfdVWDgsCxchh9Grf0sqbFCv3DXKQYCiZmygc30cEMbi1905Qg==","primaryReadonlyMasterKey":"yytk71Pqeqm7okIBqEe8XkKJSppov775rs8aBkI90ZJIyosmUt14Lfw0ycUGJB307pu0aL0COkk7jxGCjiSXQg==","secondaryReadonlyMasterKey":"3LTzIsQ2rmDFkyo0fnfkMV8A7WytlOmPEDWV1werd0cSOD38J8wl46c5wy2IZ8XzAymIICsYaT2BrRv4zNODTQ=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database create - Connection: - - keep-alive - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2157' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:42 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: '{"id":"cli000002"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '18' - Content-Type: - - application/json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:42 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: POST - uri: https://cli000003-westus.documents.azure.com/dbs - response: - body: - string: '{"id":"cli000002","_rid":"7I89AA==","_self":"dbs\/7I89AA==\/","_etag":"\"00002c09-0000-0700-0000-6331dc240000\"","_colls":"colls\/","_users":"users\/","_ts":1664212004}' - headers: - cache-control: - - no-store, no-cache - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - etag: - - '"00002c09-0000-0700-0000-6331dc240000"' - lsn: - - '8' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 43cf7f21-340e-4757-9682-2c400955cfe3 - x-ms-cosmos-llsn: - - '8' - x-ms-cosmos-quorum-acked-llsn: - - '7' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '7' - x-ms-last-state-change-utc: - - Fri, 23 Sep 2022 17:45:03.191 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '7' - x-ms-request-charge: - - '4.95' - x-ms-request-duration-ms: - - '24.354' - x-ms-resource-quota: - - databases=1000; - x-ms-resource-usage: - - databases=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#8 - x-ms-transport-request-id: - - '60712' - x-ms-xp-role: - - '1' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"ZpxjNbrsp1LD9gk8l4WfdaOHICENKYVmYi7ntYXYFHBfzbDEnaF9ZnulkIYB0sRsY6NrrsHzOeJZCf1zqeWEXA==","secondaryMasterKey":"ONwDBN63Jll4NwMqijb9it1LdfXTmzRNwVDhpfdVWDgsCxchh9Grf0sqbFCv3DXKQYCiZmygc30cEMbi1905Qg==","primaryReadonlyMasterKey":"yytk71Pqeqm7okIBqEe8XkKJSppov775rs8aBkI90ZJIyosmUt14Lfw0ycUGJB307pu0aL0COkk7jxGCjiSXQg==","secondaryReadonlyMasterKey":"3LTzIsQ2rmDFkyo0fnfkMV8A7WytlOmPEDWV1werd0cSOD38J8wl46c5wy2IZ8XzAymIICsYaT2BrRv4zNODTQ=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database show - Connection: - - keep-alive - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2157' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:43 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:43 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/dbs/cli000002/ - response: - body: - string: '{"id":"cli000002","_rid":"7I89AA==","_self":"dbs\/7I89AA==\/","_etag":"\"00002c09-0000-0700-0000-6331dc240000\"","_colls":"colls\/","_users":"users\/","_ts":1664212004}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5-westus.documents.azure.com/dbs/cli4ssnsperprmw/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - etag: - - '"00002c09-0000-0700-0000-6331dc240000"' - lsn: - - '8' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 95172c21-9766-4160-871d-04ff383c2a6c - x-ms-cosmos-item-llsn: - - '8' - x-ms-cosmos-llsn: - - '8' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '8' - x-ms-item-lsn: - - '8' - x-ms-last-state-change-utc: - - Fri, 23 Sep 2022 17:45:09.766 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '2' - x-ms-request-duration-ms: - - '0.226' - x-ms-resource-quota: - - databases=1000; - x-ms-resource-usage: - - databases=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#8 - x-ms-transport-request-id: - - '344914' - x-ms-xp-role: - - '2' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database exists - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"ZpxjNbrsp1LD9gk8l4WfdaOHICENKYVmYi7ntYXYFHBfzbDEnaF9ZnulkIYB0sRsY6NrrsHzOeJZCf1zqeWEXA==","secondaryMasterKey":"ONwDBN63Jll4NwMqijb9it1LdfXTmzRNwVDhpfdVWDgsCxchh9Grf0sqbFCv3DXKQYCiZmygc30cEMbi1905Qg==","primaryReadonlyMasterKey":"yytk71Pqeqm7okIBqEe8XkKJSppov775rs8aBkI90ZJIyosmUt14Lfw0ycUGJB307pu0aL0COkk7jxGCjiSXQg==","secondaryReadonlyMasterKey":"3LTzIsQ2rmDFkyo0fnfkMV8A7WytlOmPEDWV1werd0cSOD38J8wl46c5wy2IZ8XzAymIICsYaT2BrRv4zNODTQ=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database exists - Connection: - - keep-alive - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2157' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:44 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"cli4ssnsperprmw"}]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '103' - Content-Type: - - application/query+json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:44 GMT - x-ms-documentdb-isquery: - - 'true' - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: POST - uri: https://cli000003-westus.documents.azure.com/dbs - response: - body: - string: '{"_rid":"","Databases":[{"id":"cli000002","_rid":"7I89AA==","_self":"dbs\/7I89AA==\/","_etag":"\"00002c09-0000-0700-0000-6331dc240000\"","_colls":"colls\/","_users":"users\/","_ts":1664212004}],"_count":1}' - headers: - cache-control: - - no-store, no-cache - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:45 GMT - lsn: - - '8' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 2a5fbfc7-7dde-40a8-b930-ce0ac9fdd6bb - x-ms-cosmos-is-partition-key-delete-pending: - - 'false' - x-ms-cosmos-llsn: - - '8' - x-ms-cosmos-query-execution-info: - - '{"reverseRidEnabled":false,"reverseIndexScan":false}' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '8' - x-ms-item-count: - - '1' - x-ms-last-state-change-utc: - - Fri, 23 Sep 2022 17:45:09.766 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '5.62' - x-ms-request-duration-ms: - - '0.511' - x-ms-resource-quota: - - databases=1000; - x-ms-resource-usage: - - databases=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#8 - x-ms-transport-request-id: - - '772726' - x-ms-xp-role: - - '2' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database exists - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"ZpxjNbrsp1LD9gk8l4WfdaOHICENKYVmYi7ntYXYFHBfzbDEnaF9ZnulkIYB0sRsY6NrrsHzOeJZCf1zqeWEXA==","secondaryMasterKey":"ONwDBN63Jll4NwMqijb9it1LdfXTmzRNwVDhpfdVWDgsCxchh9Grf0sqbFCv3DXKQYCiZmygc30cEMbi1905Qg==","primaryReadonlyMasterKey":"yytk71Pqeqm7okIBqEe8XkKJSppov775rs8aBkI90ZJIyosmUt14Lfw0ycUGJB307pu0aL0COkk7jxGCjiSXQg==","secondaryReadonlyMasterKey":"3LTzIsQ2rmDFkyo0fnfkMV8A7WytlOmPEDWV1werd0cSOD38J8wl46c5wy2IZ8XzAymIICsYaT2BrRv4zNODTQ=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database exists - Connection: - - keep-alive - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2157' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:45 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"invalid"}]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '95' - Content-Type: - - application/query+json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:45 GMT - x-ms-documentdb-isquery: - - 'true' - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: POST - uri: https://cli000003-westus.documents.azure.com/dbs - response: - body: - string: '{"_rid":"","Databases":[],"_count":0}' - headers: - cache-control: - - no-store, no-cache - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:46 GMT - lsn: - - '8' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - e53b108b-69d0-49d1-aef0-8018583858cc - x-ms-cosmos-is-partition-key-delete-pending: - - 'false' - x-ms-cosmos-llsn: - - '8' - x-ms-cosmos-query-execution-info: - - '{"reverseRidEnabled":false,"reverseIndexScan":false}' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '8' - x-ms-item-count: - - '0' - x-ms-last-state-change-utc: - - Fri, 23 Sep 2022 17:45:09.766 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '5.58' - x-ms-request-duration-ms: - - '0.422' - x-ms-resource-quota: - - databases=1000; - x-ms-resource-usage: - - databases=1; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#8 - x-ms-transport-request-id: - - '753098' - x-ms-xp-role: - - '2' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"ZpxjNbrsp1LD9gk8l4WfdaOHICENKYVmYi7ntYXYFHBfzbDEnaF9ZnulkIYB0sRsY6NrrsHzOeJZCf1zqeWEXA==","secondaryMasterKey":"ONwDBN63Jll4NwMqijb9it1LdfXTmzRNwVDhpfdVWDgsCxchh9Grf0sqbFCv3DXKQYCiZmygc30cEMbi1905Qg==","primaryReadonlyMasterKey":"yytk71Pqeqm7okIBqEe8XkKJSppov775rs8aBkI90ZJIyosmUt14Lfw0ycUGJB307pu0aL0COkk7jxGCjiSXQg==","secondaryReadonlyMasterKey":"3LTzIsQ2rmDFkyo0fnfkMV8A7WytlOmPEDWV1werd0cSOD38J8wl46c5wy2IZ8XzAymIICsYaT2BrRv4zNODTQ=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2157' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:46 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:46 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003-westus.documents.azure.com/dbs - response: - body: - string: '{"_rid":"","Databases":[{"id":"cli000002","_rid":"7I89AA==","_self":"dbs\/7I89AA==\/","_etag":"\"00002c09-0000-0700-0000-6331dc240000\"","_colls":"colls\/","_users":"users\/","_ts":1664212004}],"_count":1}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5-westus.documents.azure.com/dbs - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:47 GMT - lsn: - - '8' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - 06eb82b4-40b8-487b-bdd5-407f9d3dc529 - x-ms-cosmos-llsn: - - '8' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '8' - x-ms-item-count: - - '1' - x-ms-last-state-change-utc: - - Fri, 23 Sep 2022 17:45:09.762 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '2' - x-ms-request-duration-ms: - - '0.402' - x-ms-resource-quota: - - databases=1000;collections=5000;users=500000;permissions=2000000;clientEncryptionKeys=20;interopUsers=2000;authPolicyElements=200000;roleDefinitions=100;roleAssignments=2000; - x-ms-resource-usage: - - databases=1;collections=0;users=0;permissions=0;clientEncryptionKeys=0;interopUsers=0;authPolicyElements=0;roleDefinitions=0;roleAssignments=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#8 - x-ms-transport-request-id: - - '830978' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"ZpxjNbrsp1LD9gk8l4WfdaOHICENKYVmYi7ntYXYFHBfzbDEnaF9ZnulkIYB0sRsY6NrrsHzOeJZCf1zqeWEXA==","secondaryMasterKey":"ONwDBN63Jll4NwMqijb9it1LdfXTmzRNwVDhpfdVWDgsCxchh9Grf0sqbFCv3DXKQYCiZmygc30cEMbi1905Qg==","primaryReadonlyMasterKey":"yytk71Pqeqm7okIBqEe8XkKJSppov775rs8aBkI90ZJIyosmUt14Lfw0ycUGJB307pu0aL0COkk7jxGCjiSXQg==","secondaryReadonlyMasterKey":"3LTzIsQ2rmDFkyo0fnfkMV8A7WytlOmPEDWV1werd0cSOD38J8wl46c5wy2IZ8XzAymIICsYaT2BrRv4zNODTQ=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -d --yes - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2157' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:47 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:47 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: DELETE - uri: https://cli000003-westus.documents.azure.com/dbs/cli000002/ - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-location: - - https://cliiipoyta5ddt5-westus.documents.azure.com/dbs/cli4ssnsperprmw/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:48 GMT - lsn: - - '9' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - x-ms-activity-id: - - 74cbe137-ddb3-4bc0-9edd-7db3a94d2be8 - x-ms-cosmos-llsn: - - '9' - x-ms-cosmos-quorum-acked-llsn: - - '8' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '8' - x-ms-last-state-change-utc: - - Fri, 23 Sep 2022 17:45:03.191 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-quorum-acked-lsn: - - '8' - x-ms-request-charge: - - '4.95' - x-ms-request-duration-ms: - - '29.082' - x-ms-resource-quota: - - databases=1000; - x-ms-resource-usage: - - databases=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#9 - x-ms-transport-request-id: - - '62716' - x-ms-xp-role: - - '1' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database exists - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2022-05-15 - response: - body: - string: '{"primaryMasterKey":"ZpxjNbrsp1LD9gk8l4WfdaOHICENKYVmYi7ntYXYFHBfzbDEnaF9ZnulkIYB0sRsY6NrrsHzOeJZCf1zqeWEXA==","secondaryMasterKey":"ONwDBN63Jll4NwMqijb9it1LdfXTmzRNwVDhpfdVWDgsCxchh9Grf0sqbFCv3DXKQYCiZmygc30cEMbi1905Qg==","primaryReadonlyMasterKey":"yytk71Pqeqm7okIBqEe8XkKJSppov775rs8aBkI90ZJIyosmUt14Lfw0ycUGJB307pu0aL0COkk7jxGCjiSXQg==","secondaryReadonlyMasterKey":"3LTzIsQ2rmDFkyo0fnfkMV8A7WytlOmPEDWV1werd0cSOD38J8wl46c5wy2IZ8XzAymIICsYaT2BrRv4zNODTQ=="}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '461' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb database exists - Connection: - - keep-alive - ParameterSetName: - - -g -n -d - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:05:58.8947694Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"bb2a1cf0-176d-49a8-a904-b1a0a8c7f349","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[]},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2157' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:48 GMT - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-session-token: - - '' - x-ms-version: - - '2018-09-17' - method: GET - uri: https://cli000003.documents.azure.com/ - response: - body: - string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":true,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableOptimizationFlags\":0,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' - headers: - cache-control: - - no-store, no-cache - content-location: - - https://cliiipoyta5ddt5.documents.azure.com/ - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-databaseaccount-consumed-mb: - - '0' - x-ms-databaseaccount-provisioned-mb: - - '0' - x-ms-databaseaccount-reserved-mb: - - '0' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-max-media-storage-usage-mb: - - '2048' - x-ms-media-storage-usage-mb: - - '0' - status: - code: 200 - message: Ok -- request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"cli4ssnsperprmw"}]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '103' - Content-Type: - - application/query+json - User-Agent: - - Windows/10 Python/3.10.1 azure-cosmos/3.1.2 AZURECLI/2.40.0 - x-ms-consistency-level: - - Session - x-ms-date: - - Mon, 26 Sep 2022 17:06:49 GMT - x-ms-documentdb-isquery: - - 'true' - x-ms-documentdb-query-iscontinuationexpected: - - 'False' - x-ms-version: - - '2018-09-17' - method: POST - uri: https://cli000003-westus.documents.azure.com/dbs - response: - body: - string: '{"_rid":"","Databases":[],"_count":0}' - headers: - cache-control: - - no-store, no-cache - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:49 GMT - lsn: - - '9' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - x-ms-activity-id: - - b90d69e5-23a7-4704-ab06-8b6e46881596 - x-ms-cosmos-is-partition-key-delete-pending: - - 'false' - x-ms-cosmos-llsn: - - '9' - x-ms-cosmos-query-execution-info: - - '{"reverseRidEnabled":false,"reverseIndexScan":false}' - x-ms-gatewayversion: - - version=2.14.0 - x-ms-global-committed-lsn: - - '9' - x-ms-item-count: - - '0' - x-ms-last-state-change-utc: - - Fri, 23 Sep 2022 17:45:11.397 GMT - x-ms-number-of-read-regions: - - '0' - x-ms-request-charge: - - '5.58' - x-ms-request-duration-ms: - - '0.551' - x-ms-resource-quota: - - databases=1000; - x-ms-resource-usage: - - databases=0; - x-ms-schemaversion: - - '1.14' - x-ms-serviceversion: - - version=2.14.0.0 - x-ms-session-token: - - 0:-1#9 - x-ms-transport-request-id: - - '433852' - x-ms-xp-role: - - '1' - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_dts.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_dts.yaml deleted file mode 100644 index 8e3f9c2e0f8..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_dts.yaml +++ /dev/null @@ -1,925 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_dts_cassandra000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001","name":"cli_test_cosmosdb_dts_cassandra000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_dts","date":"2023-10-12T11:02:48Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '407' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:02:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}], - "apiProperties": {}, "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '291' - Content-Type: - - application/json - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:02:57.2397286Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f4dfa7d6-b178-4c82-b329-5b71319751cd","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:02:57.2397286Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:02:57.2397286Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:02:57.2397286Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:02:57.2397286Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c4e1547b-1028-4cb9-b719-2ee237fd1f4b?api-version=2023-09-15-preview&t=638327053787743425&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SkoqYLLckybuuZ0FCtPXrpjKMsS9rCP7dY3M7XJi59K7m97M-hkZ2ukGPpTzoXDtDJ82SEgDDNt8SXKS59SYJsDWcr5Jf6Eg_K0X8s4GhOLBrk-Yn2ffjfBDtjd1FvWy8851ZmD9SBu7XXh97VdvCMfkwmmGBjyMfrdYvI691cuOgAKaApYyQYxIgoF7ok1tH2I0ScCJu1ROwWneaPZ4xKBtAImamD4gWO6mSlWbnm2tcXcC6YXh2LBmO-P9I0BtVKCimFvJJbmy7iLA5NVchsnNNnV0cZUXr1Kg_ya9Ur1NcMGi1H34IO8SaXnqE_CIi8wGJqxOJPsMWATnqCjRvQ&h=m9LqMai7U_vXdUR8bPM3hEheRmJJoI2jxOX-J5Hsmwk - cache-control: - - no-store, no-cache - content-length: - - '2504' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:58 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/c4e1547b-1028-4cb9-b719-2ee237fd1f4b?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c4e1547b-1028-4cb9-b719-2ee237fd1f4b?api-version=2023-09-15-preview&t=638327053787743425&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SkoqYLLckybuuZ0FCtPXrpjKMsS9rCP7dY3M7XJi59K7m97M-hkZ2ukGPpTzoXDtDJ82SEgDDNt8SXKS59SYJsDWcr5Jf6Eg_K0X8s4GhOLBrk-Yn2ffjfBDtjd1FvWy8851ZmD9SBu7XXh97VdvCMfkwmmGBjyMfrdYvI691cuOgAKaApYyQYxIgoF7ok1tH2I0ScCJu1ROwWneaPZ4xKBtAImamD4gWO6mSlWbnm2tcXcC6YXh2LBmO-P9I0BtVKCimFvJJbmy7iLA5NVchsnNNnV0cZUXr1Kg_ya9Ur1NcMGi1H34IO8SaXnqE_CIi8wGJqxOJPsMWATnqCjRvQ&h=m9LqMai7U_vXdUR8bPM3hEheRmJJoI2jxOX-J5Hsmwk - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c4e1547b-1028-4cb9-b719-2ee237fd1f4b?api-version=2023-09-15-preview&t=638327053787743425&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SkoqYLLckybuuZ0FCtPXrpjKMsS9rCP7dY3M7XJi59K7m97M-hkZ2ukGPpTzoXDtDJ82SEgDDNt8SXKS59SYJsDWcr5Jf6Eg_K0X8s4GhOLBrk-Yn2ffjfBDtjd1FvWy8851ZmD9SBu7XXh97VdvCMfkwmmGBjyMfrdYvI691cuOgAKaApYyQYxIgoF7ok1tH2I0ScCJu1ROwWneaPZ4xKBtAImamD4gWO6mSlWbnm2tcXcC6YXh2LBmO-P9I0BtVKCimFvJJbmy7iLA5NVchsnNNnV0cZUXr1Kg_ya9Ur1NcMGi1H34IO8SaXnqE_CIi8wGJqxOJPsMWATnqCjRvQ&h=m9LqMai7U_vXdUR8bPM3hEheRmJJoI2jxOX-J5Hsmwk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c4e1547b-1028-4cb9-b719-2ee237fd1f4b?api-version=2023-09-15-preview&t=638327053787743425&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SkoqYLLckybuuZ0FCtPXrpjKMsS9rCP7dY3M7XJi59K7m97M-hkZ2ukGPpTzoXDtDJ82SEgDDNt8SXKS59SYJsDWcr5Jf6Eg_K0X8s4GhOLBrk-Yn2ffjfBDtjd1FvWy8851ZmD9SBu7XXh97VdvCMfkwmmGBjyMfrdYvI691cuOgAKaApYyQYxIgoF7ok1tH2I0ScCJu1ROwWneaPZ4xKBtAImamD4gWO6mSlWbnm2tcXcC6YXh2LBmO-P9I0BtVKCimFvJJbmy7iLA5NVchsnNNnV0cZUXr1Kg_ya9Ur1NcMGi1H34IO8SaXnqE_CIi8wGJqxOJPsMWATnqCjRvQ&h=m9LqMai7U_vXdUR8bPM3hEheRmJJoI2jxOX-J5Hsmwk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c4e1547b-1028-4cb9-b719-2ee237fd1f4b?api-version=2023-09-15-preview&t=638327053787743425&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SkoqYLLckybuuZ0FCtPXrpjKMsS9rCP7dY3M7XJi59K7m97M-hkZ2ukGPpTzoXDtDJ82SEgDDNt8SXKS59SYJsDWcr5Jf6Eg_K0X8s4GhOLBrk-Yn2ffjfBDtjd1FvWy8851ZmD9SBu7XXh97VdvCMfkwmmGBjyMfrdYvI691cuOgAKaApYyQYxIgoF7ok1tH2I0ScCJu1ROwWneaPZ4xKBtAImamD4gWO6mSlWbnm2tcXcC6YXh2LBmO-P9I0BtVKCimFvJJbmy7iLA5NVchsnNNnV0cZUXr1Kg_ya9Ur1NcMGi1H34IO8SaXnqE_CIi8wGJqxOJPsMWATnqCjRvQ&h=m9LqMai7U_vXdUR8bPM3hEheRmJJoI2jxOX-J5Hsmwk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c4e1547b-1028-4cb9-b719-2ee237fd1f4b?api-version=2023-09-15-preview&t=638327053787743425&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SkoqYLLckybuuZ0FCtPXrpjKMsS9rCP7dY3M7XJi59K7m97M-hkZ2ukGPpTzoXDtDJ82SEgDDNt8SXKS59SYJsDWcr5Jf6Eg_K0X8s4GhOLBrk-Yn2ffjfBDtjd1FvWy8851ZmD9SBu7XXh97VdvCMfkwmmGBjyMfrdYvI691cuOgAKaApYyQYxIgoF7ok1tH2I0ScCJu1ROwWneaPZ4xKBtAImamD4gWO6mSlWbnm2tcXcC6YXh2LBmO-P9I0BtVKCimFvJJbmy7iLA5NVchsnNNnV0cZUXr1Kg_ya9Ur1NcMGi1H34IO8SaXnqE_CIi8wGJqxOJPsMWATnqCjRvQ&h=m9LqMai7U_vXdUR8bPM3hEheRmJJoI2jxOX-J5Hsmwk - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:04:22.8531069Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f4dfa7d6-b178-4c82-b329-5b71319751cd","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2930' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:04:22.8531069Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f4dfa7d6-b178-4c82-b329-5b71319751cd","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2930' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:04:22.8531069Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f4dfa7d6-b178-4c82-b329-5b71319751cd","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East - US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:04:22.8531069Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2930' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"source": {"component": "CosmosDBCassandra", "keyspaceName": - "cli000002", "tableName": "cli000003"}, "destination": {"component": "CosmosDBCassandra", - "keyspaceName": "cli000002", "tableName": "cli000004"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts copy - Connection: - - keep-alive - Content-Length: - - '223' - Content-Type: - - application/json - ParameterSetName: - - -g --job-name --account-name --source-cassandra-table --dest-cassandra-table - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:05:04.9917332Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '614' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:05:05Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '606' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts list - Connection: - - keep-alive - ParameterSetName: - - -g --account-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:05:05Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '618' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts pause - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2023-10-12T11:05:11Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '605' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2023-10-12T11:05:11Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '605' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts resume - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:05:17Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '606' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2023-10-12T11:05:17Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '606' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts cancel - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2023-10-12T11:05:23Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '608' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb dts show - Connection: - - keep-alive - ParameterSetName: - - -g --account-name --job-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2023-10-12T11:05:23Z","processedCount":0,"totalCount":0,"mode":"Offline","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '608' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml deleted file mode 100644 index 27c7940fbee..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml +++ /dev/null @@ -1,2008 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cosmosTest?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest","name":"cosmosTest","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DONT - CREATE NEW RESOURCES HERE":"TRUE"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 19 Feb 2024 10:20:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7FFEE2A4C77247CB971097B791471E97 Ref B: MAA201060516027 Ref C: 2024-02-19T10:20:19Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "enablePerRegionPerPartitionAutoscale": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '290' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:20:25.2858337Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:20:25.2858337Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:20:25.2858337Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:20:25.2858337Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:20:25.2858337Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 - cache-control: - - no-store, no-cache - content-length: - - '2811' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:20:26 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Qu5f4O46bcw1eSE-flppoM7ueD1QO33-dZEKrbdvgBdfEdtQyZZIqjmxilPyJ_CR0HrlvyTaIEasnRbHR_H2dI9D0WKIU028HUWiEZ904CaI3oyE3XElskzCngiQVKp7s20WKG5-ccSjnKGTQSrA53iIgBHHyoTqY9H8mCtFZwSf5RxDfboIDEwIH49Qj2UHfYpXHHxVpp6uUVXZX7w7tGF44rVh4VDiZ01WltsDnLK_BsLHI-zgA9o_j8M2U_067LzXbMX3GQbsAJTKovdSCOaSymx8pjvLLUUb6adF8qwepY6NkiMPXdBCveWb-Li5UEH19gy0vplHNfsK-BjNbA&h=xTPS5VhEuL7j7DFh6GFsrnv7gRJq3BQt2sxxuY277B0 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F7FDB4D3E6CB428EB9F78856260CCEE5 Ref B: MAA201060516023 Ref C: 2024-02-19T10:20:19Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:20:26 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: CA9A13277497421986ED602EF8F33BBE Ref B: MAA201060516031 Ref C: 2024-02-19T10:20:27Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:20:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 4F50481F2A0947EF9F0EBF3714F165C0 Ref B: MAA201060514009 Ref C: 2024-02-19T10:20:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:21:28 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B8CE3768D06A4623A10F091D20C1B588 Ref B: MAA201060514051 Ref C: 2024-02-19T10:21:28Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:21:58 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: DBAB5649FAF749C28D14C5DB6A86B20A Ref B: MAA201060513033 Ref C: 2024-02-19T10:21:58Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7cc5403b-ccc1-47d4-9b78-00b12f2ce5ba?api-version=2024-02-15-preview&t=638439348273004865&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iqko2dHzgMEPfHshHbdVxoNJJ2QDK0whTkuemhaqiTtbCjjgoPRAgrZLryhjImWp6d6RBLG572tGcfJ5uxXghV_hXoupJG_kztL49joMIGJmKO7zebWh40aC9Jh43PcWzHbioZeA1pp6JBbeUdMGw7mWamcK0_sG0Z_IoTo93fKY-b09yDix4fZ4SPQGnSQX36W2w3JGmZMKb-6l6m-Wkq5A7plSAYSAOB0rC6lcQ0aHjhKCU9gxY0tj5E3A_piPZDSPfaq8XVDq-HKeUdRG2kuuQkJitRQZT22GSAaxpYJxVdWUyKOeGuIkR7JqzORAv3QBjBKMFH1Wx7VEYoRxzQ&h=9v2j39MabYG-UMh82OxCjdJrVost1B0eMGFwzEaV2r4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:22:29 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: BAEB93C439A747C99674BC25D1E0267E Ref B: MAA201060516053 Ref C: 2024-02-19T10:22:29Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3225' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:22:29 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: E8B6C1FFD2304A539826A958A2E06C3C Ref B: MAA201060515009 Ref C: 2024-02-19T10:22:29Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3225' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:22:30 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: D5EA4E565DE14DE9A61763823F8D2AB2 Ref B: MAA201060516037 Ref C: 2024-02-19T10:22:30Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3225' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:22:31 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: FC46545DBE1544B689278179EAC02961 Ref B: MAA201060516049 Ref C: 2024-02-19T10:22:30Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3225' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:22:32 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 776ABA10EF8F4909A28BB7B96ECC01CE Ref B: MAA201060513025 Ref C: 2024-02-19T10:22:31Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "enablePerRegionPerPartitionAutoscale": - false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '84' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=iWo7wNOZCFTNkE02bGnhiji7xOI2ZXgbGBmphxOSGMrcusorKu9ztxCD8DhgNLIVwC16LDQCPgra_hmXMcHuGqpQkH6QPHqTe6-MiwdRdC65fDGkbf7zf868FqBqanVxy03SNQe1RBPIdRnQJeYCiQbOTHfTVn4lLJFFX74dkoWVfE6sidhofC6gwLzu4j3bN2tWiw9ZKUiHKGrwUqr-gg_i_irINB_fkXUiowrfNUVl1mYQN5vOil8zV7U8YzwjyPmZVH-2ZdiStQiI0Ka_wz6GAmljydcxWP7k_U7UTAvBJmS0kZFRK24eHV9tWVZpSm2OZQidQrQBOM_0Ys8UpA&h=mMrQvlzF8ehj5jq4SM8u92Kk7jpckQC5WHESoEEDnF0 - cache-control: - - no-store, no-cache - content-length: - - '3224' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:22:41 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=u5-s05nFsKrzUfkaN342mXnauQGSxT9pdd_i9cLtGOBPKDV9mqw_hIeYcI8ZswplSkiwzxRL8GzjPTZSHP4tAKVwoyUB7M1BZtCrtvWZascjiS5NOBYwdtfU03YbVE1tSNANQTtTHVAH60pDQZLS0TxNqUcz-NIYEUvMqc5pXe1jl4puKISnzP9qxZn8iSgGCuN_ZZX_L_WiAutQ9aMzuLBJAUu29lUScY8Nf4fvqgek1I5CSv6hNt-vFXbucbP_fTkq9Tjnmu_2mVOHn3aCfGoGqoMlkesFfTgiBZXUaOPVYVec2nFoAd3vcKQnkAWb-Pane3KxMtFlXNb4OXv48Q&h=96YMBz99KO-Zvs9b0-GRepcGsa6j8Ayejk7AJw2ohms - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: CD79221CCCFC450582C8A1F0A4B25DED Ref B: MAA201060513021 Ref C: 2024-02-19T10:22:32Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=iWo7wNOZCFTNkE02bGnhiji7xOI2ZXgbGBmphxOSGMrcusorKu9ztxCD8DhgNLIVwC16LDQCPgra_hmXMcHuGqpQkH6QPHqTe6-MiwdRdC65fDGkbf7zf868FqBqanVxy03SNQe1RBPIdRnQJeYCiQbOTHfTVn4lLJFFX74dkoWVfE6sidhofC6gwLzu4j3bN2tWiw9ZKUiHKGrwUqr-gg_i_irINB_fkXUiowrfNUVl1mYQN5vOil8zV7U8YzwjyPmZVH-2ZdiStQiI0Ka_wz6GAmljydcxWP7k_U7UTAvBJmS0kZFRK24eHV9tWVZpSm2OZQidQrQBOM_0Ys8UpA&h=mMrQvlzF8ehj5jq4SM8u92Kk7jpckQC5WHESoEEDnF0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:22:41 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 76AA9C3A831E4A77909A44D3B1404C67 Ref B: MAA201060515027 Ref C: 2024-02-19T10:22:41Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=iWo7wNOZCFTNkE02bGnhiji7xOI2ZXgbGBmphxOSGMrcusorKu9ztxCD8DhgNLIVwC16LDQCPgra_hmXMcHuGqpQkH6QPHqTe6-MiwdRdC65fDGkbf7zf868FqBqanVxy03SNQe1RBPIdRnQJeYCiQbOTHfTVn4lLJFFX74dkoWVfE6sidhofC6gwLzu4j3bN2tWiw9ZKUiHKGrwUqr-gg_i_irINB_fkXUiowrfNUVl1mYQN5vOil8zV7U8YzwjyPmZVH-2ZdiStQiI0Ka_wz6GAmljydcxWP7k_U7UTAvBJmS0kZFRK24eHV9tWVZpSm2OZQidQrQBOM_0Ys8UpA&h=mMrQvlzF8ehj5jq4SM8u92Kk7jpckQC5WHESoEEDnF0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:23:11 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: D9B12ED872BE4B37B47855245B091E64 Ref B: MAA201060516035 Ref C: 2024-02-19T10:23:12Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27a74ce2-f0c1-45e4-88de-0d91506becce?api-version=2024-02-15-preview&t=638439349613672750&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=iWo7wNOZCFTNkE02bGnhiji7xOI2ZXgbGBmphxOSGMrcusorKu9ztxCD8DhgNLIVwC16LDQCPgra_hmXMcHuGqpQkH6QPHqTe6-MiwdRdC65fDGkbf7zf868FqBqanVxy03SNQe1RBPIdRnQJeYCiQbOTHfTVn4lLJFFX74dkoWVfE6sidhofC6gwLzu4j3bN2tWiw9ZKUiHKGrwUqr-gg_i_irINB_fkXUiowrfNUVl1mYQN5vOil8zV7U8YzwjyPmZVH-2ZdiStQiI0Ka_wz6GAmljydcxWP7k_U7UTAvBJmS0kZFRK24eHV9tWVZpSm2OZQidQrQBOM_0Ys8UpA&h=mMrQvlzF8ehj5jq4SM8u92Kk7jpckQC5WHESoEEDnF0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:23:42 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: F5B0F0CA1CC340548FAA67741AB3DF59 Ref B: MAA201060516019 Ref C: 2024-02-19T10:23:42Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3251' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:23:44 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 0FBA20CBF6CB4D64BA3BC7291C48E33F Ref B: MAA201060513035 Ref C: 2024-02-19T10:23:43Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3251' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:23:45 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 96B43A6B50E74C29B8940A3AA7924E8E Ref B: MAA201060513025 Ref C: 2024-02-19T10:23:44Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3251' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:23:46 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 3F848F9F3CBC4506A92ADE03071DF3B0 Ref B: MAA201060513035 Ref C: 2024-02-19T10:23:45Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3251' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:23:47 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 2492D179CC7E4F1D92AAA091E44C4064 Ref B: MAA201060514031 Ref C: 2024-02-19T10:23:47Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "enablePerRegionPerPartitionAutoscale": - true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '83' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362415034&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=j8FhnalzbVSKtgv2WHymChqxMwxtcWsUguS6pkynd-v_s4WNAMGtezYWVaOLVF2GOzJJhoRB0R8iCjyGkVj5a4X8iM32w-COaOD6dkVED0y8HiNkBQ1n9_XVwt-a1pCmN8v8351djKrof3YhDsfAw5wk1XaLyG9vLpL5U_Vob_7Lu6Q1wuCcrEiG90Nwz_mOrTUOSIiPTmYRFjGu2cN4ZCGeiHMDTzXEvBRbPwXded8LBP8_rdBEzLiXFvaxXgpHe9X4Q_Rqy9KzAL8_8kvwbTKqkqch7l7tN7414owWXU2axrfu5u5sLaJe65OUKVfazLXyt0Pi13BkPm2QANiuVw&h=YWfmV631DZl8ewrwM6sSw3RNkkUxwdMmTHPqwjlD7Zo - cache-control: - - no-store, no-cache - content-length: - - '3250' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:23:55 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362572463&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=EKh6WO0VRyHo8rCSQACyIGjRUE2n9yBjYdwnf7St_LiAEogZrTIwlEDzcE319WXN1-09nn9lqrwswl3bPsV4uZAjWCX31YMYqxi9tADjnotamxX_68TLWLUMOupJsPMEZiMJ50rmHF-pQhV2PMR7c2aeTU5MnsxOD-0is1FpkWNZjMzT-Dbeg7xL5qm37D6TjD6Mz6QjiDUWvLqfDinoGXIbq9zsyS5fT5BoIQZHDka8OqbwXX7ZqEuAKmNwxG7Loh5Fb120-0Eia3qQZnnHNRO9QchiisehumEwCkwhaKAPSlMczbnALdkwLl9GYyt7Vn-tqzlwLkmyqbtn7bf2dQ&h=1ZBBC36OVU2i6DLjh2aziucufjfEutZh3d_Pstj3J30 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: E8743A93BC0B44F6988803A11803AF19 Ref B: MAA201060513051 Ref C: 2024-02-19T10:23:48Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362415034&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=j8FhnalzbVSKtgv2WHymChqxMwxtcWsUguS6pkynd-v_s4WNAMGtezYWVaOLVF2GOzJJhoRB0R8iCjyGkVj5a4X8iM32w-COaOD6dkVED0y8HiNkBQ1n9_XVwt-a1pCmN8v8351djKrof3YhDsfAw5wk1XaLyG9vLpL5U_Vob_7Lu6Q1wuCcrEiG90Nwz_mOrTUOSIiPTmYRFjGu2cN4ZCGeiHMDTzXEvBRbPwXded8LBP8_rdBEzLiXFvaxXgpHe9X4Q_Rqy9KzAL8_8kvwbTKqkqch7l7tN7414owWXU2axrfu5u5sLaJe65OUKVfazLXyt0Pi13BkPm2QANiuVw&h=YWfmV631DZl8ewrwM6sSw3RNkkUxwdMmTHPqwjlD7Zo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:23:55 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 500B76C6DF1347B2A0C079ECCE5894F1 Ref B: MAA201060514011 Ref C: 2024-02-19T10:23:56Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362415034&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=j8FhnalzbVSKtgv2WHymChqxMwxtcWsUguS6pkynd-v_s4WNAMGtezYWVaOLVF2GOzJJhoRB0R8iCjyGkVj5a4X8iM32w-COaOD6dkVED0y8HiNkBQ1n9_XVwt-a1pCmN8v8351djKrof3YhDsfAw5wk1XaLyG9vLpL5U_Vob_7Lu6Q1wuCcrEiG90Nwz_mOrTUOSIiPTmYRFjGu2cN4ZCGeiHMDTzXEvBRbPwXded8LBP8_rdBEzLiXFvaxXgpHe9X4Q_Rqy9KzAL8_8kvwbTKqkqch7l7tN7414owWXU2axrfu5u5sLaJe65OUKVfazLXyt0Pi13BkPm2QANiuVw&h=YWfmV631DZl8ewrwM6sSw3RNkkUxwdMmTHPqwjlD7Zo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:24:26 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C274F07605A9436BAE329973FA68B6B9 Ref B: MAA201060516039 Ref C: 2024-02-19T10:24:26Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d87d277-8b84-4d5e-946f-be4ef6bac3cb?api-version=2024-02-15-preview&t=638439350362415034&c=MIIHHjCCBgagAwIBAgITfwKW7CzhHP5y3OJv9wAEApbsLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwMTMwMjI1MDAwWhcNMjUwMTI0MjI1MDAwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMdLBpeMT45PrN0PVwT2qCTSx3AfLEvwe5P5doB25hgw3G_LW7hBtO2tLKJzuhM3uxJW8gFuOx1MuVnjrBRL4d98ph5IjRZ4OFOXwSKPpL7V4IUYdhN5VF0QLCF_PC0Q0Ks_YBQrZS0XfQPzwrt3SylvrV_mQ61ZqoLZdN4cU3gNwWYxAyJJ1x0sUGxczNhOE_klwSa8CDqE51O960b9vUxQXNyQ5W7WiNv9zjmFsiNFk-dJ66Rm0Ip7Io6Ff7OXoPSjNoHZmYQbNikuFQWY7Tw8INzs9KRqPTq8u9WjLeJm1t81XrrVulos6wd1dPREDUZ-UO54M5BV3ztdx9ShgfUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSiiBrqZUTzRyEtvkUcyxy1eSSo9DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIJcAqCwQ4xKJpAGA_PQX052uxYLuR_vWJXfYr6OD0DQB_HaQQajLwTsdm5YRsAduP063zHHZTaM1PGSBvU2VPUeg4JcB7u9DTGzCXJXX-B7s0gVBu-LtRKcElnj2yIUaJm591km020QN8oZPjqanSfJu_4wJo3FjgVkqZIZZbfs40OaLRTr5gN1FvFi8nrvRCFs3C4qOksSLM7sRZGE8YJejGsw_DZdTeroabL3FrAMOTVKDlDEW11fJ3mGT4fkrxz-IvPnJJ02dbjUIsB0fporGNuIDWYhMm6XV5LbYoOlLlkLKqppqGysFNj4rQvXypr9KM9XjEBbK1vdB59IRE4&s=j8FhnalzbVSKtgv2WHymChqxMwxtcWsUguS6pkynd-v_s4WNAMGtezYWVaOLVF2GOzJJhoRB0R8iCjyGkVj5a4X8iM32w-COaOD6dkVED0y8HiNkBQ1n9_XVwt-a1pCmN8v8351djKrof3YhDsfAw5wk1XaLyG9vLpL5U_Vob_7Lu6Q1wuCcrEiG90Nwz_mOrTUOSIiPTmYRFjGu2cN4ZCGeiHMDTzXEvBRbPwXded8LBP8_rdBEzLiXFvaxXgpHe9X4Q_Rqy9KzAL8_8kvwbTKqkqch7l7tN7414owWXU2axrfu5u5sLaJe65OUKVfazLXyt0Pi13BkPm2QANiuVw&h=YWfmV631DZl8ewrwM6sSw3RNkkUxwdMmTHPqwjlD7Zo - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:24:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 50494BFD9E7D46FDB185C651136AEC16 Ref B: MAA201060516025 Ref C: 2024-02-19T10:24:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3250' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:24:58 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 7E1CB3B86E624348B93BD031D5804D48 Ref B: MAA201060515045 Ref C: 2024-02-19T10:24:58Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-per-region-per-partition-autoscale - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3250' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:24:58 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 68193E82512148D2A8FFE29755539027 Ref B: MAA201060514031 Ref C: 2024-02-19T10:24:58Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-19T10:21:51.6568727+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"4979d8bd-d184-4fd0-a31a-caded524bdef","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","documentEndpoint":"https://prpp-test-38129749818-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-19T10:21:51.6568727+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3250' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:25:00 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 3A9AD3D9339844A88A6F8BB88E9AB21C Ref B: MAA201060514035 Ref C: 2024-02-19T10:24:59Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2023-11-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:25:01 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationResults/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022211612&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=i5Hr88ZMtY8TzkigYz6KkiqJwTnv4S3423mKL6eWZ6Tbi0rsL1tfBKbv_bOvPniwesROSFGc1FnR9W4D01eK7EnIoDOX5gO-Xl7S3cipEGt_GRUU0rdpiumdd9eH-TMPTq7TWNxzNT8mVNnCBwjHZjtnYSfwSKjfk4iLYAA8EsIgiyy06uTAKSNUtx3ubkxMDHl2Mv_Giov509OVwKgw5MpKD8YlrjaCNUPx3pf0PcWn0B1c_RfS3p06l_xgvfN-9EkJc3201vhsAIFOf-2GeD9FRj5sd0LcFCDeMG6WoBmwkgw6pw8tw5hDJHnQlv1TeX5x6EjS8Be6irnFB3CpEw&h=rHHrnd1d8qEhPqvSLWSnryt3Mjk5VXWYhP5FxQ_1aW0 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 5237CC9935DE49DCA9D17B6FAEAF8AA5 Ref B: MAA201060516009 Ref C: 2024-02-19T10:25:00Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:25:02 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 7870CB44E5DC405E930A51F27AEBE987 Ref B: MAA201060514011 Ref C: 2024-02-19T10:25:02Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:25:33 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C476F1494FC0486EBE13EA8470B67F73 Ref B: MAA201060514037 Ref C: 2024-02-19T10:25:33Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:26:04 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 12A510C2D608476CA0AEDD2A5C58E1D9 Ref B: MAA201060513047 Ref C: 2024-02-19T10:26:04Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:26:34 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: BFAFF39D43F0431BA715AB27A8F86C3A Ref B: MAA201060513019 Ref C: 2024-02-19T10:26:34Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:27:04 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 887B0B092784492784E8DE36CF1763C4 Ref B: MAA201060515023 Ref C: 2024-02-19T10:27:05Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:27:35 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B2FF725EB920471F99F89FCD8E81C594 Ref B: MAA201060513053 Ref C: 2024-02-19T10:27:35Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:28:06 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: BF7BA01F1C3A4F528113843E246E7620 Ref B: MAA201060513033 Ref C: 2024-02-19T10:28:06Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:28:38 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 2CB6D2EF7A934F2D8FD9524927E170BA Ref B: MAA201060513035 Ref C: 2024-02-19T10:28:37Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:29:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 8A6804FDCB8F4CBBAA0DBE60D8031076 Ref B: MAA201060513027 Ref C: 2024-02-19T10:29:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:29:38 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C1AA0EFFC28B4824921A7A66C58267F9 Ref B: MAA201060516021 Ref C: 2024-02-19T10:29:39Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:30:09 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 18ABF12D89544753BAEA5F7A30C9E5D4 Ref B: MAA201060513053 Ref C: 2024-02-19T10:30:09Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:30:40 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 5B8B10C079C9495898BABD9AEDDBF62A Ref B: MAA201060515009 Ref C: 2024-02-19T10:30:40Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:31:10 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 4095AFBA75174027AF5F6764A2786EE4 Ref B: MAA201060516037 Ref C: 2024-02-19T10:31:11Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:31:41 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: CAFE8138CA46441090009768ABD9D060 Ref B: MAA201060513027 Ref C: 2024-02-19T10:31:41Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:32:11 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B1B87091FAA14C169C617751881E61A3 Ref B: MAA201060516027 Ref C: 2024-02-19T10:32:12Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.0 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/339bf522-9b60-4eb4-b3b2-598069d75bee?api-version=2023-11-15&t=638439351022055327&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=adb4n250-AbJpogHzS6787S9TvG_sOfMH5KaiqVwUpGYY3pVIYo2qe8eVECHfcYdIFFbrDfGk7tAKmf-BFck3Wahd2jcpDtXMqeCV6Xtkcb0vGeosDmCwueC7Kx9Cy_12D1fHBjSchHsLqX9QOay6b0AtelMQ--RTd0BDbf2mSVEnEkT0crOpIqqKUwmXy0NjMb5MkuV2yq4ByBCXi0LV_t5XltQyCqT9pdkpPvgP-orT9NDO9H2Jtqh6RFHEqVxbCWxDv0Pjm12BS3BZ6zjWuQGWHCqUki3tle5KIOTv4gVWWFdF8GBsQJEEJCFo1uQCBcSHTVAcxSuefQbzRG9IQ&h=20aj63zbSpS4J4zYGooVb0jovQjNFVT3LDlxLqPp5zc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 19 Feb 2024 10:32:42 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 2FC8E5B79D39497693AF7EE9975C2B07 Ref B: MAA201060516009 Ref C: 2024-02-19T10:32:42Z' - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_account_restore_command.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_account_restore_command.yaml deleted file mode 100644 index f02e92e618c..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_account_restore_command.yaml +++ /dev/null @@ -1,3777 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_account_restore_command000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001","name":"cli_test_cosmosdb_gremlin_account_restore_command000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_account_restore_command","date":"2023-10-12T11:10:04Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '472' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:10:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '389' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:10:15.4486074Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"74bafa21-da38-442c-8a78-0c3d1d57a921","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:10:15.4486074Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:10:15.4486074Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:10:15.4486074Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:10:15.4486074Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - cache-control: - - no-store, no-cache - content-length: - - '2489' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:16 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0ffa0ee5-aa0c-4291-9db4-21da1a83a18d?api-version=2023-09-15-preview&t=638327058170022912&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cZasA0Iai5O-yZLjjgzOKIZVASjBF3YB6RIYnTcLOkJhi_OfgOXKIlGqregZjUZyXeDTLE2b97g9w_R5tU71zCsRYstfFSEra8-RDM5yPgr7Q4m8fvrReOpXgxa0zdAnUyr9PuMUjmVvUbBdgwsW3io4ksVbK0BPz_U0ZVJ-Adm-JYufO3tTqCfiyCdSqJIKix1cRkhxw-VSP4w8KdjqtfnfgGWMWEqFNbTMaVIyYb9DEF4MbRjnUD-gOWH2ksm-L6dttQM0kcEq-YXUoyCiZuAp1aSv3-RnM6kxjDEs5PkWOEBEwWV5sJk4PUPXI6qw_fOM9VFQVRU0R3lHk7P_Cg&h=KSynjT9o9tdnkFyGIetEsLR3HfMLK67BrelR8X8BBLk - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:13:10.3303367Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"74bafa21-da38-442c-8a78-0c3d1d57a921","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2918' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:13:10.3303367Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"74bafa21-da38-442c-8a78-0c3d1d57a921","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2918' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:13:10.3303367Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"74bafa21-da38-442c-8a78-0c3d1d57a921","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:13:10.3303367Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2918' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000005"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1350fe9f-8fca-40bd-92c5-c10028547f01?api-version=2023-09-15&t=638327060336505675&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=QPljNCm4Y3q26LnilkCBNpCyaITQ8zkU_bGy8sZGaVzIoSINwCHgxsoWcK18i300NmI647mBADTECMCMw0hFnuj0rHDZrZUi4GgsoyarZv8J9l0v_MjbPgI1OHXuZi7YnuGtr6ICR5PHEBl7dhA4ZStC1JTto6-s369IRV_-vvt1n9PN-RXU8U1N_SEzX3eO-UjDTiu1X1NuthzqaDgbPFlqgILANREmBH_OD6R8sAHE2vhSTDrpmEd1uQAEA8x6f04ik6y-R4DuheBOhV3zfbDe3Go3SZXhzxoZ1NdhS56doxvx1fvH-qZSfKI6vbVUTLRFEwwQbDmYXbQnkqzNVw&h=g8_Dv12Z2syfYLJ7miS7o1peKXbG_jDOqZYN79sTkPI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:53 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/operationResults/1350fe9f-8fca-40bd-92c5-c10028547f01?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1350fe9f-8fca-40bd-92c5-c10028547f01?api-version=2023-09-15&t=638327060336505675&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=QPljNCm4Y3q26LnilkCBNpCyaITQ8zkU_bGy8sZGaVzIoSINwCHgxsoWcK18i300NmI647mBADTECMCMw0hFnuj0rHDZrZUi4GgsoyarZv8J9l0v_MjbPgI1OHXuZi7YnuGtr6ICR5PHEBl7dhA4ZStC1JTto6-s369IRV_-vvt1n9PN-RXU8U1N_SEzX3eO-UjDTiu1X1NuthzqaDgbPFlqgILANREmBH_OD6R8sAHE2vhSTDrpmEd1uQAEA8x6f04ik6y-R4DuheBOhV3zfbDe3Go3SZXhzxoZ1NdhS56doxvx1fvH-qZSfKI6vbVUTLRFEwwQbDmYXbQnkqzNVw&h=g8_Dv12Z2syfYLJ7miS7o1peKXbG_jDOqZYN79sTkPI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1350fe9f-8fca-40bd-92c5-c10028547f01?api-version=2023-09-15&t=638327060336505675&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=QPljNCm4Y3q26LnilkCBNpCyaITQ8zkU_bGy8sZGaVzIoSINwCHgxsoWcK18i300NmI647mBADTECMCMw0hFnuj0rHDZrZUi4GgsoyarZv8J9l0v_MjbPgI1OHXuZi7YnuGtr6ICR5PHEBl7dhA4ZStC1JTto6-s369IRV_-vvt1n9PN-RXU8U1N_SEzX3eO-UjDTiu1X1NuthzqaDgbPFlqgILANREmBH_OD6R8sAHE2vhSTDrpmEd1uQAEA8x6f04ik6y-R4DuheBOhV3zfbDe3Go3SZXhzxoZ1NdhS56doxvx1fvH-qZSfKI6vbVUTLRFEwwQbDmYXbQnkqzNVw&h=g8_Dv12Z2syfYLJ7miS7o1peKXbG_jDOqZYN79sTkPI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000005","properties":{"resource":{"id":"cli000005","_rid":"XzF4AA==","_self":"dbs/XzF4AA==/","_etag":"\"00003802-0000-0200-0000-6527d4f60000\"","_colls":"colls/","_users":"users/","_ts":1697109238}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '490' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - Content-Length: - - '265' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/graphs/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/71736e88-806b-445b-88f0-975e0a9f5e2f?api-version=2023-09-15&t=638327060674080488&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=j42u8cOGDJlw317b-78bOEVxzyXmQdhI3HBZnS1yJBsgGo3uL7dHJkLSc7mmitAyycyjXrlGtZHtLJP-9hIa-ofm5euVg4tUc_vB4dOQ73dM5Xigc8ubEpoLKaBOc4v6UiusVdXQAqAYoYHsHta26cz1bNqdMcbYfZvMMoyDTFlAjHnXqYgu3tuBOAyzaLfcxh-TSeA3xXdPJ1HTncfgl--WpGcrGJhmCz5qZgAlIjlT6gdsjyg1ps7w2R8LQZLMAyths2zMcrKkifHTp2AYi5pNh_-gYCAPJ2Aj2aqs6DaWg3tp48GYrzGmm7mo0XuLHAefZ0WUy7MZcgZQ7Dy_Qg&h=nOQ68zg_4bR49xmjHzF0zqV8i-EBn0wVAWRM_GckD-c - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:26 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/graphs/cli000002/operationResults/71736e88-806b-445b-88f0-975e0a9f5e2f?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/71736e88-806b-445b-88f0-975e0a9f5e2f?api-version=2023-09-15&t=638327060674080488&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=j42u8cOGDJlw317b-78bOEVxzyXmQdhI3HBZnS1yJBsgGo3uL7dHJkLSc7mmitAyycyjXrlGtZHtLJP-9hIa-ofm5euVg4tUc_vB4dOQ73dM5Xigc8ubEpoLKaBOc4v6UiusVdXQAqAYoYHsHta26cz1bNqdMcbYfZvMMoyDTFlAjHnXqYgu3tuBOAyzaLfcxh-TSeA3xXdPJ1HTncfgl--WpGcrGJhmCz5qZgAlIjlT6gdsjyg1ps7w2R8LQZLMAyths2zMcrKkifHTp2AYi5pNh_-gYCAPJ2Aj2aqs6DaWg3tp48GYrzGmm7mo0XuLHAefZ0WUy7MZcgZQ7Dy_Qg&h=nOQ68zg_4bR49xmjHzF0zqV8i-EBn0wVAWRM_GckD-c - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/71736e88-806b-445b-88f0-975e0a9f5e2f?api-version=2023-09-15&t=638327060674080488&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=j42u8cOGDJlw317b-78bOEVxzyXmQdhI3HBZnS1yJBsgGo3uL7dHJkLSc7mmitAyycyjXrlGtZHtLJP-9hIa-ofm5euVg4tUc_vB4dOQ73dM5Xigc8ubEpoLKaBOc4v6UiusVdXQAqAYoYHsHta26cz1bNqdMcbYfZvMMoyDTFlAjHnXqYgu3tuBOAyzaLfcxh-TSeA3xXdPJ1HTncfgl--WpGcrGJhmCz5qZgAlIjlT6gdsjyg1ps7w2R8LQZLMAyths2zMcrKkifHTp2AYi5pNh_-gYCAPJ2Aj2aqs6DaWg3tp48GYrzGmm7mo0XuLHAefZ0WUy7MZcgZQ7Dy_Qg&h=nOQ68zg_4bR49xmjHzF0zqV8i-EBn0wVAWRM_GckD-c - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/graphs/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/graphs/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"XzF4AOXFfHs=","_ts":1697109272,"_self":"dbs/XzF4AA==/colls/XzF4AOXFfHs=/","_etag":"\"00003b02-0000-0200-0000-6527d5180000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1145' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account show - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921?api-version=2023-09-15-preview - response: - body: - string: '{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East US - 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli000003","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","oldestRestorableTime":"2023-10-12T11:13:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z"}]}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '625' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli000003","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","oldestRestorableTime":"2023-10-12T11:13:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:19:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:19:02Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '289247' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:19:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921/restorableGremlinResources?api-version=2023-09-15-preview&restoreLocation=eastus2&restoreTimestampInUtc=2023-10-12%2011%3A17%3A11%2B00%3A00 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921/restorableGremlinResources/cli000005","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinResources","name":"cli000005","databaseName":"cli000005","graphNames":["cli000002"]}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '389' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "East US 2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0}], "databaseAccountOfferType": - "Standard", "apiProperties": {}, "createMode": "Restore", "restoreParameters": - {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921", - "restoreTimestampInUtc": "2023-10-12T11:17:11.000Z", "restoreMode": "PointInTime"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - Content-Length: - - '513' - Content-Type: - - application/json - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:19:23.207969Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","restoreTimestampInUtc":"2023-10-12T11:17:11Z","sourceBackupLocation":"East - US 2","gremlinDatabasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:19:23.207969Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:19:23.207969Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:19:23.207969Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:19:23.207969Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - cache-control: - - no-store, no-cache - content-length: - - '2905' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:24 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1192' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:30:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:30:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/192f2f65-d3ac-45af-a635-271214fdcdc0?api-version=2023-09-15-preview&t=638327063655118772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dxkeqwc7Xf9MX3wCh4SLughkHUZsf5QXI-Zl1IGrS6nSkXCcfyW_f2TX-1wuhsSKm09Vracc7PCoCKaodw70qfG8NtU1ip98ZVRkGLR9wxQJT5dTwQWhw5CMC27Ffg_vlnKDkFOKQ3QrqQdVYkRUiApFZ4HxaA9f4YiMnIZliZQGhLqERP5kl49c1q2Y7cRRwvNtKsI7PMTacxegfsdM9cqie7R5fMLAiWCtHJQeq-6a5uYud76Eh-cAPhP7cMisK-i8B4XFUJeF2Q2Nq-72a2DGHtf1WI2yzpCGlf-phZPKqSvnvavqvtBau_uyvHuTmtv-JjDKKHyrCXYHW9mkOg&h=TiKF9oSh-IYZYmag_BcWrjhmiwp1t9JW_MflQnfiE1A - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:32:56.0644239Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","restoreTimestampInUtc":"2023-10-12T11:17:11Z","sourceBackupLocation":"East - US 2","gremlinDatabasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3255' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:32:56.0644239Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","restoreTimestampInUtc":"2023-10-12T11:17:11Z","sourceBackupLocation":"East - US 2","gremlinDatabasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3255' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:32:56.0644239Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","restoreTimestampInUtc":"2023-10-12T11:17:11Z","sourceBackupLocation":"East - US 2","gremlinDatabasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:32:56.0644239Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3255' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_account_restore_using_create.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_account_restore_using_create.yaml deleted file mode 100644 index 524c525f2f4..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_account_restore_using_create.yaml +++ /dev/null @@ -1,4070 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001","name":"cli_test_cosmosdb_gremlin_account_restore_using_create000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_account_restore_using_create","date":"2023-10-12T11:33:43Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '487' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '389' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:33:53.5651841Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:33:53.5651841Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:33:53.5651841Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:53.5651841Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:53.5651841Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview&t=638327072352627207&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=j5V_rP9UnFSYKnhR0CUWzA2ZWTqEHYfwXGoWB3BsAs-N0A3K24FHt4Fm6Jxl-pgHfpKUp8uh39cUk4V_R_DzBhSAtpchbQEssJCVtB5X2r3C0gG3in9XPraz2jk5v1tIQPitfI5YzHs8QArZ2a9yXEFzMWIYWhJsy9pK1O0BR9G4iUzste8mvN30fzKjsWwFHMbG3KxCMb6ds2GBB19pFfCt95T5v_UiuDg2xecHVGvf16b8PwjX3p-UbC1Meu91fH4HywwmDqSSE4WOqfeHsZV961dxmdG-4nCB3O2-3klZ0da6Ab_oGWIQJp4pyzemwV9EN_PmspetRE1LPjVVNA&h=cOCzs6FpN2bl5Atk8CbDsE3Yjuds6aqNbdDsvEjvoG0 - cache-control: - - no-store, no-cache - content-length: - - '2494' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:54 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview&t=638327072352627207&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=j5V_rP9UnFSYKnhR0CUWzA2ZWTqEHYfwXGoWB3BsAs-N0A3K24FHt4Fm6Jxl-pgHfpKUp8uh39cUk4V_R_DzBhSAtpchbQEssJCVtB5X2r3C0gG3in9XPraz2jk5v1tIQPitfI5YzHs8QArZ2a9yXEFzMWIYWhJsy9pK1O0BR9G4iUzste8mvN30fzKjsWwFHMbG3KxCMb6ds2GBB19pFfCt95T5v_UiuDg2xecHVGvf16b8PwjX3p-UbC1Meu91fH4HywwmDqSSE4WOqfeHsZV961dxmdG-4nCB3O2-3klZ0da6Ab_oGWIQJp4pyzemwV9EN_PmspetRE1LPjVVNA&h=cOCzs6FpN2bl5Atk8CbDsE3Yjuds6aqNbdDsvEjvoG0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview&t=638327072352627207&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=j5V_rP9UnFSYKnhR0CUWzA2ZWTqEHYfwXGoWB3BsAs-N0A3K24FHt4Fm6Jxl-pgHfpKUp8uh39cUk4V_R_DzBhSAtpchbQEssJCVtB5X2r3C0gG3in9XPraz2jk5v1tIQPitfI5YzHs8QArZ2a9yXEFzMWIYWhJsy9pK1O0BR9G4iUzste8mvN30fzKjsWwFHMbG3KxCMb6ds2GBB19pFfCt95T5v_UiuDg2xecHVGvf16b8PwjX3p-UbC1Meu91fH4HywwmDqSSE4WOqfeHsZV961dxmdG-4nCB3O2-3klZ0da6Ab_oGWIQJp4pyzemwV9EN_PmspetRE1LPjVVNA&h=cOCzs6FpN2bl5Atk8CbDsE3Yjuds6aqNbdDsvEjvoG0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview&t=638327072352627207&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=j5V_rP9UnFSYKnhR0CUWzA2ZWTqEHYfwXGoWB3BsAs-N0A3K24FHt4Fm6Jxl-pgHfpKUp8uh39cUk4V_R_DzBhSAtpchbQEssJCVtB5X2r3C0gG3in9XPraz2jk5v1tIQPitfI5YzHs8QArZ2a9yXEFzMWIYWhJsy9pK1O0BR9G4iUzste8mvN30fzKjsWwFHMbG3KxCMb6ds2GBB19pFfCt95T5v_UiuDg2xecHVGvf16b8PwjX3p-UbC1Meu91fH4HywwmDqSSE4WOqfeHsZV961dxmdG-4nCB3O2-3klZ0da6Ab_oGWIQJp4pyzemwV9EN_PmspetRE1LPjVVNA&h=cOCzs6FpN2bl5Atk8CbDsE3Yjuds6aqNbdDsvEjvoG0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview&t=638327072352627207&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=j5V_rP9UnFSYKnhR0CUWzA2ZWTqEHYfwXGoWB3BsAs-N0A3K24FHt4Fm6Jxl-pgHfpKUp8uh39cUk4V_R_DzBhSAtpchbQEssJCVtB5X2r3C0gG3in9XPraz2jk5v1tIQPitfI5YzHs8QArZ2a9yXEFzMWIYWhJsy9pK1O0BR9G4iUzste8mvN30fzKjsWwFHMbG3KxCMb6ds2GBB19pFfCt95T5v_UiuDg2xecHVGvf16b8PwjX3p-UbC1Meu91fH4HywwmDqSSE4WOqfeHsZV961dxmdG-4nCB3O2-3klZ0da6Ab_oGWIQJp4pyzemwV9EN_PmspetRE1LPjVVNA&h=cOCzs6FpN2bl5Atk8CbDsE3Yjuds6aqNbdDsvEjvoG0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview&t=638327072352627207&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=j5V_rP9UnFSYKnhR0CUWzA2ZWTqEHYfwXGoWB3BsAs-N0A3K24FHt4Fm6Jxl-pgHfpKUp8uh39cUk4V_R_DzBhSAtpchbQEssJCVtB5X2r3C0gG3in9XPraz2jk5v1tIQPitfI5YzHs8QArZ2a9yXEFzMWIYWhJsy9pK1O0BR9G4iUzste8mvN30fzKjsWwFHMbG3KxCMb6ds2GBB19pFfCt95T5v_UiuDg2xecHVGvf16b8PwjX3p-UbC1Meu91fH4HywwmDqSSE4WOqfeHsZV961dxmdG-4nCB3O2-3klZ0da6Ab_oGWIQJp4pyzemwV9EN_PmspetRE1LPjVVNA&h=cOCzs6FpN2bl5Atk8CbDsE3Yjuds6aqNbdDsvEjvoG0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview&t=638327072352627207&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=j5V_rP9UnFSYKnhR0CUWzA2ZWTqEHYfwXGoWB3BsAs-N0A3K24FHt4Fm6Jxl-pgHfpKUp8uh39cUk4V_R_DzBhSAtpchbQEssJCVtB5X2r3C0gG3in9XPraz2jk5v1tIQPitfI5YzHs8QArZ2a9yXEFzMWIYWhJsy9pK1O0BR9G4iUzste8mvN30fzKjsWwFHMbG3KxCMb6ds2GBB19pFfCt95T5v_UiuDg2xecHVGvf16b8PwjX3p-UbC1Meu91fH4HywwmDqSSE4WOqfeHsZV961dxmdG-4nCB3O2-3klZ0da6Ab_oGWIQJp4pyzemwV9EN_PmspetRE1LPjVVNA&h=cOCzs6FpN2bl5Atk8CbDsE3Yjuds6aqNbdDsvEjvoG0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/43dec6bc-acf9-4810-952a-76c427b6b066?api-version=2023-09-15-preview&t=638327072352627207&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=j5V_rP9UnFSYKnhR0CUWzA2ZWTqEHYfwXGoWB3BsAs-N0A3K24FHt4Fm6Jxl-pgHfpKUp8uh39cUk4V_R_DzBhSAtpchbQEssJCVtB5X2r3C0gG3in9XPraz2jk5v1tIQPitfI5YzHs8QArZ2a9yXEFzMWIYWhJsy9pK1O0BR9G4iUzste8mvN30fzKjsWwFHMbG3KxCMb6ds2GBB19pFfCt95T5v_UiuDg2xecHVGvf16b8PwjX3p-UbC1Meu91fH4HywwmDqSSE4WOqfeHsZV961dxmdG-4nCB3O2-3klZ0da6Ab_oGWIQJp4pyzemwV9EN_PmspetRE1LPjVVNA&h=cOCzs6FpN2bl5Atk8CbDsE3Yjuds6aqNbdDsvEjvoG0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:53.3246574Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2923' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:53.3246574Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2923' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:53.3246574Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:53.3246574Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2923' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000005"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/bb77cc72-6f22-4c7b-af0a-46bcdb34b7e8?api-version=2023-09-15&t=638327074227911662&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SjHB-tTmDeXrOXyq9BKIHEXT5hWYnt2It1gG_rxtTw9F3esPhgwmvwg_CnqbJkbmyYrs_qJYdvygSWtNsbI2YHpsqBcfuNUlBWGuv9R38vf4QAZTk0ZQWsR2rimjXX1bebAHJpAXSEaTw0d8dXt0u-rPsjZ9JF6AznQGo99kD76-Py4rkm_va5_0k8BOsGNhvd3PedFKpRXSkaNgR1cRrpbioHqQK6YjCrncPTS9MPMHIyVJgGwOCUA6ElXfazaeVOiERTBk_jBcomNc2KPvntNWmwR9CdHYQsHQNOf2xe13XI3xr9ZpdUiFUgKmbtkrau9HM5R15uPDOjKGTlFgwQ&h=pVJrJtQ6eWcVRzAZHiqdOxTvRb6nCWKbXVvUsYDPLOI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:02 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/operationResults/bb77cc72-6f22-4c7b-af0a-46bcdb34b7e8?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1192' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/bb77cc72-6f22-4c7b-af0a-46bcdb34b7e8?api-version=2023-09-15&t=638327074227911662&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SjHB-tTmDeXrOXyq9BKIHEXT5hWYnt2It1gG_rxtTw9F3esPhgwmvwg_CnqbJkbmyYrs_qJYdvygSWtNsbI2YHpsqBcfuNUlBWGuv9R38vf4QAZTk0ZQWsR2rimjXX1bebAHJpAXSEaTw0d8dXt0u-rPsjZ9JF6AznQGo99kD76-Py4rkm_va5_0k8BOsGNhvd3PedFKpRXSkaNgR1cRrpbioHqQK6YjCrncPTS9MPMHIyVJgGwOCUA6ElXfazaeVOiERTBk_jBcomNc2KPvntNWmwR9CdHYQsHQNOf2xe13XI3xr9ZpdUiFUgKmbtkrau9HM5R15uPDOjKGTlFgwQ&h=pVJrJtQ6eWcVRzAZHiqdOxTvRb6nCWKbXVvUsYDPLOI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/bb77cc72-6f22-4c7b-af0a-46bcdb34b7e8?api-version=2023-09-15&t=638327074227911662&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SjHB-tTmDeXrOXyq9BKIHEXT5hWYnt2It1gG_rxtTw9F3esPhgwmvwg_CnqbJkbmyYrs_qJYdvygSWtNsbI2YHpsqBcfuNUlBWGuv9R38vf4QAZTk0ZQWsR2rimjXX1bebAHJpAXSEaTw0d8dXt0u-rPsjZ9JF6AznQGo99kD76-Py4rkm_va5_0k8BOsGNhvd3PedFKpRXSkaNgR1cRrpbioHqQK6YjCrncPTS9MPMHIyVJgGwOCUA6ElXfazaeVOiERTBk_jBcomNc2KPvntNWmwR9CdHYQsHQNOf2xe13XI3xr9ZpdUiFUgKmbtkrau9HM5R15uPDOjKGTlFgwQ&h=pVJrJtQ6eWcVRzAZHiqdOxTvRb6nCWKbXVvUsYDPLOI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000005","properties":{"resource":{"id":"cli000005","_rid":"XvEhAA==","_self":"dbs/XvEhAA==/","_etag":"\"00007407-0000-0800-0000-6527da640000\"","_colls":"colls/","_users":"users/","_ts":1697110628}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '495' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - Content-Length: - - '265' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/graphs/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/51b510bb-c7f7-4c90-a8ae-604a8a9ae354?api-version=2023-09-15&t=638327074561069772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=mOa5TI4gou-qfmrh7qYllVl6-83-CP4lpEZUU4rWUQ9cxygyLYLflYeOelMkI6xmGDfTMnyPfsWE1Tz2k-WBfm-_k2SLrFIlpE0UUD2Zd7KbmV3flFxuFvFpOZpe7AwuIdWHU_NbshUMxN8PH677u_HtElf6LbjTJcjHjJZUWHSYtrjocCvepH_71UO050hpf0vB_hc-xTzqNWC8EZy0hkmGarTyG1CnJHL-6ykS-9_IMDAX2CDoUMDk8WDdJb0tKX9rrx0QNf0xd0bxQXaAUEBBxrvZHkQFmIxixXzWnnSXiWqgm8AX_zXk0EZwFQg2tik2LFoJZmCB6Z9EIpvGpg&h=ZyKgJkfXnNTsvHYGmLHfdETr1aEJD5JYboF_OF7IEJc - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/graphs/cli000002/operationResults/51b510bb-c7f7-4c90-a8ae-604a8a9ae354?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1191' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/51b510bb-c7f7-4c90-a8ae-604a8a9ae354?api-version=2023-09-15&t=638327074561069772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=mOa5TI4gou-qfmrh7qYllVl6-83-CP4lpEZUU4rWUQ9cxygyLYLflYeOelMkI6xmGDfTMnyPfsWE1Tz2k-WBfm-_k2SLrFIlpE0UUD2Zd7KbmV3flFxuFvFpOZpe7AwuIdWHU_NbshUMxN8PH677u_HtElf6LbjTJcjHjJZUWHSYtrjocCvepH_71UO050hpf0vB_hc-xTzqNWC8EZy0hkmGarTyG1CnJHL-6ykS-9_IMDAX2CDoUMDk8WDdJb0tKX9rrx0QNf0xd0bxQXaAUEBBxrvZHkQFmIxixXzWnnSXiWqgm8AX_zXk0EZwFQg2tik2LFoJZmCB6Z9EIpvGpg&h=ZyKgJkfXnNTsvHYGmLHfdETr1aEJD5JYboF_OF7IEJc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/51b510bb-c7f7-4c90-a8ae-604a8a9ae354?api-version=2023-09-15&t=638327074561069772&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=mOa5TI4gou-qfmrh7qYllVl6-83-CP4lpEZUU4rWUQ9cxygyLYLflYeOelMkI6xmGDfTMnyPfsWE1Tz2k-WBfm-_k2SLrFIlpE0UUD2Zd7KbmV3flFxuFvFpOZpe7AwuIdWHU_NbshUMxN8PH677u_HtElf6LbjTJcjHjJZUWHSYtrjocCvepH_71UO050hpf0vB_hc-xTzqNWC8EZy0hkmGarTyG1CnJHL-6ykS-9_IMDAX2CDoUMDk8WDdJb0tKX9rrx0QNf0xd0bxQXaAUEBBxrvZHkQFmIxixXzWnnSXiWqgm8AX_zXk0EZwFQg2tik2LFoJZmCB6Z9EIpvGpg&h=ZyKgJkfXnNTsvHYGmLHfdETr1aEJD5JYboF_OF7IEJc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/graphs/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000005/graphs/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"XvEhAPtXPOY=","_ts":1697110661,"_self":"dbs/XvEhAA==/colls/XvEhAPtXPOY=/","_etag":"\"00007707-0000-0800-0000-6527da850000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1150' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","oldestRestorableTime":"2023-10-12T11:35:17Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli000003","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","oldestRestorableTime":"2023-10-12T11:35:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19Z","oldestRestorableTime":"2023-10-12T11:35:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:38:09Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:38:10Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '297267' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:38:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001","name":"cli_test_cosmosdb_gremlin_account_restore_using_create000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_account_restore_using_create","date":"2023-10-12T11:33:43Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '487' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:42:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Restore", - "restoreParameters": {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c", - "restoreTimestampInUtc": "2023-10-12T11:39:54.000Z", "restoreMode": "PointInTime"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '537' - Content-Type: - - application/json - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:42:19.9463824Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"90c8c77c-bf30-4418-a1fe-b470ba082c0d","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","restoreTimestampInUtc":"2023-10-12T11:39:54Z","sourceBackupLocation":"West - US 2","gremlinDatabasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:42:19.9463824Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:42:19.9463824Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:42:19.9463824Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:42:19.9463824Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - cache-control: - - no-store, no-cache - content-length: - - '2915' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:22 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1190' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:43:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:43:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4818e361-3311-4342-aab1-9be2b066fe5d?api-version=2023-09-15-preview&t=638327077434273136&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ydt3my5MEKHlIUdyt_kTOmga-_CTQggXJ3r6qfMxx9gOh-Y-mmXy8He2EYoOZbe3rFOkQZz8WeJelhQKGbN72G_K8_CGqE2xPkTyKu40QZsffy7n9k1XBFMv0UxsmTGEU-SamXOHEo7rMWFRO-gLNTP705CYi4DCaweMYgAIYloRvhS_D6K_agjZ0B2_XhSMMwfmQpIfeltwhU5im4qYyb4gm1wwB7NR2_DhsumfOrMi75NJKFTQa-TrT7ruD8Vg_thgj2m0gALhYY-7o57WJkW0b9RfG3GDufEGzVfOVtRlQCPtiBC234wIi3TqLerDLSXtyzOnouehPSPPp3F4Ew&h=Zbmov3QiGJqFUMRjdWMGcThypSAXWbBHIEhO-5RLImc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:59:57.1573223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"90c8c77c-bf30-4418-a1fe-b470ba082c0d","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","restoreTimestampInUtc":"2023-10-12T11:39:54Z","sourceBackupLocation":"West - US 2","gremlinDatabasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3260' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:59:57.1573223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"90c8c77c-bf30-4418-a1fe-b470ba082c0d","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","restoreTimestampInUtc":"2023-10-12T11:39:54Z","sourceBackupLocation":"West - US 2","gremlinDatabasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3260' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:59:57.1573223Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"90c8c77c-bf30-4418-a1fe-b470ba082c0d","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","restoreTimestampInUtc":"2023-10-12T11:39:54Z","sourceBackupLocation":"West - US 2","gremlinDatabasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.1573223Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3260' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml deleted file mode 100644 index 1bdc46f5680..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml +++ /dev/null @@ -1,1093 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_database000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001","name":"cli_test_cosmosdb_gremlin_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_database","date":"2023-10-12T10:52:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '426' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:52:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '387' - Content-Type: - - application/json - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:52:27.0586401Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"da53f266-f24c-47a4-a796-e1735ba957b9","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:52:27.0586401Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:52:27.0586401Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.0586401Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.0586401Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0100258-3503-4fa3-8169-43ef0ea5ca0f?api-version=2023-09-15-preview&t=638327047489511452&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=u_rwOotDvWn56H1_K6z2ikf1GKiTTrH8QfydjGwLLE_jv5tQFbJeE58UVko208KHL3azFd0MPF_bzOlr3isAvFCeRlaFQRpJP8YWODZwQ04m45L4sHcCiCujJO5kqAdhbGVRIsG_jY1MK__AIF9teOJRDa1qKdMWz98Dgd9uvUXr6K5qycC7X2qNXrfu9Se3NxHgPdE7gQWiVKi2LOFLjfDOdcr2G5RTcZI3JOqAOaZxUWOV_CScWQ0y8Pc-gx7D8xc_KmqreWAQwUZhtp6kEE6PgbQetY-Re_P3dKru0MqLTCL0zBOBsacKxdbsF7WhZxf9PZHI1rQtr8pETlk-0w&h=ABLB5dFS27fv7dva3Nz-7WEuIBsUH6N4a7LADloIEyw - cache-control: - - no-store, no-cache - content-length: - - '2460' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:28 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/a0100258-3503-4fa3-8169-43ef0ea5ca0f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0100258-3503-4fa3-8169-43ef0ea5ca0f?api-version=2023-09-15-preview&t=638327047489511452&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=u_rwOotDvWn56H1_K6z2ikf1GKiTTrH8QfydjGwLLE_jv5tQFbJeE58UVko208KHL3azFd0MPF_bzOlr3isAvFCeRlaFQRpJP8YWODZwQ04m45L4sHcCiCujJO5kqAdhbGVRIsG_jY1MK__AIF9teOJRDa1qKdMWz98Dgd9uvUXr6K5qycC7X2qNXrfu9Se3NxHgPdE7gQWiVKi2LOFLjfDOdcr2G5RTcZI3JOqAOaZxUWOV_CScWQ0y8Pc-gx7D8xc_KmqreWAQwUZhtp6kEE6PgbQetY-Re_P3dKru0MqLTCL0zBOBsacKxdbsF7WhZxf9PZHI1rQtr8pETlk-0w&h=ABLB5dFS27fv7dva3Nz-7WEuIBsUH6N4a7LADloIEyw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0100258-3503-4fa3-8169-43ef0ea5ca0f?api-version=2023-09-15-preview&t=638327047489511452&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=u_rwOotDvWn56H1_K6z2ikf1GKiTTrH8QfydjGwLLE_jv5tQFbJeE58UVko208KHL3azFd0MPF_bzOlr3isAvFCeRlaFQRpJP8YWODZwQ04m45L4sHcCiCujJO5kqAdhbGVRIsG_jY1MK__AIF9teOJRDa1qKdMWz98Dgd9uvUXr6K5qycC7X2qNXrfu9Se3NxHgPdE7gQWiVKi2LOFLjfDOdcr2G5RTcZI3JOqAOaZxUWOV_CScWQ0y8Pc-gx7D8xc_KmqreWAQwUZhtp6kEE6PgbQetY-Re_P3dKru0MqLTCL0zBOBsacKxdbsF7WhZxf9PZHI1rQtr8pETlk-0w&h=ABLB5dFS27fv7dva3Nz-7WEuIBsUH6N4a7LADloIEyw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0100258-3503-4fa3-8169-43ef0ea5ca0f?api-version=2023-09-15-preview&t=638327047489511452&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=u_rwOotDvWn56H1_K6z2ikf1GKiTTrH8QfydjGwLLE_jv5tQFbJeE58UVko208KHL3azFd0MPF_bzOlr3isAvFCeRlaFQRpJP8YWODZwQ04m45L4sHcCiCujJO5kqAdhbGVRIsG_jY1MK__AIF9teOJRDa1qKdMWz98Dgd9uvUXr6K5qycC7X2qNXrfu9Se3NxHgPdE7gQWiVKi2LOFLjfDOdcr2G5RTcZI3JOqAOaZxUWOV_CScWQ0y8Pc-gx7D8xc_KmqreWAQwUZhtp6kEE6PgbQetY-Re_P3dKru0MqLTCL0zBOBsacKxdbsF7WhZxf9PZHI1rQtr8pETlk-0w&h=ABLB5dFS27fv7dva3Nz-7WEuIBsUH6N4a7LADloIEyw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0100258-3503-4fa3-8169-43ef0ea5ca0f?api-version=2023-09-15-preview&t=638327047489511452&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=u_rwOotDvWn56H1_K6z2ikf1GKiTTrH8QfydjGwLLE_jv5tQFbJeE58UVko208KHL3azFd0MPF_bzOlr3isAvFCeRlaFQRpJP8YWODZwQ04m45L4sHcCiCujJO5kqAdhbGVRIsG_jY1MK__AIF9teOJRDa1qKdMWz98Dgd9uvUXr6K5qycC7X2qNXrfu9Se3NxHgPdE7gQWiVKi2LOFLjfDOdcr2G5RTcZI3JOqAOaZxUWOV_CScWQ0y8Pc-gx7D8xc_KmqreWAQwUZhtp6kEE6PgbQetY-Re_P3dKru0MqLTCL0zBOBsacKxdbsF7WhZxf9PZHI1rQtr8pETlk-0w&h=ABLB5dFS27fv7dva3Nz-7WEuIBsUH6N4a7LADloIEyw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0100258-3503-4fa3-8169-43ef0ea5ca0f?api-version=2023-09-15-preview&t=638327047489511452&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=u_rwOotDvWn56H1_K6z2ikf1GKiTTrH8QfydjGwLLE_jv5tQFbJeE58UVko208KHL3azFd0MPF_bzOlr3isAvFCeRlaFQRpJP8YWODZwQ04m45L4sHcCiCujJO5kqAdhbGVRIsG_jY1MK__AIF9teOJRDa1qKdMWz98Dgd9uvUXr6K5qycC7X2qNXrfu9Se3NxHgPdE7gQWiVKi2LOFLjfDOdcr2G5RTcZI3JOqAOaZxUWOV_CScWQ0y8Pc-gx7D8xc_KmqreWAQwUZhtp6kEE6PgbQetY-Re_P3dKru0MqLTCL0zBOBsacKxdbsF7WhZxf9PZHI1rQtr8pETlk-0w&h=ABLB5dFS27fv7dva3Nz-7WEuIBsUH6N4a7LADloIEyw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0100258-3503-4fa3-8169-43ef0ea5ca0f?api-version=2023-09-15-preview&t=638327047489511452&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=u_rwOotDvWn56H1_K6z2ikf1GKiTTrH8QfydjGwLLE_jv5tQFbJeE58UVko208KHL3azFd0MPF_bzOlr3isAvFCeRlaFQRpJP8YWODZwQ04m45L4sHcCiCujJO5kqAdhbGVRIsG_jY1MK__AIF9teOJRDa1qKdMWz98Dgd9uvUXr6K5qycC7X2qNXrfu9Se3NxHgPdE7gQWiVKi2LOFLjfDOdcr2G5RTcZI3JOqAOaZxUWOV_CScWQ0y8Pc-gx7D8xc_KmqreWAQwUZhtp6kEE6PgbQetY-Re_P3dKru0MqLTCL0zBOBsacKxdbsF7WhZxf9PZHI1rQtr8pETlk-0w&h=ABLB5dFS27fv7dva3Nz-7WEuIBsUH6N4a7LADloIEyw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:22.3017925Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"da53f266-f24c-47a4-a796-e1735ba957b9","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:22.3017925Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:22.3017925Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:22.3017925Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:22.3017925Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2886' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:22.3017925Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"da53f266-f24c-47a4-a796-e1735ba957b9","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:22.3017925Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:22.3017925Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:22.3017925Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:22.3017925Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2886' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - cb95b46e-68ed-11ee-a312-9c7bef43f49d, Request URI: /apps/7b23a180-c410-4304-a28d-6681358f3e57/services/5125c4a9-67ce-49eb-b4d9-3ce3b6281886/partitions/8d808551-d97c-450f-b242-9e48974882ad/replicas/133414011179494255s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T10:55:04.3470909Z, RequestEndTime: - 2023-10-12T10:55:04.3490248Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T10:54:12.5962620Z\\\",\\\"cpu\\\":0.183,\\\"memory\\\":418242740.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.033,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":585},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:22.6063478Z\\\",\\\"cpu\\\":0.088,\\\"memory\\\":418222864.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0621,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":585},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:32.6163895Z\\\",\\\"cpu\\\":0.071,\\\"memory\\\":418230376.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0604,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":586},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:42.6263906Z\\\",\\\"cpu\\\":0.310,\\\"memory\\\":418234052.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0396,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":586},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:52.6364367Z\\\",\\\"cpu\\\":0.212,\\\"memory\\\":418190252.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0546,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":586},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:02.6464755Z\\\",\\\"cpu\\\":0.259,\\\"memory\\\":418217704.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0417,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":587}]}\\r\\nRequestStart: - 2023-10-12T10:55:04.3473292Z; ResponseTime: 2023-10-12T10:55:04.3490169Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11000/apps/7b23a180-c410-4304-a28d-6681358f3e57/services/5125c4a9-67ce-49eb-b4d9-3ce3b6281886/partitions/8d808551-d97c-450f-b242-9e48974882ad/replicas/133414011179494255s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.864, ActivityId: - cb95b46e-68ed-11ee-a312-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 10:55:04 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 10:55:04 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:55:04 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:55:04 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:04.3472460Z\\\", - \\\"durationInMs\\\": 0.0101},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:04.3472561Z\\\", \\\"durationInMs\\\": - 0.0017},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:04.3472578Z\\\", - \\\"durationInMs\\\": 0.0621},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:04.3473199Z\\\", \\\"durationInMs\\\": 1.1787},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:04.3484986Z\\\", - \\\"durationInMs\\\": 0.0995},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:04.3485981Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:55:04.1921517Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:55:04.1921631Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:55:04.2236453Z\\\"},\\\"requestSizeInBytes\\\":470,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2023-10-12T10:55:04.3473774Z; - ResponseTime: 2023-10-12T10:55:04.3490248Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.4:11000/apps/7b23a180-c410-4304-a28d-6681358f3e57/services/5125c4a9-67ce-49eb-b4d9-3ce3b6281886/partitions/8d808551-d97c-450f-b242-9e48974882ad/replicas/133414011179494257s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.859, ActivityId: - cb95b46e-68ed-11ee-a312-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 10:55:04 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 10:55:04 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:55:04 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:55:04 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:04.3473312Z\\\", - \\\"durationInMs\\\": 0.0038},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:04.3473350Z\\\", \\\"durationInMs\\\": - 0.0025},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:04.3473375Z\\\", - \\\"durationInMs\\\": 0.0356},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:04.3473731Z\\\", \\\"durationInMs\\\": 1.2467},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:04.3486198Z\\\", - \\\"durationInMs\\\": 0.0606},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:04.3486804Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:55:04.2739124Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:55:04.2739422Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:55:04.3049985Z\\\"},\\\"requestSizeInBytes\\\":470,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7067' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10: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-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b71b1ef9-f2c4-4fe8-b47d-b7636ac38235?api-version=2023-09-15&t=638327049063540026&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MA719D7O4x-NwJVEzbM0r_OgSEhdhiXih3Gw36ILsa36SvLSbB3Fa1PKJHq_pRnpzXtgVNBx4upw0yIuttT-J_onPLCgouu--HeYNEbFe5ApwrDzUXaym9nM0RvYD7DiRQsXjrI9H6K0kiD2ENQ1KeMH7uTylrv0HhOrEDPGQWJ1JIsld8PNF6aQhaOaEYb4f1w1uSX9AHUnzMZ-7R3xJyzI_exMO2uPJEbYt8O-2G1CsT1NA-d1-6iL5dGpi7UdTM2oPCVh92AfYbMsiVed7jfYYu13QeyO4zVKyJwqZ2J0a1WwDBqRkq0RXA-gNQX3dkjbEZP2GdtR8rq3hjbSRQ&h=IliJIpUBUHPzPyxjrUeaSB9ipvKCgYjHmz6OdMTbPps - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:06 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002/operationResults/b71b1ef9-f2c4-4fe8-b47d-b7636ac38235?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b71b1ef9-f2c4-4fe8-b47d-b7636ac38235?api-version=2023-09-15&t=638327049063540026&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MA719D7O4x-NwJVEzbM0r_OgSEhdhiXih3Gw36ILsa36SvLSbB3Fa1PKJHq_pRnpzXtgVNBx4upw0yIuttT-J_onPLCgouu--HeYNEbFe5ApwrDzUXaym9nM0RvYD7DiRQsXjrI9H6K0kiD2ENQ1KeMH7uTylrv0HhOrEDPGQWJ1JIsld8PNF6aQhaOaEYb4f1w1uSX9AHUnzMZ-7R3xJyzI_exMO2uPJEbYt8O-2G1CsT1NA-d1-6iL5dGpi7UdTM2oPCVh92AfYbMsiVed7jfYYu13QeyO4zVKyJwqZ2J0a1WwDBqRkq0RXA-gNQX3dkjbEZP2GdtR8rq3hjbSRQ&h=IliJIpUBUHPzPyxjrUeaSB9ipvKCgYjHmz6OdMTbPps - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b71b1ef9-f2c4-4fe8-b47d-b7636ac38235?api-version=2023-09-15&t=638327049063540026&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MA719D7O4x-NwJVEzbM0r_OgSEhdhiXih3Gw36ILsa36SvLSbB3Fa1PKJHq_pRnpzXtgVNBx4upw0yIuttT-J_onPLCgouu--HeYNEbFe5ApwrDzUXaym9nM0RvYD7DiRQsXjrI9H6K0kiD2ENQ1KeMH7uTylrv0HhOrEDPGQWJ1JIsld8PNF6aQhaOaEYb4f1w1uSX9AHUnzMZ-7R3xJyzI_exMO2uPJEbYt8O-2G1CsT1NA-d1-6iL5dGpi7UdTM2oPCVh92AfYbMsiVed7jfYYu13QeyO4zVKyJwqZ2J0a1WwDBqRkq0RXA-gNQX3dkjbEZP2GdtR8rq3hjbSRQ&h=IliJIpUBUHPzPyxjrUeaSB9ipvKCgYjHmz6OdMTbPps - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"NaEGAA==","_self":"dbs/NaEGAA==/","_etag":"\"00002102-0000-0700-0000-6527d08f0000\"","_colls":"colls/","_users":"users/","_ts":1697108111}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"NaEGAA==","_self":"dbs/NaEGAA==/","_etag":"\"00002102-0000-0700-0000-6527d08f0000\"","_colls":"colls/","_users":"users/","_ts":1697108111}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"NaEGAA==","_self":"dbs/NaEGAA==/","_etag":"\"00002102-0000-0700-0000-6527d08f0000\"","_colls":"colls/","_users":"users/","_ts":1697108111}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '487' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"NaEGAA==","_self":"dbs/NaEGAA==/","_etag":"\"00002102-0000-0700-0000-6527d08f0000\"","_colls":"colls/","_users":"users/","_ts":1697108111}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/62247daf-4dda-4f62-940a-aea8e1e685e9?api-version=2023-09-15&t=638327049455628910&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=tqEbG6dcb9JpIgHcYb55ImfKgMqInLN7ivVZjpplr-8P-kxaKSSEpul6SUUhp2v-jEBNbpFNjW95D_1yEaUDQht6amNNqoA5Rnvk1yl_8x3VKkmc_4UGBmWwzt1rRYw29FG5RkyrcDZNe9jVYR-JimDAFK4U2Sie6qqZv4V42AvMakXFuMEVXMTozEQlq-H6LNhamDd6mfasLfdDYybD3jeKR6C8SJLD0csp0pM6OrTFFFU6tK0WsE1R1RTZL1h5wMJTXJjtxLz01ew2b8TvwrpVqukD61LBWmK9o1D64OAZvvz3bPN6E4wxpZmCUYAeI9VEx24EUVsTZuv9LohB8A&h=JF-xcoc2NXhPENmW4fPw7kVedNMjOh8Ny4N_Nfk1KJc - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:44 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002/operationResults/62247daf-4dda-4f62-940a-aea8e1e685e9?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/62247daf-4dda-4f62-940a-aea8e1e685e9?api-version=2023-09-15&t=638327049455628910&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=tqEbG6dcb9JpIgHcYb55ImfKgMqInLN7ivVZjpplr-8P-kxaKSSEpul6SUUhp2v-jEBNbpFNjW95D_1yEaUDQht6amNNqoA5Rnvk1yl_8x3VKkmc_4UGBmWwzt1rRYw29FG5RkyrcDZNe9jVYR-JimDAFK4U2Sie6qqZv4V42AvMakXFuMEVXMTozEQlq-H6LNhamDd6mfasLfdDYybD3jeKR6C8SJLD0csp0pM6OrTFFFU6tK0WsE1R1RTZL1h5wMJTXJjtxLz01ew2b8TvwrpVqukD61LBWmK9o1D64OAZvvz3bPN6E4wxpZmCUYAeI9VEx24EUVsTZuv9LohB8A&h=JF-xcoc2NXhPENmW4fPw7kVedNMjOh8Ny4N_Nfk1KJc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/62247daf-4dda-4f62-940a-aea8e1e685e9?api-version=2023-09-15&t=638327049455628910&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=tqEbG6dcb9JpIgHcYb55ImfKgMqInLN7ivVZjpplr-8P-kxaKSSEpul6SUUhp2v-jEBNbpFNjW95D_1yEaUDQht6amNNqoA5Rnvk1yl_8x3VKkmc_4UGBmWwzt1rRYw29FG5RkyrcDZNe9jVYR-JimDAFK4U2Sie6qqZv4V42AvMakXFuMEVXMTozEQlq-H6LNhamDd6mfasLfdDYybD3jeKR6C8SJLD0csp0pM6OrTFFFU6tK0WsE1R1RTZL1h5wMJTXJjtxLz01ew2b8TvwrpVqukD61LBWmK9o1D64OAZvvz3bPN6E4wxpZmCUYAeI9VEx24EUVsTZuv9LohB8A&h=JF-xcoc2NXhPENmW4fPw7kVedNMjOh8Ny4N_Nfk1KJc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database_graph_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database_graph_restore.yaml deleted file mode 100644 index 47bd1dfd9fb..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database_graph_restore.yaml +++ /dev/null @@ -1,5488 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_database_graph_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001","name":"cli_test_cosmosdb_gremlin_database_graph_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_database_graph_restore","date":"2023-10-12T10:56:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:56:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '387' - Content-Type: - - application/json - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:56:33.5820508Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"086cacf3-e6e5-4565-b7ba-924a0172ff53","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:56:33.5820508Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:56:33.5820508Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:56:33.5820508Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:56:33.5820508Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c2641186-c62d-43c5-9c58-a226a26b58b8?api-version=2023-09-15-preview&t=638327049957572310&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dSF7s7_AY973JNG4-6KKFeIR6GdDPa-wE9QTi-HAaD0pQIBXahR9R_dTwOeRiKMgPnkXv_A5Z4pJO9ySn0vQjSlQYFg74THxQQ5R93yg3ZRPn4PI3WFNYOBU7NB5qFKLW_Lwb5b8PaHz-Frz5cSD4odaoyJVqJCeEY4YuUZu9AgzYRJf8VbHL_vLPl3WAOYb_5LQ7pFybxAghs2gUa49QJDEcfOSuBbV2Z4i0vBas-uKhiStKv_LV_PKJ5QBF2OVnRHtM6Eq6KfH_Ftkp8kzS1m7apa_OzsWC7knXU-ohWihbsVjCUFNz1xPLAaJnK1OqTRkGv6-l3Y1cruGHwJPRg&h=CW9EVFR3as2QLeWf5lywUMah820ECU1cAZbySK0B4rU - cache-control: - - no-store, no-cache - content-length: - - '2474' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/c2641186-c62d-43c5-9c58-a226a26b58b8?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c2641186-c62d-43c5-9c58-a226a26b58b8?api-version=2023-09-15-preview&t=638327049957572310&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dSF7s7_AY973JNG4-6KKFeIR6GdDPa-wE9QTi-HAaD0pQIBXahR9R_dTwOeRiKMgPnkXv_A5Z4pJO9ySn0vQjSlQYFg74THxQQ5R93yg3ZRPn4PI3WFNYOBU7NB5qFKLW_Lwb5b8PaHz-Frz5cSD4odaoyJVqJCeEY4YuUZu9AgzYRJf8VbHL_vLPl3WAOYb_5LQ7pFybxAghs2gUa49QJDEcfOSuBbV2Z4i0vBas-uKhiStKv_LV_PKJ5QBF2OVnRHtM6Eq6KfH_Ftkp8kzS1m7apa_OzsWC7knXU-ohWihbsVjCUFNz1xPLAaJnK1OqTRkGv6-l3Y1cruGHwJPRg&h=CW9EVFR3as2QLeWf5lywUMah820ECU1cAZbySK0B4rU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c2641186-c62d-43c5-9c58-a226a26b58b8?api-version=2023-09-15-preview&t=638327049957572310&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dSF7s7_AY973JNG4-6KKFeIR6GdDPa-wE9QTi-HAaD0pQIBXahR9R_dTwOeRiKMgPnkXv_A5Z4pJO9ySn0vQjSlQYFg74THxQQ5R93yg3ZRPn4PI3WFNYOBU7NB5qFKLW_Lwb5b8PaHz-Frz5cSD4odaoyJVqJCeEY4YuUZu9AgzYRJf8VbHL_vLPl3WAOYb_5LQ7pFybxAghs2gUa49QJDEcfOSuBbV2Z4i0vBas-uKhiStKv_LV_PKJ5QBF2OVnRHtM6Eq6KfH_Ftkp8kzS1m7apa_OzsWC7knXU-ohWihbsVjCUFNz1xPLAaJnK1OqTRkGv6-l3Y1cruGHwJPRg&h=CW9EVFR3as2QLeWf5lywUMah820ECU1cAZbySK0B4rU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c2641186-c62d-43c5-9c58-a226a26b58b8?api-version=2023-09-15-preview&t=638327049957572310&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dSF7s7_AY973JNG4-6KKFeIR6GdDPa-wE9QTi-HAaD0pQIBXahR9R_dTwOeRiKMgPnkXv_A5Z4pJO9ySn0vQjSlQYFg74THxQQ5R93yg3ZRPn4PI3WFNYOBU7NB5qFKLW_Lwb5b8PaHz-Frz5cSD4odaoyJVqJCeEY4YuUZu9AgzYRJf8VbHL_vLPl3WAOYb_5LQ7pFybxAghs2gUa49QJDEcfOSuBbV2Z4i0vBas-uKhiStKv_LV_PKJ5QBF2OVnRHtM6Eq6KfH_Ftkp8kzS1m7apa_OzsWC7knXU-ohWihbsVjCUFNz1xPLAaJnK1OqTRkGv6-l3Y1cruGHwJPRg&h=CW9EVFR3as2QLeWf5lywUMah820ECU1cAZbySK0B4rU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c2641186-c62d-43c5-9c58-a226a26b58b8?api-version=2023-09-15-preview&t=638327049957572310&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dSF7s7_AY973JNG4-6KKFeIR6GdDPa-wE9QTi-HAaD0pQIBXahR9R_dTwOeRiKMgPnkXv_A5Z4pJO9ySn0vQjSlQYFg74THxQQ5R93yg3ZRPn4PI3WFNYOBU7NB5qFKLW_Lwb5b8PaHz-Frz5cSD4odaoyJVqJCeEY4YuUZu9AgzYRJf8VbHL_vLPl3WAOYb_5LQ7pFybxAghs2gUa49QJDEcfOSuBbV2Z4i0vBas-uKhiStKv_LV_PKJ5QBF2OVnRHtM6Eq6KfH_Ftkp8kzS1m7apa_OzsWC7knXU-ohWihbsVjCUFNz1xPLAaJnK1OqTRkGv6-l3Y1cruGHwJPRg&h=CW9EVFR3as2QLeWf5lywUMah820ECU1cAZbySK0B4rU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c2641186-c62d-43c5-9c58-a226a26b58b8?api-version=2023-09-15-preview&t=638327049957572310&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dSF7s7_AY973JNG4-6KKFeIR6GdDPa-wE9QTi-HAaD0pQIBXahR9R_dTwOeRiKMgPnkXv_A5Z4pJO9ySn0vQjSlQYFg74THxQQ5R93yg3ZRPn4PI3WFNYOBU7NB5qFKLW_Lwb5b8PaHz-Frz5cSD4odaoyJVqJCeEY4YuUZu9AgzYRJf8VbHL_vLPl3WAOYb_5LQ7pFybxAghs2gUa49QJDEcfOSuBbV2Z4i0vBas-uKhiStKv_LV_PKJ5QBF2OVnRHtM6Eq6KfH_Ftkp8kzS1m7apa_OzsWC7knXU-ohWihbsVjCUFNz1xPLAaJnK1OqTRkGv6-l3Y1cruGHwJPRg&h=CW9EVFR3as2QLeWf5lywUMah820ECU1cAZbySK0B4rU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c2641186-c62d-43c5-9c58-a226a26b58b8?api-version=2023-09-15-preview&t=638327049957572310&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dSF7s7_AY973JNG4-6KKFeIR6GdDPa-wE9QTi-HAaD0pQIBXahR9R_dTwOeRiKMgPnkXv_A5Z4pJO9ySn0vQjSlQYFg74THxQQ5R93yg3ZRPn4PI3WFNYOBU7NB5qFKLW_Lwb5b8PaHz-Frz5cSD4odaoyJVqJCeEY4YuUZu9AgzYRJf8VbHL_vLPl3WAOYb_5LQ7pFybxAghs2gUa49QJDEcfOSuBbV2Z4i0vBas-uKhiStKv_LV_PKJ5QBF2OVnRHtM6Eq6KfH_Ftkp8kzS1m7apa_OzsWC7knXU-ohWihbsVjCUFNz1xPLAaJnK1OqTRkGv6-l3Y1cruGHwJPRg&h=CW9EVFR3as2QLeWf5lywUMah820ECU1cAZbySK0B4rU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:58:45.7096993Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"086cacf3-e6e5-4565-b7ba-924a0172ff53","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:58:45.7096993Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:58:45.7096993Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:58:45.7096993Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:58:45.7096993Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2900' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:58:45.7096993Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"086cacf3-e6e5-4565-b7ba-924a0172ff53","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:58:45.7096993Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:58:45.7096993Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:58:45.7096993Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:58:45.7096993Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2900' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/366550d7-e01a-469a-abbb-78791f69a5aa?api-version=2023-09-15&t=638327051527556346&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=BFr7LRHZldvcE9aqVTziKLA9mez0IH-EU38hfE5DqlxPp7JrtGUPnHOm7q4e5Lu1NfKpKKqpLjEuNFKosWNSm9i7TE6yzuARwgiI9FV5aFd7uhs8Ku_fcNndgQ2sM7cYOfkx7ytLqFiIU790rHLkG2ZthwTwYWS-fyhGG8z1R_WLhQ8tsyHzKQRpiLOoHJHZUttwpX5mVzu-FAad_XqmpR-pVm0vAjSUnMtWu7Bcj6jsEWlhcfHCAWln2fjlpNc-1P5Vt0rBY10Xh96NTaiqVjswudXJtiHOJIaOGAUkgRBXrjxLxYXF90pFePqSpHobzjY6rOxTAm4e6fvqdBUJlg&h=iqBZTvsfBLxCfyRFMBfUCIQpo2Y7P8gBYP3OL7sjoho - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:12 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/366550d7-e01a-469a-abbb-78791f69a5aa?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/366550d7-e01a-469a-abbb-78791f69a5aa?api-version=2023-09-15&t=638327051527556346&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=BFr7LRHZldvcE9aqVTziKLA9mez0IH-EU38hfE5DqlxPp7JrtGUPnHOm7q4e5Lu1NfKpKKqpLjEuNFKosWNSm9i7TE6yzuARwgiI9FV5aFd7uhs8Ku_fcNndgQ2sM7cYOfkx7ytLqFiIU790rHLkG2ZthwTwYWS-fyhGG8z1R_WLhQ8tsyHzKQRpiLOoHJHZUttwpX5mVzu-FAad_XqmpR-pVm0vAjSUnMtWu7Bcj6jsEWlhcfHCAWln2fjlpNc-1P5Vt0rBY10Xh96NTaiqVjswudXJtiHOJIaOGAUkgRBXrjxLxYXF90pFePqSpHobzjY6rOxTAm4e6fvqdBUJlg&h=iqBZTvsfBLxCfyRFMBfUCIQpo2Y7P8gBYP3OL7sjoho - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/366550d7-e01a-469a-abbb-78791f69a5aa?api-version=2023-09-15&t=638327051527556346&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=BFr7LRHZldvcE9aqVTziKLA9mez0IH-EU38hfE5DqlxPp7JrtGUPnHOm7q4e5Lu1NfKpKKqpLjEuNFKosWNSm9i7TE6yzuARwgiI9FV5aFd7uhs8Ku_fcNndgQ2sM7cYOfkx7ytLqFiIU790rHLkG2ZthwTwYWS-fyhGG8z1R_WLhQ8tsyHzKQRpiLOoHJHZUttwpX5mVzu-FAad_XqmpR-pVm0vAjSUnMtWu7Bcj6jsEWlhcfHCAWln2fjlpNc-1P5Vt0rBY10Xh96NTaiqVjswudXJtiHOJIaOGAUkgRBXrjxLxYXF90pFePqSpHobzjY6rOxTAm4e6fvqdBUJlg&h=iqBZTvsfBLxCfyRFMBfUCIQpo2Y7P8gBYP3OL7sjoho - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"u39OAA==","_self":"dbs/u39OAA==/","_etag":"\"00003503-0000-0700-0000-6527d1850000\"","_colls":"colls/","_users":"users/","_ts":1697108357}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '489' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - 7363ef7a-68ee-11ee-93cd-9c7bef43f49d, Request URI: /apps/93b5955d-4873-4bb2-b660-dd6693bf9021/services/a9c62f38-9182-4774-8560-9787669b24f4/partitions/bee9d8c4-12a5-43fc-abd3-9cc26915a082/replicas/133415607046264914s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T10:59:45.9197530Z, RequestEndTime: - 2023-10-12T10:59:45.9214106Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T10:58:45.9607139Z\\\",\\\"cpu\\\":0.349,\\\"memory\\\":414844940.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0389,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":633},{\\\"dateUtc\\\":\\\"2023-10-12T10:58:55.9707422Z\\\",\\\"cpu\\\":0.359,\\\"memory\\\":414823888.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0388,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":634},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:05.9808011Z\\\",\\\"cpu\\\":0.146,\\\"memory\\\":414797224.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0801,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":641},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:15.9907968Z\\\",\\\"cpu\\\":0.166,\\\"memory\\\":414808496.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0515,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":647},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:26.0008308Z\\\",\\\"cpu\\\":0.205,\\\"memory\\\":414785632.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0631,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":647},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:36.0108941Z\\\",\\\"cpu\\\":0.156,\\\"memory\\\":414810496.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0567,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":647}]}\\r\\nRequestStart: - 2023-10-12T10:59:45.9199463Z; ResponseTime: 2023-10-12T10:59:45.9214036Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.7:11000/apps/93b5955d-4873-4bb2-b660-dd6693bf9021/services/a9c62f38-9182-4774-8560-9787669b24f4/partitions/bee9d8c4-12a5-43fc-abd3-9cc26915a082/replicas/133415607046264914s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.756, ActivityId: - 7363ef7a-68ee-11ee-93cd-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 10:59:45 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 10:59:45 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:59:45 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:59:45 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:45.9198765Z\\\", - \\\"durationInMs\\\": 0.0083},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:45.9198848Z\\\", \\\"durationInMs\\\": - 0.0021},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:45.9198869Z\\\", - \\\"durationInMs\\\": 0.052},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:59:45.9199389Z\\\", \\\"durationInMs\\\": 0.9967},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:45.9209356Z\\\", - \\\"durationInMs\\\": 0.0496},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:59:45.9209852Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:59:45.8912427Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:59:45.8912595Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:59:45.8916631Z\\\"},\\\"requestSizeInBytes\\\":490,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T10:59:45.9199901Z; - ResponseTime: 2023-10-12T10:59:45.9214106Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.6:11300/apps/93b5955d-4873-4bb2-b660-dd6693bf9021/services/a9c62f38-9182-4774-8560-9787669b24f4/partitions/bee9d8c4-12a5-43fc-abd3-9cc26915a082/replicas/133415607046264915s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.728, ActivityId: - 7363ef7a-68ee-11ee-93cd-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 10:59:45 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 10:59:45 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:59:45 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:59:45 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:45.9199480Z\\\", - \\\"durationInMs\\\": 0.0033},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:45.9199513Z\\\", \\\"durationInMs\\\": - 0.001},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:45.9199523Z\\\", - \\\"durationInMs\\\": 0.0337},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:59:45.9199860Z\\\", \\\"durationInMs\\\": 0.9532},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:45.9209392Z\\\", - \\\"durationInMs\\\": 0.0586},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:59:45.9209978Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:59:45.8461897Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:59:45.8462307Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:59:45.8797856Z\\\"},\\\"requestSizeInBytes\\\":490,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7092' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], - "kind": "Hash"}, "defaultTtl": 1000, "conflictResolutionPolicy": {"mode": "lastWriterWins", - "conflictResolutionPath": "/path"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - Content-Length: - - '402' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --ttl --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef80337b-593e-4230-a7a2-d491fc89d9cf?api-version=2023-09-15&t=638327051878005267&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ZIPEwz1cJQ1tcoWVMyV5gVETKDemzI_Z2cqcXzd4f1GOuqepvoySuB9zoBitB8q85WvP7PapQRKs-WobL3mrF1bd08ADK1K0s2dmGsEOGSrCc8LvdER4e9OB1v_qtHtB8_7e-k2f9GBj38jeptSFpuAnZty_kHyw-IMmGyJ3yKAlXaOOFC0dfqhGM1ujQ9Wm_aQl-bPL2qwq6l28LbU95nP46YgKmVGCfDZXB_raksEHw6otXBqdW0wpzBl4A-EO2-GvZr3_d4jwd5atP_o-IrP-qdWbwOmF578QyjZlOUUSCdDu2wUlLRY44zhhsolTNsCbsQssDpFDoO9se55cWQ&h=c7dQbxvUgbibeW_fIefBjyebFDXiqUFKeuVveSi4qfg - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:47 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/ef80337b-593e-4230-a7a2-d491fc89d9cf?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --ttl --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef80337b-593e-4230-a7a2-d491fc89d9cf?api-version=2023-09-15&t=638327051878005267&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ZIPEwz1cJQ1tcoWVMyV5gVETKDemzI_Z2cqcXzd4f1GOuqepvoySuB9zoBitB8q85WvP7PapQRKs-WobL3mrF1bd08ADK1K0s2dmGsEOGSrCc8LvdER4e9OB1v_qtHtB8_7e-k2f9GBj38jeptSFpuAnZty_kHyw-IMmGyJ3yKAlXaOOFC0dfqhGM1ujQ9Wm_aQl-bPL2qwq6l28LbU95nP46YgKmVGCfDZXB_raksEHw6otXBqdW0wpzBl4A-EO2-GvZr3_d4jwd5atP_o-IrP-qdWbwOmF578QyjZlOUUSCdDu2wUlLRY44zhhsolTNsCbsQssDpFDoO9se55cWQ&h=c7dQbxvUgbibeW_fIefBjyebFDXiqUFKeuVveSi4qfg - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --ttl --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef80337b-593e-4230-a7a2-d491fc89d9cf?api-version=2023-09-15&t=638327051878005267&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ZIPEwz1cJQ1tcoWVMyV5gVETKDemzI_Z2cqcXzd4f1GOuqepvoySuB9zoBitB8q85WvP7PapQRKs-WobL3mrF1bd08ADK1K0s2dmGsEOGSrCc8LvdER4e9OB1v_qtHtB8_7e-k2f9GBj38jeptSFpuAnZty_kHyw-IMmGyJ3yKAlXaOOFC0dfqhGM1ujQ9Wm_aQl-bPL2qwq6l28LbU95nP46YgKmVGCfDZXB_raksEHw6otXBqdW0wpzBl4A-EO2-GvZr3_d4jwd5atP_o-IrP-qdWbwOmF578QyjZlOUUSCdDu2wUlLRY44zhhsolTNsCbsQssDpFDoO9se55cWQ&h=c7dQbxvUgbibeW_fIefBjyebFDXiqUFKeuVveSi4qfg - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --ttl --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"u39OANobc6s=","_ts":1697108393,"_self":"dbs/u39OAA==/colls/u39OANobc6s=/","_etag":"\"00003803-0000-0700-0000-6527d1a90000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1213' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"u39OANobc6s=","_ts":1697108393,"_self":"dbs/u39OAA==/colls/u39OANobc6s=/","_etag":"\"00003803-0000-0700-0000-6527d1a90000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1213' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"u39OANobc6s=","_ts":1697108393,"_self":"dbs/u39OAA==/colls/u39OANobc6s=/","_etag":"\"00003803-0000-0700-0000-6527d1a90000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1112' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"u39OANobc6s=","_ts":1697108393,"_self":"dbs/u39OAA==/colls/u39OANobc6s=/","_etag":"\"00003803-0000-0700-0000-6527d1a90000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1213' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e911802-27aa-4830-9f9e-602875ea7549?api-version=2023-09-15&t=638327057274426843&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=0Pau1nwapntK1iCgScr5Pif35lnlb08WXL7yJOFzsOwHwbso5ex8ww6OZaCPOspu3bebHwVl3Gvpc6OUOcSP_HbJ_96pCbEKdQ8uwM6EyOTeSaq2Xeb614X-lnXh2RAUpKGgFZO_rf-vQlgoE102FhMazIpFWaR_77bsdG3TM0Wv0-LuyGnQVFAGG6QYDnpnUigroB3VoA5JprksGbXXXwUO8mfciLNqV65EhdNJvQqJEDj6cmPcKe5ivBgLCJRzQzvNwrPCRaee84nRD6wkpmi12rVSEV55u0oUzK-sPg89dTz9GFpsBYdzBA69Pmd_I0x5gUV-WSkq_y0t_wY62Q&h=rABHeCI0HYUAIhDKNaDRT72tFpASwGZt8OSD4YiDs0M - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:47 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/5e911802-27aa-4830-9f9e-602875ea7549?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e911802-27aa-4830-9f9e-602875ea7549?api-version=2023-09-15&t=638327057274426843&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=0Pau1nwapntK1iCgScr5Pif35lnlb08WXL7yJOFzsOwHwbso5ex8ww6OZaCPOspu3bebHwVl3Gvpc6OUOcSP_HbJ_96pCbEKdQ8uwM6EyOTeSaq2Xeb614X-lnXh2RAUpKGgFZO_rf-vQlgoE102FhMazIpFWaR_77bsdG3TM0Wv0-LuyGnQVFAGG6QYDnpnUigroB3VoA5JprksGbXXXwUO8mfciLNqV65EhdNJvQqJEDj6cmPcKe5ivBgLCJRzQzvNwrPCRaee84nRD6wkpmi12rVSEV55u0oUzK-sPg89dTz9GFpsBYdzBA69Pmd_I0x5gUV-WSkq_y0t_wY62Q&h=rABHeCI0HYUAIhDKNaDRT72tFpASwGZt8OSD4YiDs0M - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e911802-27aa-4830-9f9e-602875ea7549?api-version=2023-09-15&t=638327057274426843&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=0Pau1nwapntK1iCgScr5Pif35lnlb08WXL7yJOFzsOwHwbso5ex8ww6OZaCPOspu3bebHwVl3Gvpc6OUOcSP_HbJ_96pCbEKdQ8uwM6EyOTeSaq2Xeb614X-lnXh2RAUpKGgFZO_rf-vQlgoE102FhMazIpFWaR_77bsdG3TM0Wv0-LuyGnQVFAGG6QYDnpnUigroB3VoA5JprksGbXXXwUO8mfciLNqV65EhdNJvQqJEDj6cmPcKe5ivBgLCJRzQzvNwrPCRaee84nRD6wkpmi12rVSEV55u0oUzK-sPg89dTz9GFpsBYdzBA69Pmd_I0x5gUV-WSkq_y0t_wY62Q&h=rABHeCI0HYUAIhDKNaDRT72tFpASwGZt8OSD4YiDs0M - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","oldestRestorableTime":"2023-10-12T11:13:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:17:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"cli000004","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:17:41Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '289247' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:17:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53", - "restoreTimestampInUtc": "2023-10-12T11:00:20.272238Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:47 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3225fe15-db8c-4687-aea7-9da38caf525e?api-version=2023-09-15-preview&t=638327062679443728&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Sh7B4auDV1wkbbrz4x-gRG81pfGNRwCCgaLGJW782Xx7KyB-vPOigKMUZtdSmdxk1gTJd_HZLx7xrLPiyl0py8izOJlnIzKgJU3Y3I07c-lXtGYU7ToMOuxUJuPtFDMpuqfTqS_SQe15ApCHJ2XglVKt9MOWAR4sxKGqPAyzdCpScVaT6zacMUTxjAyy7Fu0vZI3CWM4W6qkHvJ7pzmat1Z2MLwpud2TgSSfdhHse5kOCSD7OAGHJXf8PLIYfzxlPPf08DuN8CC4ZNm5BP-_bx1-rA46wQGo0vPjF738KILOF3CQ6FG_oY50iTMikB_FP0QXLn9550ervgPravLVkg&h=VWN7YEK9Ik4zTZJ756q4Ncx00kQHdIx9UDdI_57tHi4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f3f9645f-68f0-11ee-abe4-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T11:00:20.272238+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53"},"geospatialConfig":{"type":"Geography"},"_rid":"u39OANobc6s=","_ts":1697109769,"_self":"dbs/u39OAA==/colls/u39OANobc6s=/","_etag":"\"00004303-0000-0700-0000-6527d7090000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1528' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f3f9645f-68f0-11ee-abe4-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T11:00:20.272238+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53"},"geospatialConfig":{"type":"Geography"},"_rid":"u39OANobc6s=","_ts":1697109769,"_self":"dbs/u39OAA==/colls/u39OANobc6s=/","_etag":"\"00004303-0000-0700-0000-6527d7090000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1528' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f3f9645f-68f0-11ee-abe4-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T11:00:20.272238+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53"},"geospatialConfig":{"type":"Geography"},"_rid":"u39OANobc6s=","_ts":1697109769,"_self":"dbs/u39OAA==/colls/u39OANobc6s=/","_etag":"\"00004303-0000-0700-0000-6527d7090000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1427' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d050c702-9dc3-43c4-b071-9cb06d858752?api-version=2023-09-15&t=638327073260546759&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EDZqa2qXC7hO5dHVBdaQTNOUd__cqR11GLDumZBjVtGZ9-z7-8V6lkrhQR2mewNdDfvVuZhpi6peQdtMAe4U2gmqg0Co7_-lzE1avoHiZehlM898j9IuyGA9RlWHuRx3LjpfpdmJEX7prwGzypraN36QmdCeXpCciQ6er7_oYTyNCaEmvIp3uLTRn-olUOKQdZCHmduQxesMeC-FDgiOyoy4Frrjd70VcV4EvhBTQZktLp2s8ibb_D5Cq-0ZDsb_uR34itPl5kK6bFF8wbQcTJa2olv7jLDgDKFrtSe_35ONNxI6ZDNlaZEzUbT1YCKXDetlYKLu4kjHRa2-KH0gEg&h=p-pxobYNOZA-wfXr4YPIGrbKTj25t9FX_Ce5TMKWqZ4 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:25 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/d050c702-9dc3-43c4-b071-9cb06d858752?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14995' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d050c702-9dc3-43c4-b071-9cb06d858752?api-version=2023-09-15&t=638327073260546759&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EDZqa2qXC7hO5dHVBdaQTNOUd__cqR11GLDumZBjVtGZ9-z7-8V6lkrhQR2mewNdDfvVuZhpi6peQdtMAe4U2gmqg0Co7_-lzE1avoHiZehlM898j9IuyGA9RlWHuRx3LjpfpdmJEX7prwGzypraN36QmdCeXpCciQ6er7_oYTyNCaEmvIp3uLTRn-olUOKQdZCHmduQxesMeC-FDgiOyoy4Frrjd70VcV4EvhBTQZktLp2s8ibb_D5Cq-0ZDsb_uR34itPl5kK6bFF8wbQcTJa2olv7jLDgDKFrtSe_35ONNxI6ZDNlaZEzUbT1YCKXDetlYKLu4kjHRa2-KH0gEg&h=p-pxobYNOZA-wfXr4YPIGrbKTj25t9FX_Ce5TMKWqZ4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d050c702-9dc3-43c4-b071-9cb06d858752?api-version=2023-09-15&t=638327073260546759&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EDZqa2qXC7hO5dHVBdaQTNOUd__cqR11GLDumZBjVtGZ9-z7-8V6lkrhQR2mewNdDfvVuZhpi6peQdtMAe4U2gmqg0Co7_-lzE1avoHiZehlM898j9IuyGA9RlWHuRx3LjpfpdmJEX7prwGzypraN36QmdCeXpCciQ6er7_oYTyNCaEmvIp3uLTRn-olUOKQdZCHmduQxesMeC-FDgiOyoy4Frrjd70VcV4EvhBTQZktLp2s8ibb_D5Cq-0ZDsb_uR34itPl5kK6bFF8wbQcTJa2olv7jLDgDKFrtSe_35ONNxI6ZDNlaZEzUbT1YCKXDetlYKLu4kjHRa2-KH0gEg&h=p-pxobYNOZA-wfXr4YPIGrbKTj25t9FX_Ce5TMKWqZ4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","oldestRestorableTime":"2023-10-12T11:35:17Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","oldestRestorableTime":"2023-10-12T11:35:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","oldestRestorableTime":"2023-10-12T11:35:19+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:44:21Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z","deletionTime":"2023-10-12T11:30:47Z"}]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1b0b8cd9-a889-4c9b-b889-7bd093310e25","creationTime":"2023-10-12T11:25:54Z","deletionTime":"2023-10-12T11:30:56Z"}]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ed392ee-a218-46d0-82d0-8fadee0ba43b","creationTime":"2023-10-12T11:30:28Z","deletionTime":"2023-10-12T11:33:27Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"660c29e5-8d7d-496d-84c7-50e7c655fae1","creationTime":"2023-10-12T11:31:23Z","deletionTime":"2023-10-12T11:34:15Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"cli000004","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:44:22Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '297993' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:44:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53", - "restoreTimestampInUtc": "2023-10-12T11:00:20.272238Z"}, "createMode": "Restore"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database restore - Connection: - - keep-alive - Content-Length: - - '337' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/305192e8-b98e-42d4-a3a2-e213f1585c6b?api-version=2023-09-15-preview&t=638327078703365148&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=N-VLIS-YpNysnqD0Rl-isRkF3SAVWilLMhuWfJm4ycuPvjp36EfiL3F3xdoGb19e0D7gC5FagMQYoT3n_3fhXln4QTIH-V9YDUelUhYGAlYie7eaSB9milXjlYu-bfM4G0DinuODC4irOL6MME2JKBJ-sZiDdzKqpqgOh3-17Dj822KvSEWaSKDdZxFdtq2gG6QXR6UInP8r-KFrde3tf6yAAtoXVAfrIR9PYk-NAFE4QPWwDnSFIGMVW28YYynRZllVkC-f2WuzQlKpcLXqdwfB1WUlHGXNF4KDiQfopaL6uWA7L5HYf2NkZvLOYZbPDO6JJbK8yND70MVZqdgQAw&h=bIVav9nHfi_N1q9TE_WS5xqChK0Zf9Qzkm5F0Y15OQw - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:29 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/305192e8-b98e-42d4-a3a2-e213f1585c6b?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/305192e8-b98e-42d4-a3a2-e213f1585c6b?api-version=2023-09-15-preview&t=638327078703365148&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=N-VLIS-YpNysnqD0Rl-isRkF3SAVWilLMhuWfJm4ycuPvjp36EfiL3F3xdoGb19e0D7gC5FagMQYoT3n_3fhXln4QTIH-V9YDUelUhYGAlYie7eaSB9milXjlYu-bfM4G0DinuODC4irOL6MME2JKBJ-sZiDdzKqpqgOh3-17Dj822KvSEWaSKDdZxFdtq2gG6QXR6UInP8r-KFrde3tf6yAAtoXVAfrIR9PYk-NAFE4QPWwDnSFIGMVW28YYynRZllVkC-f2WuzQlKpcLXqdwfB1WUlHGXNF4KDiQfopaL6uWA7L5HYf2NkZvLOYZbPDO6JJbK8yND70MVZqdgQAw&h=bIVav9nHfi_N1q9TE_WS5xqChK0Zf9Qzkm5F0Y15OQw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/305192e8-b98e-42d4-a3a2-e213f1585c6b?api-version=2023-09-15-preview&t=638327078703365148&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=N-VLIS-YpNysnqD0Rl-isRkF3SAVWilLMhuWfJm4ycuPvjp36EfiL3F3xdoGb19e0D7gC5FagMQYoT3n_3fhXln4QTIH-V9YDUelUhYGAlYie7eaSB9milXjlYu-bfM4G0DinuODC4irOL6MME2JKBJ-sZiDdzKqpqgOh3-17Dj822KvSEWaSKDdZxFdtq2gG6QXR6UInP8r-KFrde3tf6yAAtoXVAfrIR9PYk-NAFE4QPWwDnSFIGMVW28YYynRZllVkC-f2WuzQlKpcLXqdwfB1WUlHGXNF4KDiQfopaL6uWA7L5HYf2NkZvLOYZbPDO6JJbK8yND70MVZqdgQAw&h=bIVav9nHfi_N1q9TE_WS5xqChK0Zf9Qzkm5F0Y15OQw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/305192e8-b98e-42d4-a3a2-e213f1585c6b?api-version=2023-09-15-preview&t=638327078703365148&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=N-VLIS-YpNysnqD0Rl-isRkF3SAVWilLMhuWfJm4ycuPvjp36EfiL3F3xdoGb19e0D7gC5FagMQYoT3n_3fhXln4QTIH-V9YDUelUhYGAlYie7eaSB9milXjlYu-bfM4G0DinuODC4irOL6MME2JKBJ-sZiDdzKqpqgOh3-17Dj822KvSEWaSKDdZxFdtq2gG6QXR6UInP8r-KFrde3tf6yAAtoXVAfrIR9PYk-NAFE4QPWwDnSFIGMVW28YYynRZllVkC-f2WuzQlKpcLXqdwfB1WUlHGXNF4KDiQfopaL6uWA7L5HYf2NkZvLOYZbPDO6JJbK8yND70MVZqdgQAw&h=bIVav9nHfi_N1q9TE_WS5xqChK0Zf9Qzkm5F0Y15OQw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/305192e8-b98e-42d4-a3a2-e213f1585c6b?api-version=2023-09-15-preview&t=638327078703365148&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=N-VLIS-YpNysnqD0Rl-isRkF3SAVWilLMhuWfJm4ycuPvjp36EfiL3F3xdoGb19e0D7gC5FagMQYoT3n_3fhXln4QTIH-V9YDUelUhYGAlYie7eaSB9milXjlYu-bfM4G0DinuODC4irOL6MME2JKBJ-sZiDdzKqpqgOh3-17Dj822KvSEWaSKDdZxFdtq2gG6QXR6UInP8r-KFrde3tf6yAAtoXVAfrIR9PYk-NAFE4QPWwDnSFIGMVW28YYynRZllVkC-f2WuzQlKpcLXqdwfB1WUlHGXNF4KDiQfopaL6uWA7L5HYf2NkZvLOYZbPDO6JJbK8yND70MVZqdgQAw&h=bIVav9nHfi_N1q9TE_WS5xqChK0Zf9Qzkm5F0Y15OQw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/305192e8-b98e-42d4-a3a2-e213f1585c6b?api-version=2023-09-15-preview&t=638327078703365148&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=N-VLIS-YpNysnqD0Rl-isRkF3SAVWilLMhuWfJm4ycuPvjp36EfiL3F3xdoGb19e0D7gC5FagMQYoT3n_3fhXln4QTIH-V9YDUelUhYGAlYie7eaSB9milXjlYu-bfM4G0DinuODC4irOL6MME2JKBJ-sZiDdzKqpqgOh3-17Dj822KvSEWaSKDdZxFdtq2gG6QXR6UInP8r-KFrde3tf6yAAtoXVAfrIR9PYk-NAFE4QPWwDnSFIGMVW28YYynRZllVkC-f2WuzQlKpcLXqdwfB1WUlHGXNF4KDiQfopaL6uWA7L5HYf2NkZvLOYZbPDO6JJbK8yND70MVZqdgQAw&h=bIVav9nHfi_N1q9TE_WS5xqChK0Zf9Qzkm5F0Y15OQw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"u39OAA==","_self":"dbs/u39OAA==/","_etag":"\"00005103-0000-0700-0000-6527dc460000\"","_colls":"colls/","_users":"users/","_ts":1697111110}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '489' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"u39OAA==","_self":"dbs/u39OAA==/","_etag":"\"00005103-0000-0700-0000-6527dc460000\"","_colls":"colls/","_users":"users/","_ts":1697111110}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '501' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/981832c7-8d93-4b45-83e2-990b8eb873ca?api-version=2023-09-15&t=638327084973956603&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VOLoz4dv0ALDpI3ILIAu-OJNQnZTeeT0jFoFtmd0ke0LY9ft_nciRYXNG4dP5s1frms_yW-LmjV5O6cEmbR5-O9h8J87s6IkykGLHou7rl1XxpDA4ljS8kO1kJZx6sZBMkAOpqYogkHtkAUCO7H5luykRzFiPisx6mqjlxYkcHGhtVjBLtP9eHiqASzGPxwJ8Ps63dG0oJrQZLsA8uo_5QU812XDUnNR1MQRxqwcweb-EydK_wHKtCJOAlYT3d1XxDUuqO4kQkYuZ7H5ADedavoTCXhkKdFS22oG7p6caKw4Xdm3bqiRZBsq1E5ZyWCIZ4WF5gzHE4dKhbzBNz1zwg&h=MaLvlyDI8rzxrVZzwxk9e3Q5nxhgtgMMUfxPWUxCcG0 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:56 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/981832c7-8d93-4b45-83e2-990b8eb873ca?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/981832c7-8d93-4b45-83e2-990b8eb873ca?api-version=2023-09-15&t=638327084973956603&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VOLoz4dv0ALDpI3ILIAu-OJNQnZTeeT0jFoFtmd0ke0LY9ft_nciRYXNG4dP5s1frms_yW-LmjV5O6cEmbR5-O9h8J87s6IkykGLHou7rl1XxpDA4ljS8kO1kJZx6sZBMkAOpqYogkHtkAUCO7H5luykRzFiPisx6mqjlxYkcHGhtVjBLtP9eHiqASzGPxwJ8Ps63dG0oJrQZLsA8uo_5QU812XDUnNR1MQRxqwcweb-EydK_wHKtCJOAlYT3d1XxDUuqO4kQkYuZ7H5ADedavoTCXhkKdFS22oG7p6caKw4Xdm3bqiRZBsq1E5ZyWCIZ4WF5gzHE4dKhbzBNz1zwg&h=MaLvlyDI8rzxrVZzwxk9e3Q5nxhgtgMMUfxPWUxCcG0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/981832c7-8d93-4b45-83e2-990b8eb873ca?api-version=2023-09-15&t=638327084973956603&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VOLoz4dv0ALDpI3ILIAu-OJNQnZTeeT0jFoFtmd0ke0LY9ft_nciRYXNG4dP5s1frms_yW-LmjV5O6cEmbR5-O9h8J87s6IkykGLHou7rl1XxpDA4ljS8kO1kJZx6sZBMkAOpqYogkHtkAUCO7H5luykRzFiPisx6mqjlxYkcHGhtVjBLtP9eHiqASzGPxwJ8Ps63dG0oJrQZLsA8uo_5QU812XDUnNR1MQRxqwcweb-EydK_wHKtCJOAlYT3d1XxDUuqO4kQkYuZ7H5ADedavoTCXhkKdFS22oG7p6caKw4Xdm3bqiRZBsq1E5ZyWCIZ4WF5gzHE4dKhbzBNz1zwg&h=MaLvlyDI8rzxrVZzwxk9e3Q5nxhgtgMMUfxPWUxCcG0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/af84cb74-a74e-4db1-9d51-554e2cbea2f8?api-version=2023-09-15&t=638327085320066938&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dqAhhIMcVRRcn0gfGLJwCXJoWwucYUdjpODV5LnABVScE7upJj7nMbyUfGM5gFvdQtYEZvLKoO37xzuao7KYzAtC4GyBltYDEHg_80zS0u_1fM7gKihdrmIZ5a6avaNpNiq4QfXuJ_XNhpYRX9ybAbuALGQXrmnrWvCOpf6o3B041vlFP1Mmme7W9mY-liHsA37PU4j7QCpUq3yv1Tq224bL5Y-mSO6DwelHSxDG8PfT_d2CLWhJqKiow5LR0AvmQQ3z_4ZIZ6KVrtA4DTMQzYDfMnNg5_G2Np76zQTqmgX7ZJqdeAkPjb86z4JnLg8Uc9YCVEU0ngK6ZqImci5uMg&h=__f9-FMrZRdlUGZBh7D4_LQWFZ7KpK9AmWm0UKFmHxI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:31 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/af84cb74-a74e-4db1-9d51-554e2cbea2f8?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/af84cb74-a74e-4db1-9d51-554e2cbea2f8?api-version=2023-09-15&t=638327085320066938&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dqAhhIMcVRRcn0gfGLJwCXJoWwucYUdjpODV5LnABVScE7upJj7nMbyUfGM5gFvdQtYEZvLKoO37xzuao7KYzAtC4GyBltYDEHg_80zS0u_1fM7gKihdrmIZ5a6avaNpNiq4QfXuJ_XNhpYRX9ybAbuALGQXrmnrWvCOpf6o3B041vlFP1Mmme7W9mY-liHsA37PU4j7QCpUq3yv1Tq224bL5Y-mSO6DwelHSxDG8PfT_d2CLWhJqKiow5LR0AvmQQ3z_4ZIZ6KVrtA4DTMQzYDfMnNg5_G2Np76zQTqmgX7ZJqdeAkPjb86z4JnLg8Uc9YCVEU0ngK6ZqImci5uMg&h=__f9-FMrZRdlUGZBh7D4_LQWFZ7KpK9AmWm0UKFmHxI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/af84cb74-a74e-4db1-9d51-554e2cbea2f8?api-version=2023-09-15&t=638327085320066938&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dqAhhIMcVRRcn0gfGLJwCXJoWwucYUdjpODV5LnABVScE7upJj7nMbyUfGM5gFvdQtYEZvLKoO37xzuao7KYzAtC4GyBltYDEHg_80zS0u_1fM7gKihdrmIZ5a6avaNpNiq4QfXuJ_XNhpYRX9ybAbuALGQXrmnrWvCOpf6o3B041vlFP1Mmme7W9mY-liHsA37PU4j7QCpUq3yv1Tq224bL5Y-mSO6DwelHSxDG8PfT_d2CLWhJqKiow5LR0AvmQQ3z_4ZIZ6KVrtA4DTMQzYDfMnNg5_G2Np76zQTqmgX7ZJqdeAkPjb86z4JnLg8Uc9YCVEU0ngK6ZqImci5uMg&h=__f9-FMrZRdlUGZBh7D4_LQWFZ7KpK9AmWm0UKFmHxI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml deleted file mode 100644 index 41ca445cf43..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml +++ /dev/null @@ -1,1574 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_graph000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001","name":"cli_test_cosmosdb_gremlin_graph000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_graph","date":"2023-10-12T10:52:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '417' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:52:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '387' - Content-Type: - - application/json - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:52:27.345283Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:52:27.345283Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:52:27.345283Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.345283Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.345283Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview&t=638327047494201672&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OzxSRmFIyi7Wvem6htwDnXCkfdSN7fSQjn7v2_DK4Zffjojez80PtN7jnn-q8lSwfxztDZQNHIx6vekhPQvy0gUbZaFVVQ7OxeORQZUBcF0LRbgbqiuR0QgkYFnOVA3Eiu9iEhwf1ZbfivmQABSOVErEI-_k__Y7BT9OdgMoVomVmqOiKpn6AThrxlrA7AwdRu7APrf3Udf5dAJ2KMNygtpj_Dhf2_4AKvrKK8MOVlrVxzf1mO5zPb1MhDbS1KmA-_UY7m7dMWGvcEbk-FtkhxRSqMB7q7DwwTMaxnU3poobCwnBGw9qGgs-0qAFuB8De0rbB1D6YJsYGR4qyeIMLg&h=WWoobUwpomDs9BUNaH9oUWTHGnpdr7xG20KFIWa9UU4 - cache-control: - - no-store, no-cache - content-length: - - '2452' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview&t=638327047494201672&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OzxSRmFIyi7Wvem6htwDnXCkfdSN7fSQjn7v2_DK4Zffjojez80PtN7jnn-q8lSwfxztDZQNHIx6vekhPQvy0gUbZaFVVQ7OxeORQZUBcF0LRbgbqiuR0QgkYFnOVA3Eiu9iEhwf1ZbfivmQABSOVErEI-_k__Y7BT9OdgMoVomVmqOiKpn6AThrxlrA7AwdRu7APrf3Udf5dAJ2KMNygtpj_Dhf2_4AKvrKK8MOVlrVxzf1mO5zPb1MhDbS1KmA-_UY7m7dMWGvcEbk-FtkhxRSqMB7q7DwwTMaxnU3poobCwnBGw9qGgs-0qAFuB8De0rbB1D6YJsYGR4qyeIMLg&h=WWoobUwpomDs9BUNaH9oUWTHGnpdr7xG20KFIWa9UU4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview&t=638327047494201672&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OzxSRmFIyi7Wvem6htwDnXCkfdSN7fSQjn7v2_DK4Zffjojez80PtN7jnn-q8lSwfxztDZQNHIx6vekhPQvy0gUbZaFVVQ7OxeORQZUBcF0LRbgbqiuR0QgkYFnOVA3Eiu9iEhwf1ZbfivmQABSOVErEI-_k__Y7BT9OdgMoVomVmqOiKpn6AThrxlrA7AwdRu7APrf3Udf5dAJ2KMNygtpj_Dhf2_4AKvrKK8MOVlrVxzf1mO5zPb1MhDbS1KmA-_UY7m7dMWGvcEbk-FtkhxRSqMB7q7DwwTMaxnU3poobCwnBGw9qGgs-0qAFuB8De0rbB1D6YJsYGR4qyeIMLg&h=WWoobUwpomDs9BUNaH9oUWTHGnpdr7xG20KFIWa9UU4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview&t=638327047494201672&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OzxSRmFIyi7Wvem6htwDnXCkfdSN7fSQjn7v2_DK4Zffjojez80PtN7jnn-q8lSwfxztDZQNHIx6vekhPQvy0gUbZaFVVQ7OxeORQZUBcF0LRbgbqiuR0QgkYFnOVA3Eiu9iEhwf1ZbfivmQABSOVErEI-_k__Y7BT9OdgMoVomVmqOiKpn6AThrxlrA7AwdRu7APrf3Udf5dAJ2KMNygtpj_Dhf2_4AKvrKK8MOVlrVxzf1mO5zPb1MhDbS1KmA-_UY7m7dMWGvcEbk-FtkhxRSqMB7q7DwwTMaxnU3poobCwnBGw9qGgs-0qAFuB8De0rbB1D6YJsYGR4qyeIMLg&h=WWoobUwpomDs9BUNaH9oUWTHGnpdr7xG20KFIWa9UU4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview&t=638327047494201672&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OzxSRmFIyi7Wvem6htwDnXCkfdSN7fSQjn7v2_DK4Zffjojez80PtN7jnn-q8lSwfxztDZQNHIx6vekhPQvy0gUbZaFVVQ7OxeORQZUBcF0LRbgbqiuR0QgkYFnOVA3Eiu9iEhwf1ZbfivmQABSOVErEI-_k__Y7BT9OdgMoVomVmqOiKpn6AThrxlrA7AwdRu7APrf3Udf5dAJ2KMNygtpj_Dhf2_4AKvrKK8MOVlrVxzf1mO5zPb1MhDbS1KmA-_UY7m7dMWGvcEbk-FtkhxRSqMB7q7DwwTMaxnU3poobCwnBGw9qGgs-0qAFuB8De0rbB1D6YJsYGR4qyeIMLg&h=WWoobUwpomDs9BUNaH9oUWTHGnpdr7xG20KFIWa9UU4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview&t=638327047494201672&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OzxSRmFIyi7Wvem6htwDnXCkfdSN7fSQjn7v2_DK4Zffjojez80PtN7jnn-q8lSwfxztDZQNHIx6vekhPQvy0gUbZaFVVQ7OxeORQZUBcF0LRbgbqiuR0QgkYFnOVA3Eiu9iEhwf1ZbfivmQABSOVErEI-_k__Y7BT9OdgMoVomVmqOiKpn6AThrxlrA7AwdRu7APrf3Udf5dAJ2KMNygtpj_Dhf2_4AKvrKK8MOVlrVxzf1mO5zPb1MhDbS1KmA-_UY7m7dMWGvcEbk-FtkhxRSqMB7q7DwwTMaxnU3poobCwnBGw9qGgs-0qAFuB8De0rbB1D6YJsYGR4qyeIMLg&h=WWoobUwpomDs9BUNaH9oUWTHGnpdr7xG20KFIWa9UU4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview&t=638327047494201672&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OzxSRmFIyi7Wvem6htwDnXCkfdSN7fSQjn7v2_DK4Zffjojez80PtN7jnn-q8lSwfxztDZQNHIx6vekhPQvy0gUbZaFVVQ7OxeORQZUBcF0LRbgbqiuR0QgkYFnOVA3Eiu9iEhwf1ZbfivmQABSOVErEI-_k__Y7BT9OdgMoVomVmqOiKpn6AThrxlrA7AwdRu7APrf3Udf5dAJ2KMNygtpj_Dhf2_4AKvrKK8MOVlrVxzf1mO5zPb1MhDbS1KmA-_UY7m7dMWGvcEbk-FtkhxRSqMB7q7DwwTMaxnU3poobCwnBGw9qGgs-0qAFuB8De0rbB1D6YJsYGR4qyeIMLg&h=WWoobUwpomDs9BUNaH9oUWTHGnpdr7xG20KFIWa9UU4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b69f479b-f4c3-4664-9c60-18f2d39a42dc?api-version=2023-09-15-preview&t=638327047494201672&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OzxSRmFIyi7Wvem6htwDnXCkfdSN7fSQjn7v2_DK4Zffjojez80PtN7jnn-q8lSwfxztDZQNHIx6vekhPQvy0gUbZaFVVQ7OxeORQZUBcF0LRbgbqiuR0QgkYFnOVA3Eiu9iEhwf1ZbfivmQABSOVErEI-_k__Y7BT9OdgMoVomVmqOiKpn6AThrxlrA7AwdRu7APrf3Udf5dAJ2KMNygtpj_Dhf2_4AKvrKK8MOVlrVxzf1mO5zPb1MhDbS1KmA-_UY7m7dMWGvcEbk-FtkhxRSqMB7q7DwwTMaxnU3poobCwnBGw9qGgs-0qAFuB8De0rbB1D6YJsYGR4qyeIMLg&h=WWoobUwpomDs9BUNaH9oUWTHGnpdr7xG20KFIWa9UU4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:50.727903Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:50.727903Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:50.727903Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:50.727903Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:50.727903Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2878' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --capabilities --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:50.727903Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:50.727903Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:50.727903Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:50.727903Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:50.727903Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2878' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfc1724a-b7d6-4fc8-a0ec-d9d78998a5f6?api-version=2023-09-15&t=638327049363114949&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uar9BwNFjCUVsRPp0udt45uhE5kqO4UZfdrXFBEQi7BSkKaVuSxCHxZQu3KEzGV0-j32Y5IME6RYTtmR9zFG4LyZxNzncO27FYfkPOXomHfqBz5kMt4l2HYn1lPTkxzWzlxq4mzhQL0heV5bFyZP620t72_k6nxy2WNoYUVu10uVGV3gfjXi719UTbXdtoBjrXbexUxyS5QJAO-86veZqxquq2KZtnNRQBfnK3uAMMEQbfN1SrBKMWBVgtSRqqO7hWluJyRTaXN9k6HGI_zjrPMinaQWihWtCvmaqjWW_0ZUQ0qYrufRbmVGk6O0V1VJcCFfu4jIq0EZRghAk9rkgg&h=G014mV-HfvszIrCP5hOaIHhtwlQLmfgEHW2WkrJZvEM - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/bfc1724a-b7d6-4fc8-a0ec-d9d78998a5f6?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfc1724a-b7d6-4fc8-a0ec-d9d78998a5f6?api-version=2023-09-15&t=638327049363114949&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uar9BwNFjCUVsRPp0udt45uhE5kqO4UZfdrXFBEQi7BSkKaVuSxCHxZQu3KEzGV0-j32Y5IME6RYTtmR9zFG4LyZxNzncO27FYfkPOXomHfqBz5kMt4l2HYn1lPTkxzWzlxq4mzhQL0heV5bFyZP620t72_k6nxy2WNoYUVu10uVGV3gfjXi719UTbXdtoBjrXbexUxyS5QJAO-86veZqxquq2KZtnNRQBfnK3uAMMEQbfN1SrBKMWBVgtSRqqO7hWluJyRTaXN9k6HGI_zjrPMinaQWihWtCvmaqjWW_0ZUQ0qYrufRbmVGk6O0V1VJcCFfu4jIq0EZRghAk9rkgg&h=G014mV-HfvszIrCP5hOaIHhtwlQLmfgEHW2WkrJZvEM - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfc1724a-b7d6-4fc8-a0ec-d9d78998a5f6?api-version=2023-09-15&t=638327049363114949&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uar9BwNFjCUVsRPp0udt45uhE5kqO4UZfdrXFBEQi7BSkKaVuSxCHxZQu3KEzGV0-j32Y5IME6RYTtmR9zFG4LyZxNzncO27FYfkPOXomHfqBz5kMt4l2HYn1lPTkxzWzlxq4mzhQL0heV5bFyZP620t72_k6nxy2WNoYUVu10uVGV3gfjXi719UTbXdtoBjrXbexUxyS5QJAO-86veZqxquq2KZtnNRQBfnK3uAMMEQbfN1SrBKMWBVgtSRqqO7hWluJyRTaXN9k6HGI_zjrPMinaQWihWtCvmaqjWW_0ZUQ0qYrufRbmVGk6O0V1VJcCFfu4jIq0EZRghAk9rkgg&h=G014mV-HfvszIrCP5hOaIHhtwlQLmfgEHW2WkrJZvEM - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"G6spAA==","_self":"dbs/G6spAA==/","_etag":"\"00003d01-0000-0700-0000-6527d0ad0000\"","_colls":"colls/","_users":"users/","_ts":1697108141}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '472' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - f25e885c-68ed-11ee-aaae-9c7bef43f49d, Request URI: /apps/a7778da4-4053-486a-970e-7bf6f0fa7a1e/services/456e6f3d-6686-46fa-89cd-ffd55ebacacc/partitions/8e6b6c33-fd89-48d7-be11-1ee275b26ed4/replicas/133374156101593781s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T10:56:08.7366230Z, RequestEndTime: - 2023-10-12T10:56:08.7394907Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T10:55:17.2364521Z\\\",\\\"cpu\\\":0.369,\\\"memory\\\":474974080.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0635,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":374},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:27.2466128Z\\\",\\\"cpu\\\":0.652,\\\"memory\\\":474843472.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1678,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":374},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:37.2566343Z\\\",\\\"cpu\\\":0.631,\\\"memory\\\":474862864.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0984,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":374},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:47.2668313Z\\\",\\\"cpu\\\":0.276,\\\"memory\\\":474858784.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0453,\\\"availableThreads\\\":32762,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":375},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:57.2769686Z\\\",\\\"cpu\\\":0.285,\\\"memory\\\":474864992.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0831,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":376},{\\\"dateUtc\\\":\\\"2023-10-12T10:56:07.2870684Z\\\",\\\"cpu\\\":0.937,\\\"memory\\\":474857220.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0518,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":377}]}\\r\\nRequestStart: - 2023-10-12T10:56:08.7368578Z; ResponseTime: 2023-10-12T10:56:08.7394794Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.7:11000/apps/a7778da4-4053-486a-970e-7bf6f0fa7a1e/services/456e6f3d-6686-46fa-89cd-ffd55ebacacc/partitions/8e6b6c33-fd89-48d7-be11-1ee275b26ed4/replicas/133374156101593781s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.215, ActivityId: - f25e885c-68ed-11ee-aaae-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 10:56:08 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 10:56:08 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:56:08 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:56:08 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:08.7367706Z\\\", - \\\"durationInMs\\\": 0.0112},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:08.7367818Z\\\", \\\"durationInMs\\\": - 0.0015},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:08.7367833Z\\\", - \\\"durationInMs\\\": 0.0657},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:56:08.7368490Z\\\", \\\"durationInMs\\\": 1.821},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:08.7386700Z\\\", - \\\"durationInMs\\\": 0.1826},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:56:08.7388526Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:56:08.5094533Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:56:08.5094701Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:56:08.5513649Z\\\"},\\\"requestSizeInBytes\\\":490,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T10:56:08.7369209Z; - ResponseTime: 2023-10-12T10:56:08.7394907Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.8:11000/apps/a7778da4-4053-486a-970e-7bf6f0fa7a1e/services/456e6f3d-6686-46fa-89cd-ffd55ebacacc/partitions/8e6b6c33-fd89-48d7-be11-1ee275b26ed4/replicas/133374156071436758s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.067, ActivityId: - f25e885c-68ed-11ee-aaae-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 10:56:08 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 10:56:08 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:56:08 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:56:08 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:08.7368596Z\\\", - \\\"durationInMs\\\": 0.004},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:08.7368636Z\\\", \\\"durationInMs\\\": - 0.0009},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:08.7368645Z\\\", - \\\"durationInMs\\\": 0.0519},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:56:08.7369164Z\\\", \\\"durationInMs\\\": 1.5803},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:08.7384967Z\\\", - \\\"durationInMs\\\": 0.2403},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:56:08.7387370Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:56:08.6297564Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:56:08.6297718Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:56:08.6703014Z\\\"},\\\"requestSizeInBytes\\\":490,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7092' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], - "kind": "Hash"}, "defaultTtl": 1000, "conflictResolutionPolicy": {"mode": "lastWriterWins", - "conflictResolutionPath": "/path"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - Content-Length: - - '402' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --ttl --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57944107-09f4-4aff-920b-6ba4c72ecf3d?api-version=2023-09-15&t=638327049708766961&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=EHgd-3NxxJduDMUybOY9noFHlgOz1U1xjuOqvFZ14XRvZ9t4oNcBdl_6wSbPq3uYeW2KFuZl1DPOmhUxL70-BxNC0SU8kmusKH57n1Wd0dyffZzGuaO2TANn3tK0QuXpLvybgc2eiFEG1OVWe6UfoUk4FsI-Tmgy9n9VDjLiQ740MN4v7edIpQko11uhssaVvBSF7H29meFKKTJ9LfwX7GLZRcQJ2VVdSond5Smp4PmVcmznxaHyAuTjVykp3zsEwR4WymeDDqdYIqxWBVEU2Hhk422_LL1PpXGpE-agw4s75fUv9h53M2YUwxe24IY7Pt5tEfdhYXtDmOlOnlHCSQ&h=PZprY6EEVdiff37nlj2zWADcnvEdIKOwS1Tf13d3N8E - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:10 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/57944107-09f4-4aff-920b-6ba4c72ecf3d?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --ttl --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57944107-09f4-4aff-920b-6ba4c72ecf3d?api-version=2023-09-15&t=638327049708766961&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=EHgd-3NxxJduDMUybOY9noFHlgOz1U1xjuOqvFZ14XRvZ9t4oNcBdl_6wSbPq3uYeW2KFuZl1DPOmhUxL70-BxNC0SU8kmusKH57n1Wd0dyffZzGuaO2TANn3tK0QuXpLvybgc2eiFEG1OVWe6UfoUk4FsI-Tmgy9n9VDjLiQ740MN4v7edIpQko11uhssaVvBSF7H29meFKKTJ9LfwX7GLZRcQJ2VVdSond5Smp4PmVcmznxaHyAuTjVykp3zsEwR4WymeDDqdYIqxWBVEU2Hhk422_LL1PpXGpE-agw4s75fUv9h53M2YUwxe24IY7Pt5tEfdhYXtDmOlOnlHCSQ&h=PZprY6EEVdiff37nlj2zWADcnvEdIKOwS1Tf13d3N8E - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --ttl --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57944107-09f4-4aff-920b-6ba4c72ecf3d?api-version=2023-09-15&t=638327049708766961&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=EHgd-3NxxJduDMUybOY9noFHlgOz1U1xjuOqvFZ14XRvZ9t4oNcBdl_6wSbPq3uYeW2KFuZl1DPOmhUxL70-BxNC0SU8kmusKH57n1Wd0dyffZzGuaO2TANn3tK0QuXpLvybgc2eiFEG1OVWe6UfoUk4FsI-Tmgy9n9VDjLiQ740MN4v7edIpQko11uhssaVvBSF7H29meFKKTJ9LfwX7GLZRcQJ2VVdSond5Smp4PmVcmznxaHyAuTjVykp3zsEwR4WymeDDqdYIqxWBVEU2Hhk422_LL1PpXGpE-agw4s75fUv9h53M2YUwxe24IY7Pt5tEfdhYXtDmOlOnlHCSQ&h=PZprY6EEVdiff37nlj2zWADcnvEdIKOwS1Tf13d3N8E - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --ttl --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"G6spAO-6+C4=","_ts":1697108176,"_self":"dbs/G6spAA==/colls/G6spAO-6+C4=/","_etag":"\"00004001-0000-0700-0000-6527d0d00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1196' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --ttl - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"G6spAO-6+C4=","_ts":1697108176,"_self":"dbs/G6spAA==/colls/G6spAO-6+C4=/","_etag":"\"00004001-0000-0700-0000-6527d0d00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1196' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/headquarters/employees/?"}, {"path": "/\"_etag\"/?"}]}, "partitionKey": - {"paths": ["/thePartitionKey"], "kind": "Hash"}, "defaultTtl": 2000, "uniqueKeyPolicy": - {"uniqueKeys": []}, "conflictResolutionPolicy": {"mode": "lastWriterWins", "conflictResolutionPath": - "/path", "conflictResolutionProcedure": ""}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph update - Connection: - - keep-alive - Content-Length: - - '502' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --ttl - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96516873-f32c-4e3f-b2b9-f8d8742ef520?api-version=2023-09-15&t=638327050059144962&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dTnXpm4P77pVEKvruZn8JWbVptdMgT4NzvCDslSSAZ8bYrqmFxWKPM7QPv0zrXEgp_qBuu5sff2F_YLwZakJRp5xkec9-MrkLzcKgK6LWXcuTT3lTUynbuf5ySvBmCecFagNkIUc_eLccYMEtWXK0Uw_Qnsjg6dLxPK6U-VXxF1iT_D0V01GSJRSTdpUBTiADNWBarDLEyQOZudL2ya7t2JaIk6CC998svsWTXncfU5ACNlIIGsOuxNrU2s3EM-oEzDel0yVPv1oagYWblBNKT6oPG65oL26YztFFv6egS8zIWBFba3c3d0arloc04PoBgDlCatqyLIxrNCEY00YjQ&h=mrmQdjkvCLzAdLC1nWCj14-OLCq6Io1G8_CDCxkSJV8 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:45 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/96516873-f32c-4e3f-b2b9-f8d8742ef520?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --ttl - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96516873-f32c-4e3f-b2b9-f8d8742ef520?api-version=2023-09-15&t=638327050059144962&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dTnXpm4P77pVEKvruZn8JWbVptdMgT4NzvCDslSSAZ8bYrqmFxWKPM7QPv0zrXEgp_qBuu5sff2F_YLwZakJRp5xkec9-MrkLzcKgK6LWXcuTT3lTUynbuf5ySvBmCecFagNkIUc_eLccYMEtWXK0Uw_Qnsjg6dLxPK6U-VXxF1iT_D0V01GSJRSTdpUBTiADNWBarDLEyQOZudL2ya7t2JaIk6CC998svsWTXncfU5ACNlIIGsOuxNrU2s3EM-oEzDel0yVPv1oagYWblBNKT6oPG65oL26YztFFv6egS8zIWBFba3c3d0arloc04PoBgDlCatqyLIxrNCEY00YjQ&h=mrmQdjkvCLzAdLC1nWCj14-OLCq6Io1G8_CDCxkSJV8 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --ttl - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96516873-f32c-4e3f-b2b9-f8d8742ef520?api-version=2023-09-15&t=638327050059144962&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dTnXpm4P77pVEKvruZn8JWbVptdMgT4NzvCDslSSAZ8bYrqmFxWKPM7QPv0zrXEgp_qBuu5sff2F_YLwZakJRp5xkec9-MrkLzcKgK6LWXcuTT3lTUynbuf5ySvBmCecFagNkIUc_eLccYMEtWXK0Uw_Qnsjg6dLxPK6U-VXxF1iT_D0V01GSJRSTdpUBTiADNWBarDLEyQOZudL2ya7t2JaIk6CC998svsWTXncfU5ACNlIIGsOuxNrU2s3EM-oEzDel0yVPv1oagYWblBNKT6oPG65oL26YztFFv6egS8zIWBFba3c3d0arloc04PoBgDlCatqyLIxrNCEY00YjQ&h=mrmQdjkvCLzAdLC1nWCj14-OLCq6Io1G8_CDCxkSJV8 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --ttl - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"G6spAO-6+C4=","_ts":1697108211,"_self":"dbs/G6spAA==/colls/G6spAO-6+C4=/","_etag":"\"00004601-0000-0700-0000-6527d0f30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1196' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"G6spAO-6+C4=","_ts":1697108211,"_self":"dbs/G6spAA==/colls/G6spAO-6+C4=/","_etag":"\"00004601-0000-0700-0000-6527d0f30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1196' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"G6spAO-6+C4=","_ts":1697108211,"_self":"dbs/G6spAA==/colls/G6spAO-6+C4=/","_etag":"\"00004601-0000-0700-0000-6527d0f30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1095' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"G6spAO-6+C4=","_ts":1697108211,"_self":"dbs/G6spAA==/colls/G6spAO-6+C4=/","_etag":"\"00004601-0000-0700-0000-6527d0f30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1196' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/457b021f-5f1e-4eb1-bfbb-8310795bd059?api-version=2023-09-15&t=638327050478084963&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GIQm5gH3bFvOcQGiKDcYD9y9TBF3APXJ0zMoL5f8hkK9YR8KcEhYxFlWp6z3nQLBGuO9s4aveeFn2AFCMb1mOD2Jz3M8zX5vqwD5ZAMbFmxHxjZIMesM2n13ilije8FIgWlGqgPbAeLDa4KOmwFGOt_wB8jHox9i0JyzqUbNHrkHbaYB2V_zpntCmXCwf8hRKx1Ts0NqxNinoyLi3UtmttGgNVi9JUky6wBOO0gwfNZgV53OSysmx6jLY_z6Ol0aKNHdIltI9j2Js7gjN_44Jf90ypn16EcpCEX094hI5oa6P3ZyuW9qMJaiyrH2NKNiGEMYY6YC9U0CXnZt6_gMIw&h=jsTawksLjcg12lR0G4qizSeGbhRxtqe1hSbOEx7GttU - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:27 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/457b021f-5f1e-4eb1-bfbb-8310795bd059?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/457b021f-5f1e-4eb1-bfbb-8310795bd059?api-version=2023-09-15&t=638327050478084963&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GIQm5gH3bFvOcQGiKDcYD9y9TBF3APXJ0zMoL5f8hkK9YR8KcEhYxFlWp6z3nQLBGuO9s4aveeFn2AFCMb1mOD2Jz3M8zX5vqwD5ZAMbFmxHxjZIMesM2n13ilije8FIgWlGqgPbAeLDa4KOmwFGOt_wB8jHox9i0JyzqUbNHrkHbaYB2V_zpntCmXCwf8hRKx1Ts0NqxNinoyLi3UtmttGgNVi9JUky6wBOO0gwfNZgV53OSysmx6jLY_z6Ol0aKNHdIltI9j2Js7gjN_44Jf90ypn16EcpCEX094hI5oa6P3ZyuW9qMJaiyrH2NKNiGEMYY6YC9U0CXnZt6_gMIw&h=jsTawksLjcg12lR0G4qizSeGbhRxtqe1hSbOEx7GttU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/457b021f-5f1e-4eb1-bfbb-8310795bd059?api-version=2023-09-15&t=638327050478084963&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GIQm5gH3bFvOcQGiKDcYD9y9TBF3APXJ0zMoL5f8hkK9YR8KcEhYxFlWp6z3nQLBGuO9s4aveeFn2AFCMb1mOD2Jz3M8zX5vqwD5ZAMbFmxHxjZIMesM2n13ilije8FIgWlGqgPbAeLDa4KOmwFGOt_wB8jHox9i0JyzqUbNHrkHbaYB2V_zpntCmXCwf8hRKx1Ts0NqxNinoyLi3UtmttGgNVi9JUky6wBOO0gwfNZgV53OSysmx6jLY_z6Ol0aKNHdIltI9j2Js7gjN_44Jf90ypn16EcpCEX094hI5oa6P3ZyuW9qMJaiyrH2NKNiGEMYY6YC9U0CXnZt6_gMIw&h=jsTawksLjcg12lR0G4qizSeGbhRxtqe1hSbOEx7GttU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph_backupinfo.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph_backupinfo.yaml deleted file mode 100644 index dd0ff113e78..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph_backupinfo.yaml +++ /dev/null @@ -1,1888 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DocumentDB/databaseAccounts/cli000004'' - under resource group ''cli_test_cosmosdb_gremlin_graph_backupinfo000001'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '267' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:17:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001","name":"cli_test_cosmosdb_gremlin_graph_backupinfo000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_graph_backupinfo","date":"2023-10-12T11:17:27Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '451' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:17:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '389' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:17:38.6357198Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:17:38.6357198Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:17:38.6357198Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:17:38.6357198Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:17:38.6357198Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/83aa2b48-cbe7-4724-a711-aa2039ca0184?api-version=2023-09-15-preview&t=638327062602287807&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LgKgIds5ON_Y_0MZzCVWCSfGgs9UfDhmWlo9usWqP2O_0kyU-KHc5GYdI_TI6PIY3xK8eGAl350riJEOBE1S7sWlTfjLQypEp9HaJgvs_PctuIMTvJFRX_EDVz1IKYM_nMoN-WQbK393kVn_Tl75tGtc-XThK5OMT8D3_117HMjcLZsm5OuluG9dvt9HjPbwi0_2db3tJzhcvI9xH7-GzLLCcbhdWNYF0YVZTLsXm7Hp-VtUQIBMY5_vxdXONcW8CSzrh6oJnaeJl8T756v8IN5uMTMkQ50Mmgol3d9VRj-OZjOO1Jy4GxwLEdNyh1PzDetgtRiLmslcPKtKCHEtBg&h=qs-hDhyEkkfERph2jX33v197ZS1J-r6q494bVi94Ez0 - cache-control: - - no-store, no-cache - content-length: - - '2482' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:39 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/83aa2b48-cbe7-4724-a711-aa2039ca0184?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/83aa2b48-cbe7-4724-a711-aa2039ca0184?api-version=2023-09-15-preview&t=638327062602287807&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LgKgIds5ON_Y_0MZzCVWCSfGgs9UfDhmWlo9usWqP2O_0kyU-KHc5GYdI_TI6PIY3xK8eGAl350riJEOBE1S7sWlTfjLQypEp9HaJgvs_PctuIMTvJFRX_EDVz1IKYM_nMoN-WQbK393kVn_Tl75tGtc-XThK5OMT8D3_117HMjcLZsm5OuluG9dvt9HjPbwi0_2db3tJzhcvI9xH7-GzLLCcbhdWNYF0YVZTLsXm7Hp-VtUQIBMY5_vxdXONcW8CSzrh6oJnaeJl8T756v8IN5uMTMkQ50Mmgol3d9VRj-OZjOO1Jy4GxwLEdNyh1PzDetgtRiLmslcPKtKCHEtBg&h=qs-hDhyEkkfERph2jX33v197ZS1J-r6q494bVi94Ez0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/83aa2b48-cbe7-4724-a711-aa2039ca0184?api-version=2023-09-15-preview&t=638327062602287807&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LgKgIds5ON_Y_0MZzCVWCSfGgs9UfDhmWlo9usWqP2O_0kyU-KHc5GYdI_TI6PIY3xK8eGAl350riJEOBE1S7sWlTfjLQypEp9HaJgvs_PctuIMTvJFRX_EDVz1IKYM_nMoN-WQbK393kVn_Tl75tGtc-XThK5OMT8D3_117HMjcLZsm5OuluG9dvt9HjPbwi0_2db3tJzhcvI9xH7-GzLLCcbhdWNYF0YVZTLsXm7Hp-VtUQIBMY5_vxdXONcW8CSzrh6oJnaeJl8T756v8IN5uMTMkQ50Mmgol3d9VRj-OZjOO1Jy4GxwLEdNyh1PzDetgtRiLmslcPKtKCHEtBg&h=qs-hDhyEkkfERph2jX33v197ZS1J-r6q494bVi94Ez0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/83aa2b48-cbe7-4724-a711-aa2039ca0184?api-version=2023-09-15-preview&t=638327062602287807&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LgKgIds5ON_Y_0MZzCVWCSfGgs9UfDhmWlo9usWqP2O_0kyU-KHc5GYdI_TI6PIY3xK8eGAl350riJEOBE1S7sWlTfjLQypEp9HaJgvs_PctuIMTvJFRX_EDVz1IKYM_nMoN-WQbK393kVn_Tl75tGtc-XThK5OMT8D3_117HMjcLZsm5OuluG9dvt9HjPbwi0_2db3tJzhcvI9xH7-GzLLCcbhdWNYF0YVZTLsXm7Hp-VtUQIBMY5_vxdXONcW8CSzrh6oJnaeJl8T756v8IN5uMTMkQ50Mmgol3d9VRj-OZjOO1Jy4GxwLEdNyh1PzDetgtRiLmslcPKtKCHEtBg&h=qs-hDhyEkkfERph2jX33v197ZS1J-r6q494bVi94Ez0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/83aa2b48-cbe7-4724-a711-aa2039ca0184?api-version=2023-09-15-preview&t=638327062602287807&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LgKgIds5ON_Y_0MZzCVWCSfGgs9UfDhmWlo9usWqP2O_0kyU-KHc5GYdI_TI6PIY3xK8eGAl350riJEOBE1S7sWlTfjLQypEp9HaJgvs_PctuIMTvJFRX_EDVz1IKYM_nMoN-WQbK393kVn_Tl75tGtc-XThK5OMT8D3_117HMjcLZsm5OuluG9dvt9HjPbwi0_2db3tJzhcvI9xH7-GzLLCcbhdWNYF0YVZTLsXm7Hp-VtUQIBMY5_vxdXONcW8CSzrh6oJnaeJl8T756v8IN5uMTMkQ50Mmgol3d9VRj-OZjOO1Jy4GxwLEdNyh1PzDetgtRiLmslcPKtKCHEtBg&h=qs-hDhyEkkfERph2jX33v197ZS1J-r6q494bVi94Ez0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/83aa2b48-cbe7-4724-a711-aa2039ca0184?api-version=2023-09-15-preview&t=638327062602287807&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LgKgIds5ON_Y_0MZzCVWCSfGgs9UfDhmWlo9usWqP2O_0kyU-KHc5GYdI_TI6PIY3xK8eGAl350riJEOBE1S7sWlTfjLQypEp9HaJgvs_PctuIMTvJFRX_EDVz1IKYM_nMoN-WQbK393kVn_Tl75tGtc-XThK5OMT8D3_117HMjcLZsm5OuluG9dvt9HjPbwi0_2db3tJzhcvI9xH7-GzLLCcbhdWNYF0YVZTLsXm7Hp-VtUQIBMY5_vxdXONcW8CSzrh6oJnaeJl8T756v8IN5uMTMkQ50Mmgol3d9VRj-OZjOO1Jy4GxwLEdNyh1PzDetgtRiLmslcPKtKCHEtBg&h=qs-hDhyEkkfERph2jX33v197ZS1J-r6q494bVi94Ez0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/83aa2b48-cbe7-4724-a711-aa2039ca0184?api-version=2023-09-15-preview&t=638327062602287807&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LgKgIds5ON_Y_0MZzCVWCSfGgs9UfDhmWlo9usWqP2O_0kyU-KHc5GYdI_TI6PIY3xK8eGAl350riJEOBE1S7sWlTfjLQypEp9HaJgvs_PctuIMTvJFRX_EDVz1IKYM_nMoN-WQbK393kVn_Tl75tGtc-XThK5OMT8D3_117HMjcLZsm5OuluG9dvt9HjPbwi0_2db3tJzhcvI9xH7-GzLLCcbhdWNYF0YVZTLsXm7Hp-VtUQIBMY5_vxdXONcW8CSzrh6oJnaeJl8T756v8IN5uMTMkQ50Mmgol3d9VRj-OZjOO1Jy4GxwLEdNyh1PzDetgtRiLmslcPKtKCHEtBg&h=qs-hDhyEkkfERph2jX33v197ZS1J-r6q494bVi94Ez0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:19:42.0856466Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2911' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:19:42.0856466Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2911' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:19:42.0856466Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:19:42.0856466Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2911' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - 5521c156-68f1-11ee-9f97-9c7bef43f49d, Request URI: /apps/ec696499-9728-4f0a-92d2-0e1846ff74f3/services/0d2041c7-4391-4523-b318-66b252ad64d2/partitions/4d183218-a9da-4d04-92d5-a4dc91a79f96/replicas/133403640057111079s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T11:20:23.1101499Z, RequestEndTime: - 2023-10-12T11:20:23.1118899Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T11:19:32.6206335Z\\\",\\\"cpu\\\":0.891,\\\"memory\\\":653355784.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0421,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1394},{\\\"dateUtc\\\":\\\"2023-10-12T11:19:42.6306648Z\\\",\\\"cpu\\\":0.268,\\\"memory\\\":653328144.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0504,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1394},{\\\"dateUtc\\\":\\\"2023-10-12T11:19:52.6412771Z\\\",\\\"cpu\\\":0.339,\\\"memory\\\":653316412.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.038,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1394},{\\\"dateUtc\\\":\\\"2023-10-12T11:20:02.6507597Z\\\",\\\"cpu\\\":0.622,\\\"memory\\\":653315236.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0716,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1393},{\\\"dateUtc\\\":\\\"2023-10-12T11:20:12.6608342Z\\\",\\\"cpu\\\":0.549,\\\"memory\\\":653327272.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0572,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1393},{\\\"dateUtc\\\":\\\"2023-10-12T11:20:22.6709071Z\\\",\\\"cpu\\\":0.146,\\\"memory\\\":653313428.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0468,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1393}]}\\r\\nRequestStart: - 2023-10-12T11:20:23.1103398Z; ResponseTime: 2023-10-12T11:20:23.1118805Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/ec696499-9728-4f0a-92d2-0e1846ff74f3/services/0d2041c7-4391-4523-b318-66b252ad64d2/partitions/4d183218-a9da-4d04-92d5-a4dc91a79f96/replicas/133403640057111079s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.88, ActivityId: - 5521c156-68f1-11ee-9f97-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:20:23 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:20:23 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:20:23 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:20:23 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:20:23.1102686Z\\\", - \\\"durationInMs\\\": 0.0075},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:20:23.1102761Z\\\", \\\"durationInMs\\\": - 0.0022},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:20:23.1102783Z\\\", - \\\"durationInMs\\\": 0.0544},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:20:23.1103327Z\\\", \\\"durationInMs\\\": 1.1381},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:20:23.1114708Z\\\", - \\\"durationInMs\\\": 0.0641},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:20:23.1115349Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:20:22.9462890Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:20:22.9463060Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:20:22.9799423Z\\\"},\\\"requestSizeInBytes\\\":472,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2023-10-12T11:20:23.1103806Z; - ResponseTime: 2023-10-12T11:20:23.1118899Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.11:11300/apps/ec696499-9728-4f0a-92d2-0e1846ff74f3/services/0d2041c7-4391-4523-b318-66b252ad64d2/partitions/4d183218-a9da-4d04-92d5-a4dc91a79f96/replicas/133403640057111078s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.742, ActivityId: - 5521c156-68f1-11ee-9f97-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:20:23 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:20:23 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:20:23 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:20:23 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:20:23.1103414Z\\\", - \\\"durationInMs\\\": 0.0029},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:20:23.1103443Z\\\", \\\"durationInMs\\\": - 0.0009},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:20:23.1103452Z\\\", - \\\"durationInMs\\\": 0.0311},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:20:23.1103763Z\\\", \\\"durationInMs\\\": 1.0096},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:20:23.1113859Z\\\", - \\\"durationInMs\\\": 0.0405},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:20:23.1114264Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:20:23.0340998Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:20:23.0341148Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:20:23.0672310Z\\\"},\\\"requestSizeInBytes\\\":472,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7074' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/cf8be6a6-158b-4c14-94b9-df0b39dc7ef9?api-version=2023-09-15&t=638327064252732201&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=bA3ly89UvKbpCAnIPPtJvU7w4fAelaFcCPYrwak4aghHyniGDh37fhJCIUvAoUuFpenP9Yguq0RfZqOwIKJHrufOVmHiJ6jW4j2fh7XdQjrAlyjkpTNvYi4mn4uFI3kk7_C7EurjPwlBdNeFyJCNvEbsmZiwOPeeDAdIkE0DWLwBuXGXDqi3EgfCrt9H9r3hqOWAjwKwugRZ4N1UNAgPV0cciHHoAp9hBXOuoJST_Av4IrxSzsmGfQmIf2Rjn_fGVY0JY_Za0MOa8WtWR092a-sRSfzUxNTpHy_5nKZu1wgXVYN84uPoBLVLF5VZ8PnSbtzHzkTcVMAePhV1sVByKw&h=qDInR2Fruw0rPfTGPvKOeTTndSWzCK3zmiz_u5JT0BE - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:24 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/operationResults/cf8be6a6-158b-4c14-94b9-df0b39dc7ef9?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/cf8be6a6-158b-4c14-94b9-df0b39dc7ef9?api-version=2023-09-15&t=638327064252732201&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=bA3ly89UvKbpCAnIPPtJvU7w4fAelaFcCPYrwak4aghHyniGDh37fhJCIUvAoUuFpenP9Yguq0RfZqOwIKJHrufOVmHiJ6jW4j2fh7XdQjrAlyjkpTNvYi4mn4uFI3kk7_C7EurjPwlBdNeFyJCNvEbsmZiwOPeeDAdIkE0DWLwBuXGXDqi3EgfCrt9H9r3hqOWAjwKwugRZ4N1UNAgPV0cciHHoAp9hBXOuoJST_Av4IrxSzsmGfQmIf2Rjn_fGVY0JY_Za0MOa8WtWR092a-sRSfzUxNTpHy_5nKZu1wgXVYN84uPoBLVLF5VZ8PnSbtzHzkTcVMAePhV1sVByKw&h=qDInR2Fruw0rPfTGPvKOeTTndSWzCK3zmiz_u5JT0BE - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/cf8be6a6-158b-4c14-94b9-df0b39dc7ef9?api-version=2023-09-15&t=638327064252732201&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=bA3ly89UvKbpCAnIPPtJvU7w4fAelaFcCPYrwak4aghHyniGDh37fhJCIUvAoUuFpenP9Yguq0RfZqOwIKJHrufOVmHiJ6jW4j2fh7XdQjrAlyjkpTNvYi4mn4uFI3kk7_C7EurjPwlBdNeFyJCNvEbsmZiwOPeeDAdIkE0DWLwBuXGXDqi3EgfCrt9H9r3hqOWAjwKwugRZ4N1UNAgPV0cciHHoAp9hBXOuoJST_Av4IrxSzsmGfQmIf2Rjn_fGVY0JY_Za0MOa8WtWR092a-sRSfzUxNTpHy_5nKZu1wgXVYN84uPoBLVLF5VZ8PnSbtzHzkTcVMAePhV1sVByKw&h=qDInR2Fruw0rPfTGPvKOeTTndSWzCK3zmiz_u5JT0BE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"1NB5AA==","_self":"dbs/1NB5AA==/","_etag":"\"0000a601-0000-0200-0000-6527d67e0000\"","_colls":"colls/","_users":"users/","_ts":1697109630}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '483' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"1NB5AA==","_self":"dbs/1NB5AA==/","_etag":"\"0000a601-0000-0200-0000-6527d67e0000\"","_colls":"colls/","_users":"users/","_ts":1697109630}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '483' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - 6a76dde9-68f1-11ee-8c7d-9c7bef43f49d, Request URI: /apps/ec696499-9728-4f0a-92d2-0e1846ff74f3/services/0d2041c7-4391-4523-b318-66b252ad64d2/partitions/4d183218-a9da-4d04-92d5-a4dc91a79f96/replicas/133403640057111078s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T11:21:00.0941413Z, RequestEndTime: - 2023-10-12T11:21:00.0956247Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T11:20:03.8427361Z\\\",\\\"cpu\\\":0.261,\\\"memory\\\":646463920.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0342,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":888},{\\\"dateUtc\\\":\\\"2023-10-12T11:20:13.8527713Z\\\",\\\"cpu\\\":0.351,\\\"memory\\\":646457820.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0436,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":888},{\\\"dateUtc\\\":\\\"2023-10-12T11:20:23.8630303Z\\\",\\\"cpu\\\":0.115,\\\"memory\\\":646456412.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0544,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":885},{\\\"dateUtc\\\":\\\"2023-10-12T11:20:33.8737291Z\\\",\\\"cpu\\\":0.392,\\\"memory\\\":646433784.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0583,\\\"availableThreads\\\":32762,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":885},{\\\"dateUtc\\\":\\\"2023-10-12T11:20:43.8828673Z\\\",\\\"cpu\\\":0.361,\\\"memory\\\":646451352.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0327,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":886},{\\\"dateUtc\\\":\\\"2023-10-12T11:20:53.8933354Z\\\",\\\"cpu\\\":0.968,\\\"memory\\\":646460804.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0367,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":878}]}\\r\\nRequestStart: - 2023-10-12T11:21:00.0942753Z; ResponseTime: 2023-10-12T11:21:00.0956175Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11300/apps/ec696499-9728-4f0a-92d2-0e1846ff74f3/services/0d2041c7-4391-4523-b318-66b252ad64d2/partitions/4d183218-a9da-4d04-92d5-a4dc91a79f96/replicas/133403640057111078s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.709, ActivityId: - 6a76dde9-68f1-11ee-8c7d-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:20:59 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:20:59 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:20:59 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:20:59 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:21:00.0941839Z\\\", - \\\"durationInMs\\\": 0.0119},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:21:00.0941958Z\\\", \\\"durationInMs\\\": - 0.0121},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:21:00.0942079Z\\\", - \\\"durationInMs\\\": 0.0589},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:21:00.0942668Z\\\", \\\"durationInMs\\\": 0.9591},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:21:00.0952259Z\\\", - \\\"durationInMs\\\": 0.052},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:21:00.0952779Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:20:57.1645642Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:20:57.1645865Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:20:57.1652462Z\\\"},\\\"requestSizeInBytes\\\":490,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T11:21:00.0943404Z; - ResponseTime: 2023-10-12T11:21:00.0956247Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.4:11300/apps/ec696499-9728-4f0a-92d2-0e1846ff74f3/services/0d2041c7-4391-4523-b318-66b252ad64d2/partitions/4d183218-a9da-4d04-92d5-a4dc91a79f96/replicas/133403640057111077s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.67, ActivityId: - 6a76dde9-68f1-11ee-8c7d-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:20:59 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:20:59 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:20:59 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:20:59 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:21:00.0942773Z\\\", - \\\"durationInMs\\\": 0.0039},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:21:00.0942812Z\\\", \\\"durationInMs\\\": - 0.0015},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:21:00.0942827Z\\\", - \\\"durationInMs\\\": 0.0523},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:21:00.0943350Z\\\", \\\"durationInMs\\\": 0.8287},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:21:00.0951637Z\\\", - \\\"durationInMs\\\": 0.0649},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:21:00.0952286Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:20:59.5442008Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:20:59.5442331Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:20:59.5446188Z\\\"},\\\"requestSizeInBytes\\\":490,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000003/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7093' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - Content-Length: - - '265' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/616045bc-694f-4801-b568-e875c88f1357?api-version=2023-09-15&t=638327064616758074&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=BcqGB5ZvuGu8ik0iWTJCGJjxSc9-_NPPiNVyQ1oWoLP8nfq7Z9nOuUY_UtQD6It58UnAka08RXHzjSfYVRz5RX5fwQLTEHc7AmbYDnvXgO3eq2I_WEuMj10lq0o0rqK5-N37SiyY4hm7StdxHiQAM6r-wXfYTIrpEu-lbvjoAheQHYOPSC_IZHUzG_lQo136gXU86nISrzPzJJgOimRy4HEjil05qg_LY3eMDghueTn4NGUsgZAzQJ3u-uRmwwdRyiIInw4jmC2XtutVTkIs90bQLgN-fOTD3kbquh-O_0YEDzMcH08IhqTuIJgWyglPJ86JDxjSueD5oDRrDhQ7aQ&h=7jQg5dM6NOA02nBq-kiF7J6fOjSYS5CNGl00gAoDKyE - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:00 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/operationResults/616045bc-694f-4801-b568-e875c88f1357?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/616045bc-694f-4801-b568-e875c88f1357?api-version=2023-09-15&t=638327064616758074&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=BcqGB5ZvuGu8ik0iWTJCGJjxSc9-_NPPiNVyQ1oWoLP8nfq7Z9nOuUY_UtQD6It58UnAka08RXHzjSfYVRz5RX5fwQLTEHc7AmbYDnvXgO3eq2I_WEuMj10lq0o0rqK5-N37SiyY4hm7StdxHiQAM6r-wXfYTIrpEu-lbvjoAheQHYOPSC_IZHUzG_lQo136gXU86nISrzPzJJgOimRy4HEjil05qg_LY3eMDghueTn4NGUsgZAzQJ3u-uRmwwdRyiIInw4jmC2XtutVTkIs90bQLgN-fOTD3kbquh-O_0YEDzMcH08IhqTuIJgWyglPJ86JDxjSueD5oDRrDhQ7aQ&h=7jQg5dM6NOA02nBq-kiF7J6fOjSYS5CNGl00gAoDKyE - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/616045bc-694f-4801-b568-e875c88f1357?api-version=2023-09-15&t=638327064616758074&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=BcqGB5ZvuGu8ik0iWTJCGJjxSc9-_NPPiNVyQ1oWoLP8nfq7Z9nOuUY_UtQD6It58UnAka08RXHzjSfYVRz5RX5fwQLTEHc7AmbYDnvXgO3eq2I_WEuMj10lq0o0rqK5-N37SiyY4hm7StdxHiQAM6r-wXfYTIrpEu-lbvjoAheQHYOPSC_IZHUzG_lQo136gXU86nISrzPzJJgOimRy4HEjil05qg_LY3eMDghueTn4NGUsgZAzQJ3u-uRmwwdRyiIInw4jmC2XtutVTkIs90bQLgN-fOTD3kbquh-O_0YEDzMcH08IhqTuIJgWyglPJ86JDxjSueD5oDRrDhQ7aQ&h=7jQg5dM6NOA02nBq-kiF7J6fOjSYS5CNGl00gAoDKyE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1NB5AP+hflg=","_ts":1697109667,"_self":"dbs/1NB5AA==/colls/1NB5AP+hflg=/","_etag":"\"0000aa01-0000-0200-0000-6527d6a30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1138' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"1NB5AA==","_self":"dbs/1NB5AA==/","_etag":"\"0000a601-0000-0200-0000-6527d67e0000\"","_colls":"colls/","_users":"users/","_ts":1697109630}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '483' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1NB5AP+hflg=","_ts":1697109667,"_self":"dbs/1NB5AA==/colls/1NB5AP+hflg=/","_etag":"\"0000aa01-0000-0200-0000-6527d6a30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1138' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/bbfdba14-f60c-4e44-b5f0-e69dcd0b2a70?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/bbfdba14-f60c-4e44-b5f0-e69dcd0b2a70?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/bbfdba14-f60c-4e44-b5f0-e69dcd0b2a70?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/bbfdba14-f60c-4e44-b5f0-e69dcd0b2a70?api-version=2023-09-15-preview - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:21:41 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"1NB5AA==","_self":"dbs/1NB5AA==/","_etag":"\"0000a601-0000-0200-0000-6527d67e0000\"","_colls":"colls/","_users":"users/","_ts":1697109630}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '483' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1NB5AP+hflg=","_ts":1697109667,"_self":"dbs/1NB5AA==/colls/1NB5AP+hflg=/","_etag":"\"0000aa01-0000-0200-0000-6527d6a30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1138' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:09 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/3448aba9-cac3-489b-a8a1-50b7e0861b41?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/3448aba9-cac3-489b-a8a1-50b7e0861b41?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:10 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/3448aba9-cac3-489b-a8a1-50b7e0861b41?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/3448aba9-cac3-489b-a8a1-50b7e0861b41?api-version=2023-09-15-preview - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:22:16 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"1NB5AA==","_self":"dbs/1NB5AA==/","_etag":"\"0000a601-0000-0200-0000-6527d67e0000\"","_colls":"colls/","_users":"users/","_ts":1697109630}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '483' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1NB5AP+hflg=","_ts":1697109667,"_self":"dbs/1NB5AA==/colls/1NB5AP+hflg=/","_etag":"\"0000aa01-0000-0200-0000-6527d6a30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1138' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:43 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/8bbf3ce0-c8d7-4b1d-8658-f0bbc15bba37?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/8bbf3ce0-c8d7-4b1d-8658-f0bbc15bba37?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:43 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/8bbf3ce0-c8d7-4b1d-8658-f0bbc15bba37?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/retrieveContinuousBackupInformation/operationResults/8bbf3ce0-c8d7-4b1d-8658-f0bbc15bba37?api-version=2023-09-15-preview - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:22:50 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_restorable_commands.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_restorable_commands.yaml deleted file mode 100644 index 01e6b0c7610..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_restorable_commands.yaml +++ /dev/null @@ -1,1112 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_restorable_commands000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001","name":"cli_test_cosmosdb_gremlin_restorable_commands000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_restorable_commands","date":"2023-10-12T11:23:19Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '460' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:23:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '389' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:23:27.4275816Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"97c674c1-b03e-4dcb-97a7-128c684d9db2","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:23:27.4275816Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:23:27.4275816Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:23:27.4275816Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:23:27.4275816Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/195e17e1-6212-4ef7-ac72-7c0c83c18193?api-version=2023-09-15-preview&t=638327066089570086&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jQpv8YDHf1e53w1omWC3Nk9d43g_j-_cCU21Z4I00GavMvMm33KEoWhKD-VzdOL6xnBdGTXR4syEjhlbra6Es32yoCNJ6XeTW2XMNmOm4Ao4dJIxlNaYcH96zTcPeUSN8oj6BlbW8FTIEU3HZY6_vS45e-5qlJoom6TQZfWOdlErC6eyh1xpqYTGCUdaVkZB0IgRaFOaweveQ1KjrCyGvLSD8oP_bOwLgxZbd_BYbxQfScSsyTYpePctfZ2dB21injVfafODYhRk203jDZ32D3r9eV7Q6YzlQs8to2VjxPW-dV6qLkq-FPszy7BIlDNJlfQ9vJApx6d8WsONtOAfew&h=i1tDXjDWSP5j-2XpMosr-T_1REKZ4PlJiGTUdNCSJxE - cache-control: - - no-store, no-cache - content-length: - - '2485' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:28 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/195e17e1-6212-4ef7-ac72-7c0c83c18193?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/195e17e1-6212-4ef7-ac72-7c0c83c18193?api-version=2023-09-15-preview&t=638327066089570086&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jQpv8YDHf1e53w1omWC3Nk9d43g_j-_cCU21Z4I00GavMvMm33KEoWhKD-VzdOL6xnBdGTXR4syEjhlbra6Es32yoCNJ6XeTW2XMNmOm4Ao4dJIxlNaYcH96zTcPeUSN8oj6BlbW8FTIEU3HZY6_vS45e-5qlJoom6TQZfWOdlErC6eyh1xpqYTGCUdaVkZB0IgRaFOaweveQ1KjrCyGvLSD8oP_bOwLgxZbd_BYbxQfScSsyTYpePctfZ2dB21injVfafODYhRk203jDZ32D3r9eV7Q6YzlQs8to2VjxPW-dV6qLkq-FPszy7BIlDNJlfQ9vJApx6d8WsONtOAfew&h=i1tDXjDWSP5j-2XpMosr-T_1REKZ4PlJiGTUdNCSJxE - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/195e17e1-6212-4ef7-ac72-7c0c83c18193?api-version=2023-09-15-preview&t=638327066089570086&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jQpv8YDHf1e53w1omWC3Nk9d43g_j-_cCU21Z4I00GavMvMm33KEoWhKD-VzdOL6xnBdGTXR4syEjhlbra6Es32yoCNJ6XeTW2XMNmOm4Ao4dJIxlNaYcH96zTcPeUSN8oj6BlbW8FTIEU3HZY6_vS45e-5qlJoom6TQZfWOdlErC6eyh1xpqYTGCUdaVkZB0IgRaFOaweveQ1KjrCyGvLSD8oP_bOwLgxZbd_BYbxQfScSsyTYpePctfZ2dB21injVfafODYhRk203jDZ32D3r9eV7Q6YzlQs8to2VjxPW-dV6qLkq-FPszy7BIlDNJlfQ9vJApx6d8WsONtOAfew&h=i1tDXjDWSP5j-2XpMosr-T_1REKZ4PlJiGTUdNCSJxE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/195e17e1-6212-4ef7-ac72-7c0c83c18193?api-version=2023-09-15-preview&t=638327066089570086&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jQpv8YDHf1e53w1omWC3Nk9d43g_j-_cCU21Z4I00GavMvMm33KEoWhKD-VzdOL6xnBdGTXR4syEjhlbra6Es32yoCNJ6XeTW2XMNmOm4Ao4dJIxlNaYcH96zTcPeUSN8oj6BlbW8FTIEU3HZY6_vS45e-5qlJoom6TQZfWOdlErC6eyh1xpqYTGCUdaVkZB0IgRaFOaweveQ1KjrCyGvLSD8oP_bOwLgxZbd_BYbxQfScSsyTYpePctfZ2dB21injVfafODYhRk203jDZ32D3r9eV7Q6YzlQs8to2VjxPW-dV6qLkq-FPszy7BIlDNJlfQ9vJApx6d8WsONtOAfew&h=i1tDXjDWSP5j-2XpMosr-T_1REKZ4PlJiGTUdNCSJxE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/195e17e1-6212-4ef7-ac72-7c0c83c18193?api-version=2023-09-15-preview&t=638327066089570086&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jQpv8YDHf1e53w1omWC3Nk9d43g_j-_cCU21Z4I00GavMvMm33KEoWhKD-VzdOL6xnBdGTXR4syEjhlbra6Es32yoCNJ6XeTW2XMNmOm4Ao4dJIxlNaYcH96zTcPeUSN8oj6BlbW8FTIEU3HZY6_vS45e-5qlJoom6TQZfWOdlErC6eyh1xpqYTGCUdaVkZB0IgRaFOaweveQ1KjrCyGvLSD8oP_bOwLgxZbd_BYbxQfScSsyTYpePctfZ2dB21injVfafODYhRk203jDZ32D3r9eV7Q6YzlQs8to2VjxPW-dV6qLkq-FPszy7BIlDNJlfQ9vJApx6d8WsONtOAfew&h=i1tDXjDWSP5j-2XpMosr-T_1REKZ4PlJiGTUdNCSJxE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/195e17e1-6212-4ef7-ac72-7c0c83c18193?api-version=2023-09-15-preview&t=638327066089570086&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jQpv8YDHf1e53w1omWC3Nk9d43g_j-_cCU21Z4I00GavMvMm33KEoWhKD-VzdOL6xnBdGTXR4syEjhlbra6Es32yoCNJ6XeTW2XMNmOm4Ao4dJIxlNaYcH96zTcPeUSN8oj6BlbW8FTIEU3HZY6_vS45e-5qlJoom6TQZfWOdlErC6eyh1xpqYTGCUdaVkZB0IgRaFOaweveQ1KjrCyGvLSD8oP_bOwLgxZbd_BYbxQfScSsyTYpePctfZ2dB21injVfafODYhRk203jDZ32D3r9eV7Q6YzlQs8to2VjxPW-dV6qLkq-FPszy7BIlDNJlfQ9vJApx6d8WsONtOAfew&h=i1tDXjDWSP5j-2XpMosr-T_1REKZ4PlJiGTUdNCSJxE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/195e17e1-6212-4ef7-ac72-7c0c83c18193?api-version=2023-09-15-preview&t=638327066089570086&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jQpv8YDHf1e53w1omWC3Nk9d43g_j-_cCU21Z4I00GavMvMm33KEoWhKD-VzdOL6xnBdGTXR4syEjhlbra6Es32yoCNJ6XeTW2XMNmOm4Ao4dJIxlNaYcH96zTcPeUSN8oj6BlbW8FTIEU3HZY6_vS45e-5qlJoom6TQZfWOdlErC6eyh1xpqYTGCUdaVkZB0IgRaFOaweveQ1KjrCyGvLSD8oP_bOwLgxZbd_BYbxQfScSsyTYpePctfZ2dB21injVfafODYhRk203jDZ32D3r9eV7Q6YzlQs8to2VjxPW-dV6qLkq-FPszy7BIlDNJlfQ9vJApx6d8WsONtOAfew&h=i1tDXjDWSP5j-2XpMosr-T_1REKZ4PlJiGTUdNCSJxE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:25:23.4508234Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"97c674c1-b03e-4dcb-97a7-128c684d9db2","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2914' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:25:23.4508234Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"97c674c1-b03e-4dcb-97a7-128c684d9db2","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2914' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:25:23.4508234Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"97c674c1-b03e-4dcb-97a7-128c684d9db2","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:23.4508234Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2914' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/655d7a9d-5eaf-46e6-b153-34c4c224a3a0?api-version=2023-09-15&t=638327067662367067&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=szyw9Yoaqon0x6vb1WvjekqjKbElShX00m8_ENO8ZoUOrUsVXBDT1tsnbsRkPNQXCibOZIPYLtNGfhKbKCwNcC7bqlK8-Sn0_TepKbI2iV-GAsRiew6EM0fPJt8PTsCuTicbMr3mJqxBOJA7PIo-SfAkv3xEAh1ogfsPoEr7X1VpyJ_OlT9BdBG-H9qEr_c7ptJYHvkfmZVV2BCjCVUEfeExTVGID0o51Cly3JhALVHDbTHp3LQC9R1UyPANagUe_QasRIVzeqvcqRW_7GjQWwll8r17v6BAMVErr8JE_bWJJDwvqWCjvmw2SxcT2UgCt2b9V3cY1Ezl-cOIpK5m1Q&h=TVYISR742dTujXYJk72uCPDBLByMLm2ezQgojWGx218 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:05 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/operationResults/655d7a9d-5eaf-46e6-b153-34c4c224a3a0?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/655d7a9d-5eaf-46e6-b153-34c4c224a3a0?api-version=2023-09-15&t=638327067662367067&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=szyw9Yoaqon0x6vb1WvjekqjKbElShX00m8_ENO8ZoUOrUsVXBDT1tsnbsRkPNQXCibOZIPYLtNGfhKbKCwNcC7bqlK8-Sn0_TepKbI2iV-GAsRiew6EM0fPJt8PTsCuTicbMr3mJqxBOJA7PIo-SfAkv3xEAh1ogfsPoEr7X1VpyJ_OlT9BdBG-H9qEr_c7ptJYHvkfmZVV2BCjCVUEfeExTVGID0o51Cly3JhALVHDbTHp3LQC9R1UyPANagUe_QasRIVzeqvcqRW_7GjQWwll8r17v6BAMVErr8JE_bWJJDwvqWCjvmw2SxcT2UgCt2b9V3cY1Ezl-cOIpK5m1Q&h=TVYISR742dTujXYJk72uCPDBLByMLm2ezQgojWGx218 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/655d7a9d-5eaf-46e6-b153-34c4c224a3a0?api-version=2023-09-15&t=638327067662367067&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=szyw9Yoaqon0x6vb1WvjekqjKbElShX00m8_ENO8ZoUOrUsVXBDT1tsnbsRkPNQXCibOZIPYLtNGfhKbKCwNcC7bqlK8-Sn0_TepKbI2iV-GAsRiew6EM0fPJt8PTsCuTicbMr3mJqxBOJA7PIo-SfAkv3xEAh1ogfsPoEr7X1VpyJ_OlT9BdBG-H9qEr_c7ptJYHvkfmZVV2BCjCVUEfeExTVGID0o51Cly3JhALVHDbTHp3LQC9R1UyPANagUe_QasRIVzeqvcqRW_7GjQWwll8r17v6BAMVErr8JE_bWJJDwvqWCjvmw2SxcT2UgCt2b9V3cY1Ezl-cOIpK5m1Q&h=TVYISR742dTujXYJk72uCPDBLByMLm2ezQgojWGx218 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"DRI1AA==","_self":"dbs/DRI1AA==/","_etag":"\"0000f103-0000-0200-0000-6527d7d30000\"","_colls":"colls/","_users":"users/","_ts":1697109971}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '486' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - Content-Length: - - '265' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ce45270b-00e8-45e7-9998-4448addcd2b0?api-version=2023-09-15&t=638327068003239875&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UwWUcEJg_qcGQoWHxLYlqlziMNf_S471DjYvkEPXT1U7xuP_yNVRrVlnGNjWtQuXb7yYX337C6ZR_Q6X-1aZRY7ASLrBsRho_cI7mklqUsXu_OIB6L4nvimZuYyqjpofQhrd507ujfPzj9y3LLLgG_xsRlpWZfqeQB7atb8JHPOK0c_zQQ30KU8VfiYndE6sTe8G4NcwUv1NkwAKv6zRGsT2_ByveP3VpvzLkAaBSuuQyMnC0U5OwV_PQxYwUPXt9f6nRiSIUVwnztvRr7XmHyMlkksrCiWwB6r66uB7z8CFICrUupnS3Mqj6K2zAbzDlz7tDqSPCAodPumj8xueww&h=-tRGNSHH3LaP55zZLCRV9Ss5Ohkt79l1DYbxY61g3a0 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:39 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002/operationResults/ce45270b-00e8-45e7-9998-4448addcd2b0?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ce45270b-00e8-45e7-9998-4448addcd2b0?api-version=2023-09-15&t=638327068003239875&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UwWUcEJg_qcGQoWHxLYlqlziMNf_S471DjYvkEPXT1U7xuP_yNVRrVlnGNjWtQuXb7yYX337C6ZR_Q6X-1aZRY7ASLrBsRho_cI7mklqUsXu_OIB6L4nvimZuYyqjpofQhrd507ujfPzj9y3LLLgG_xsRlpWZfqeQB7atb8JHPOK0c_zQQ30KU8VfiYndE6sTe8G4NcwUv1NkwAKv6zRGsT2_ByveP3VpvzLkAaBSuuQyMnC0U5OwV_PQxYwUPXt9f6nRiSIUVwnztvRr7XmHyMlkksrCiWwB6r66uB7z8CFICrUupnS3Mqj6K2zAbzDlz7tDqSPCAodPumj8xueww&h=-tRGNSHH3LaP55zZLCRV9Ss5Ohkt79l1DYbxY61g3a0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ce45270b-00e8-45e7-9998-4448addcd2b0?api-version=2023-09-15&t=638327068003239875&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UwWUcEJg_qcGQoWHxLYlqlziMNf_S471DjYvkEPXT1U7xuP_yNVRrVlnGNjWtQuXb7yYX337C6ZR_Q6X-1aZRY7ASLrBsRho_cI7mklqUsXu_OIB6L4nvimZuYyqjpofQhrd507ujfPzj9y3LLLgG_xsRlpWZfqeQB7atb8JHPOK0c_zQQ30KU8VfiYndE6sTe8G4NcwUv1NkwAKv6zRGsT2_ByveP3VpvzLkAaBSuuQyMnC0U5OwV_PQxYwUPXt9f6nRiSIUVwnztvRr7XmHyMlkksrCiWwB6r66uB7z8CFICrUupnS3Mqj6K2zAbzDlz7tDqSPCAodPumj8xueww&h=-tRGNSHH3LaP55zZLCRV9Ss5Ohkt79l1DYbxY61g3a0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin graph create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000003/graphs/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"DRI1ANTOV9I=","_ts":1697110006,"_self":"dbs/DRI1AA==/colls/DRI1ANTOV9I=/","_etag":"\"0000f403-0000-0200-0000-6527d7f60000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1141' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account show - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2?api-version=2023-09-15-preview - response: - body: - string: '{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East US - 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli000004","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","oldestRestorableTime":"2023-10-12T11:25:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z"}]}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '625' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin restorable-database list - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2/restorableGremlinDatabases?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2/restorableGremlinDatabases/1cf65b96-e792-478f-b15a-548b56953189","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases","name":"1cf65b96-e792-478f-b15a-548b56953189","properties":{"resource":{"_rid":"L5e0WQAAAA==","eventTimestamp":"2023-10-12T11:26:11Z","ownerId":"cli000003","ownerResourceId":"DRI1AA==","operationType":"Create","CanUndelete":"invalid"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '579' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin restorable-graph list - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id --database-rid - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2/restorableGraphs?api-version=2023-09-15-preview&restorableGremlinDatabaseRid=DRI1AA%3D%3D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2/restorableGraphs/12c999fa-c15e-4a0d-b2ea-d4a5db6c7ccb","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs","name":"12c999fa-c15e-4a0d-b2ea-d4a5db6c7ccb","properties":{"resource":{"_rid":"x+elPwAAAA==","eventTimestamp":"2023-10-12T11:26:46Z","ownerId":"cli000002","ownerResourceId":"DRI1ANTOV9I=","operationType":"Create","CanUndelete":"invalid"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '563' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb gremlin restorable-resource list - Connection: - - keep-alive - ParameterSetName: - - --restore-location -l --instance-id --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2/restorableGremlinResources?api-version=2023-09-15-preview&restoreLocation=eastus2&restoreTimestampInUtc=2023-10-12T11%3A27%3A24%2B00%3A00 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2/restorableGremlinResources/cli000003","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinResources","name":"cli000003","databaseName":"cli000003","graphNames":["cli000002"]}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '389' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_materializedview.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_materializedview.yaml deleted file mode 100644 index af900b95b45..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_materializedview.yaml +++ /dev/null @@ -1,2326 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/abpai-resources?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources","name":"abpai-resources","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '228' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:28:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "enableMaterializedViews": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '279' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813","name":"mv-test-38129749813","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:28:07.2652745Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"58c060c5-4342-4809-94b4-82cadc706856","databaseAccountOfferType":"Standard","enableMaterializedViews":true,"enableFullFidelityChangeFeed":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:28:07.2652745Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:28:07.2652745Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:28:07.2652745Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:28:07.2652745Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview&t=638327032891047895&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hwBqVSmXCCsgx4zlD894FNR5O3Z5DdEJCbsqEe4hjCFFeoVjojbpGCfE6U691H4_bYt4aT52F6ugcBuy3h-_-BXIqEuWTeuPXXXRkbvHEkezDPvJZjVd4M3Vumt113NzkpK7sfD9cDkj6Vr62psfPlWQMHnfz_NurX82wKg1Vr2y_d7bRZMrQj-yO1fyxc6FVlDJiLAzYw2vUCr0zxAg2-C2SYMSbdW7Bc99_0tkXtkdtc2qXROOK9pMsqiSfUU6U1kgnG5q2AEJKi5SDv0I324hEQvAAdmpPRtN4Rsz0nFt_wCux_SBOKXHgs2XYgA8uqqbD7AkTVB3apWnS7F6rA&h=t5gQfuV_DAmlUs4kNg4iMljswATQLE-sJf-pP6j500M - cache-control: - - no-store, no-cache - content-length: - - '2507' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:28:08 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/operationResults/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview&t=638327032891047895&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hwBqVSmXCCsgx4zlD894FNR5O3Z5DdEJCbsqEe4hjCFFeoVjojbpGCfE6U691H4_bYt4aT52F6ugcBuy3h-_-BXIqEuWTeuPXXXRkbvHEkezDPvJZjVd4M3Vumt113NzkpK7sfD9cDkj6Vr62psfPlWQMHnfz_NurX82wKg1Vr2y_d7bRZMrQj-yO1fyxc6FVlDJiLAzYw2vUCr0zxAg2-C2SYMSbdW7Bc99_0tkXtkdtc2qXROOK9pMsqiSfUU6U1kgnG5q2AEJKi5SDv0I324hEQvAAdmpPRtN4Rsz0nFt_wCux_SBOKXHgs2XYgA8uqqbD7AkTVB3apWnS7F6rA&h=t5gQfuV_DAmlUs4kNg4iMljswATQLE-sJf-pP6j500M - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:28:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview&t=638327032891047895&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hwBqVSmXCCsgx4zlD894FNR5O3Z5DdEJCbsqEe4hjCFFeoVjojbpGCfE6U691H4_bYt4aT52F6ugcBuy3h-_-BXIqEuWTeuPXXXRkbvHEkezDPvJZjVd4M3Vumt113NzkpK7sfD9cDkj6Vr62psfPlWQMHnfz_NurX82wKg1Vr2y_d7bRZMrQj-yO1fyxc6FVlDJiLAzYw2vUCr0zxAg2-C2SYMSbdW7Bc99_0tkXtkdtc2qXROOK9pMsqiSfUU6U1kgnG5q2AEJKi5SDv0I324hEQvAAdmpPRtN4Rsz0nFt_wCux_SBOKXHgs2XYgA8uqqbD7AkTVB3apWnS7F6rA&h=t5gQfuV_DAmlUs4kNg4iMljswATQLE-sJf-pP6j500M - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:28:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview&t=638327032891047895&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hwBqVSmXCCsgx4zlD894FNR5O3Z5DdEJCbsqEe4hjCFFeoVjojbpGCfE6U691H4_bYt4aT52F6ugcBuy3h-_-BXIqEuWTeuPXXXRkbvHEkezDPvJZjVd4M3Vumt113NzkpK7sfD9cDkj6Vr62psfPlWQMHnfz_NurX82wKg1Vr2y_d7bRZMrQj-yO1fyxc6FVlDJiLAzYw2vUCr0zxAg2-C2SYMSbdW7Bc99_0tkXtkdtc2qXROOK9pMsqiSfUU6U1kgnG5q2AEJKi5SDv0I324hEQvAAdmpPRtN4Rsz0nFt_wCux_SBOKXHgs2XYgA8uqqbD7AkTVB3apWnS7F6rA&h=t5gQfuV_DAmlUs4kNg4iMljswATQLE-sJf-pP6j500M - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:29:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview&t=638327032891047895&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hwBqVSmXCCsgx4zlD894FNR5O3Z5DdEJCbsqEe4hjCFFeoVjojbpGCfE6U691H4_bYt4aT52F6ugcBuy3h-_-BXIqEuWTeuPXXXRkbvHEkezDPvJZjVd4M3Vumt113NzkpK7sfD9cDkj6Vr62psfPlWQMHnfz_NurX82wKg1Vr2y_d7bRZMrQj-yO1fyxc6FVlDJiLAzYw2vUCr0zxAg2-C2SYMSbdW7Bc99_0tkXtkdtc2qXROOK9pMsqiSfUU6U1kgnG5q2AEJKi5SDv0I324hEQvAAdmpPRtN4Rsz0nFt_wCux_SBOKXHgs2XYgA8uqqbD7AkTVB3apWnS7F6rA&h=t5gQfuV_DAmlUs4kNg4iMljswATQLE-sJf-pP6j500M - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:29:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview&t=638327032891047895&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hwBqVSmXCCsgx4zlD894FNR5O3Z5DdEJCbsqEe4hjCFFeoVjojbpGCfE6U691H4_bYt4aT52F6ugcBuy3h-_-BXIqEuWTeuPXXXRkbvHEkezDPvJZjVd4M3Vumt113NzkpK7sfD9cDkj6Vr62psfPlWQMHnfz_NurX82wKg1Vr2y_d7bRZMrQj-yO1fyxc6FVlDJiLAzYw2vUCr0zxAg2-C2SYMSbdW7Bc99_0tkXtkdtc2qXROOK9pMsqiSfUU6U1kgnG5q2AEJKi5SDv0I324hEQvAAdmpPRtN4Rsz0nFt_wCux_SBOKXHgs2XYgA8uqqbD7AkTVB3apWnS7F6rA&h=t5gQfuV_DAmlUs4kNg4iMljswATQLE-sJf-pP6j500M - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:30:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview&t=638327032891047895&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hwBqVSmXCCsgx4zlD894FNR5O3Z5DdEJCbsqEe4hjCFFeoVjojbpGCfE6U691H4_bYt4aT52F6ugcBuy3h-_-BXIqEuWTeuPXXXRkbvHEkezDPvJZjVd4M3Vumt113NzkpK7sfD9cDkj6Vr62psfPlWQMHnfz_NurX82wKg1Vr2y_d7bRZMrQj-yO1fyxc6FVlDJiLAzYw2vUCr0zxAg2-C2SYMSbdW7Bc99_0tkXtkdtc2qXROOK9pMsqiSfUU6U1kgnG5q2AEJKi5SDv0I324hEQvAAdmpPRtN4Rsz0nFt_wCux_SBOKXHgs2XYgA8uqqbD7AkTVB3apWnS7F6rA&h=t5gQfuV_DAmlUs4kNg4iMljswATQLE-sJf-pP6j500M - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:30:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/1700c8cc-4013-479b-bc6f-b183c284e636?api-version=2023-09-15-preview&t=638327032891047895&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hwBqVSmXCCsgx4zlD894FNR5O3Z5DdEJCbsqEe4hjCFFeoVjojbpGCfE6U691H4_bYt4aT52F6ugcBuy3h-_-BXIqEuWTeuPXXXRkbvHEkezDPvJZjVd4M3Vumt113NzkpK7sfD9cDkj6Vr62psfPlWQMHnfz_NurX82wKg1Vr2y_d7bRZMrQj-yO1fyxc6FVlDJiLAzYw2vUCr0zxAg2-C2SYMSbdW7Bc99_0tkXtkdtc2qXROOK9pMsqiSfUU6U1kgnG5q2AEJKi5SDv0I324hEQvAAdmpPRtN4Rsz0nFt_wCux_SBOKXHgs2XYgA8uqqbD7AkTVB3apWnS7F6rA&h=t5gQfuV_DAmlUs4kNg4iMljswATQLE-sJf-pP6j500M - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813","name":"mv-test-38129749813","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:30:17.3842398Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://mv-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://mv-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"58c060c5-4342-4809-94b4-82cadc706856","databaseAccountOfferType":"Standard","enableMaterializedViews":true,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2914' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-materialized-views - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813","name":"mv-test-38129749813","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:30:17.3842398Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://mv-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://mv-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"58c060c5-4342-4809-94b4-82cadc706856","databaseAccountOfferType":"Standard","enableMaterializedViews":true,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2914' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813","name":"mv-test-38129749813","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:30:17.3842398Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://mv-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://mv-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"58c060c5-4342-4809-94b4-82cadc706856","databaseAccountOfferType":"Standard","enableMaterializedViews":true,"enableFullFidelityChangeFeed":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","documentEndpoint":"https://mv-test-38129749813-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"mv-test-38129749813-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:30:17.3842398Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2914' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/87cb8284-591b-48d7-9fe2-efb11edaab99?api-version=2023-09-15&t=638327034767043384&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=xcol8iy2-RNf0y44K6om40fILXQvIPFStoZVqgNuF9n17ukEP6aAGP-K6wzLJl8qfxwSiW5WdMUsiciDg57Qg29vgwOwQxof3yAgskna4xWkOolRW4a1MQnpDtVUfn_h1KMv373yLl_n-fpf3gZTOmNltNVSlN3xJvfoiY1wZRIAyeEVmDQ-JH_3ZFZrcOlkLvJXCzYIfuFmCqIfU4GUZ0lxykbs7CiGIUftJhe-fkgOp7YUqWnuTQOaeSL2SI01-N-CqSl6Hecm4UUGKi08B4qOOiOdN-xfgvCtOM1XZunoywUMnM9F4lDwEtoPboyDzXz2Gt5M4vb5LcxlxLuFMw&h=77UGpv8BgtCv3h93Rd4lMhaw0pAAE1-L7uXS0UnsRzQ - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:16 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/operationResults/87cb8284-591b-48d7-9fe2-efb11edaab99?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/87cb8284-591b-48d7-9fe2-efb11edaab99?api-version=2023-09-15&t=638327034767043384&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=xcol8iy2-RNf0y44K6om40fILXQvIPFStoZVqgNuF9n17ukEP6aAGP-K6wzLJl8qfxwSiW5WdMUsiciDg57Qg29vgwOwQxof3yAgskna4xWkOolRW4a1MQnpDtVUfn_h1KMv373yLl_n-fpf3gZTOmNltNVSlN3xJvfoiY1wZRIAyeEVmDQ-JH_3ZFZrcOlkLvJXCzYIfuFmCqIfU4GUZ0lxykbs7CiGIUftJhe-fkgOp7YUqWnuTQOaeSL2SI01-N-CqSl6Hecm4UUGKi08B4qOOiOdN-xfgvCtOM1XZunoywUMnM9F4lDwEtoPboyDzXz2Gt5M4vb5LcxlxLuFMw&h=77UGpv8BgtCv3h93Rd4lMhaw0pAAE1-L7uXS0UnsRzQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/87cb8284-591b-48d7-9fe2-efb11edaab99?api-version=2023-09-15&t=638327034767043384&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=xcol8iy2-RNf0y44K6om40fILXQvIPFStoZVqgNuF9n17ukEP6aAGP-K6wzLJl8qfxwSiW5WdMUsiciDg57Qg29vgwOwQxof3yAgskna4xWkOolRW4a1MQnpDtVUfn_h1KMv373yLl_n-fpf3gZTOmNltNVSlN3xJvfoiY1wZRIAyeEVmDQ-JH_3ZFZrcOlkLvJXCzYIfuFmCqIfU4GUZ0lxykbs7CiGIUftJhe-fkgOp7YUqWnuTQOaeSL2SI01-N-CqSl6Hecm4UUGKi08B4qOOiOdN-xfgvCtOM1XZunoywUMnM9F4lDwEtoPboyDzXz2Gt5M4vb5LcxlxLuFMw&h=77UGpv8BgtCv3h93Rd4lMhaw0pAAE1-L7uXS0UnsRzQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"7YZqAA==","_self":"dbs/7YZqAA==/","_etag":"\"00009606-0000-0800-0000-6527caf90000\"","_colls":"colls/","_users":"users/","_ts":1697106681}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '452' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "src1", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '260' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/src1?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b9163d0e-6f7d-4c25-af26-8aab3bb03be2?api-version=2023-09-15-preview&t=638327035094735529&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=n3SD6Zd5EiX-UrW-aLRfSfhQqQX1yPfzA0yTZbXNxAt1bm3zvJrexsJuc88jxMm_jTPJB_WogMLyFC9PJ2BMUwu-3PQpwOBRGnfChXEskx5uFeMlIbQ70EXyS_KIaNF017rZBuwN4ymYwjCAtmqNve3Mc78ihzCce-BvBaQk3H9A3gXSKfyZp3ht-gbiK-Nu-gP637kH1yUMpe5m9UD0bY34GphjIDicjtpmLs-FqqTsFFrYCwGvSWk62c2q26IhBhZkj8fxfHqThXz4PwyqTdZpwRvUBHF7ci53CVh0TtEH6l6BxTUCt5Qq7VPqQaqsY3_oIqS1MxtmW7blgb6uyw&h=HsXPM6kscAnIAVF9sR4_u_5ZrQlNgGhXg-D5ALDlV70 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:49 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/src1/operationResults/b9163d0e-6f7d-4c25-af26-8aab3bb03be2?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b9163d0e-6f7d-4c25-af26-8aab3bb03be2?api-version=2023-09-15-preview&t=638327035094735529&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=n3SD6Zd5EiX-UrW-aLRfSfhQqQX1yPfzA0yTZbXNxAt1bm3zvJrexsJuc88jxMm_jTPJB_WogMLyFC9PJ2BMUwu-3PQpwOBRGnfChXEskx5uFeMlIbQ70EXyS_KIaNF017rZBuwN4ymYwjCAtmqNve3Mc78ihzCce-BvBaQk3H9A3gXSKfyZp3ht-gbiK-Nu-gP637kH1yUMpe5m9UD0bY34GphjIDicjtpmLs-FqqTsFFrYCwGvSWk62c2q26IhBhZkj8fxfHqThXz4PwyqTdZpwRvUBHF7ci53CVh0TtEH6l6BxTUCt5Qq7VPqQaqsY3_oIqS1MxtmW7blgb6uyw&h=HsXPM6kscAnIAVF9sR4_u_5ZrQlNgGhXg-D5ALDlV70 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:31:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b9163d0e-6f7d-4c25-af26-8aab3bb03be2?api-version=2023-09-15-preview&t=638327035094735529&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=n3SD6Zd5EiX-UrW-aLRfSfhQqQX1yPfzA0yTZbXNxAt1bm3zvJrexsJuc88jxMm_jTPJB_WogMLyFC9PJ2BMUwu-3PQpwOBRGnfChXEskx5uFeMlIbQ70EXyS_KIaNF017rZBuwN4ymYwjCAtmqNve3Mc78ihzCce-BvBaQk3H9A3gXSKfyZp3ht-gbiK-Nu-gP637kH1yUMpe5m9UD0bY34GphjIDicjtpmLs-FqqTsFFrYCwGvSWk62c2q26IhBhZkj8fxfHqThXz4PwyqTdZpwRvUBHF7ci53CVh0TtEH6l6BxTUCt5Qq7VPqQaqsY3_oIqS1MxtmW7blgb6uyw&h=HsXPM6kscAnIAVF9sR4_u_5ZrQlNgGhXg-D5ALDlV70 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:32:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/src1?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/src1","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"src1","properties":{"resource":{"id":"src1","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"7YZqAMpnWPY=","_ts":1697106715,"_self":"dbs/7YZqAA==/colls/7YZqAMpnWPY=/","_etag":"\"00009806-0000-0800-0000-6527cb1b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1074' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:32:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "mv1", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/mvpk"], "kind": "Hash"}, - "materializedViewDefinition": {"sourceCollectionId": "src1", "definition": "select - * from ROOT r"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '361' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --materialized-view-definition - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/mv1?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53ad372b-3a2f-430c-9c23-c83abfa1a516?api-version=2023-09-15-preview&t=638327035442080460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TFs1VyQvwUhc6pbzTXDA-fZSp7Bjtuy8vM2a_CNGH6LpLau51_oJ78pkhjhChWOdkfY6Mx5ZIvBi0lTg1LL1-4A80fcPb2juV5i4icub3OZ6DRsAmtcYqHqGFmoSyPm8EJuBhZHhR8tcNeKFwzyBd1tZZd7FNvQhU_2ikELGd8NPCvSlw_HXS1e4HmVymheJHVJ2tC7pOsHaclU54Dzx43DUq3jNnLI9FSGCraZOBWx7xKpQCRzFehDE5yz31vBhHWtqTEahQHvFRjDj6tWGQ6wWAMWyO9TED1-YcPpBseuy_slgw1G202Yv0RgkKMiCgfQTCouawlD_HZub1M5vgA&h=70hpf1JmJsfrdODz5ZRoNStFth_BoeAetk3U-UX2puY - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:32:23 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/mv1/operationResults/53ad372b-3a2f-430c-9c23-c83abfa1a516?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --materialized-view-definition - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53ad372b-3a2f-430c-9c23-c83abfa1a516?api-version=2023-09-15-preview&t=638327035442080460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TFs1VyQvwUhc6pbzTXDA-fZSp7Bjtuy8vM2a_CNGH6LpLau51_oJ78pkhjhChWOdkfY6Mx5ZIvBi0lTg1LL1-4A80fcPb2juV5i4icub3OZ6DRsAmtcYqHqGFmoSyPm8EJuBhZHhR8tcNeKFwzyBd1tZZd7FNvQhU_2ikELGd8NPCvSlw_HXS1e4HmVymheJHVJ2tC7pOsHaclU54Dzx43DUq3jNnLI9FSGCraZOBWx7xKpQCRzFehDE5yz31vBhHWtqTEahQHvFRjDj6tWGQ6wWAMWyO9TED1-YcPpBseuy_slgw1G202Yv0RgkKMiCgfQTCouawlD_HZub1M5vgA&h=70hpf1JmJsfrdODz5ZRoNStFth_BoeAetk3U-UX2puY - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:32:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --materialized-view-definition - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53ad372b-3a2f-430c-9c23-c83abfa1a516?api-version=2023-09-15-preview&t=638327035442080460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TFs1VyQvwUhc6pbzTXDA-fZSp7Bjtuy8vM2a_CNGH6LpLau51_oJ78pkhjhChWOdkfY6Mx5ZIvBi0lTg1LL1-4A80fcPb2juV5i4icub3OZ6DRsAmtcYqHqGFmoSyPm8EJuBhZHhR8tcNeKFwzyBd1tZZd7FNvQhU_2ikELGd8NPCvSlw_HXS1e4HmVymheJHVJ2tC7pOsHaclU54Dzx43DUq3jNnLI9FSGCraZOBWx7xKpQCRzFehDE5yz31vBhHWtqTEahQHvFRjDj6tWGQ6wWAMWyO9TED1-YcPpBseuy_slgw1G202Yv0RgkKMiCgfQTCouawlD_HZub1M5vgA&h=70hpf1JmJsfrdODz5ZRoNStFth_BoeAetk3U-UX2puY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:32:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --materialized-view-definition - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/mv1?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/mv1","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"mv1","properties":{"resource":{"id":"mv1","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/mvpk"],"kind":"Hash"},"defaultTtl":-1,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"materializedViewDefinition":{"sourceCollectionRid":"7YZqAMpnWPY=","sourceCollectionId":"src1","definition":"select - * from ROOT r"},"_rid":"7YZqAKMFT64=","_ts":1697106749,"_self":"dbs/7YZqAA==/colls/7YZqAKMFT64=/","_etag":"\"00009d06-0000-0800-0000-6527cb3d0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1221' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:32:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "mv2", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/mvpk"], "kind": "Hash"}, - "materializedViewDefinition": {"sourceCollectionId": "src1", "definition": "select - * from root"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '359' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --materialized-view-definition - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/mv2?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/843caf8c-b9fa-4a4d-8219-22acdd85bbe4?api-version=2023-09-15-preview&t=638327035789153541&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=n9fNYU0OeI3g_m7Y0sCghwbduZMLJOvG7sGsqqRtrehQ4lsnpq4Go0vvTvaDqjz9j0WcFHr8XOB1PMhNj7bQ19043VP3hh9YH89rVPvHtCJft0JQeoGXhmHafkgVI-cC9DAkSEEoSkWJzhqVy__l6Zr2iTJU0wrpOEzi6_IUwm5A6k5i1n9PckeuafwIDKsDipMTaPASgQAU7_sleNH-E3OcGrlGbhi30UdGgiJDda4le5CbAN60fIqXKBv4YVq3BgIMc4D9TUgAlZf_upMvlNTb59KE8CQcy5s38o4c4PcbHuVQ6tKh_MHkQQhlUfB5pcfc50_P_vtsl3UwV4IWPw&h=e_c4rNgAPYlTSHdRdlvIcltDFi4Ii5UiWsMgsmFv5us - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:32:58 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/mv2/operationResults/843caf8c-b9fa-4a4d-8219-22acdd85bbe4?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --materialized-view-definition - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/843caf8c-b9fa-4a4d-8219-22acdd85bbe4?api-version=2023-09-15-preview&t=638327035789153541&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=n9fNYU0OeI3g_m7Y0sCghwbduZMLJOvG7sGsqqRtrehQ4lsnpq4Go0vvTvaDqjz9j0WcFHr8XOB1PMhNj7bQ19043VP3hh9YH89rVPvHtCJft0JQeoGXhmHafkgVI-cC9DAkSEEoSkWJzhqVy__l6Zr2iTJU0wrpOEzi6_IUwm5A6k5i1n9PckeuafwIDKsDipMTaPASgQAU7_sleNH-E3OcGrlGbhi30UdGgiJDda4le5CbAN60fIqXKBv4YVq3BgIMc4D9TUgAlZf_upMvlNTb59KE8CQcy5s38o4c4PcbHuVQ6tKh_MHkQQhlUfB5pcfc50_P_vtsl3UwV4IWPw&h=e_c4rNgAPYlTSHdRdlvIcltDFi4Ii5UiWsMgsmFv5us - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:32:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --materialized-view-definition - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/843caf8c-b9fa-4a4d-8219-22acdd85bbe4?api-version=2023-09-15-preview&t=638327035789153541&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=n9fNYU0OeI3g_m7Y0sCghwbduZMLJOvG7sGsqqRtrehQ4lsnpq4Go0vvTvaDqjz9j0WcFHr8XOB1PMhNj7bQ19043VP3hh9YH89rVPvHtCJft0JQeoGXhmHafkgVI-cC9DAkSEEoSkWJzhqVy__l6Zr2iTJU0wrpOEzi6_IUwm5A6k5i1n9PckeuafwIDKsDipMTaPASgQAU7_sleNH-E3OcGrlGbhi30UdGgiJDda4le5CbAN60fIqXKBv4YVq3BgIMc4D9TUgAlZf_upMvlNTb59KE8CQcy5s38o4c4PcbHuVQ6tKh_MHkQQhlUfB5pcfc50_P_vtsl3UwV4IWPw&h=e_c4rNgAPYlTSHdRdlvIcltDFi4Ii5UiWsMgsmFv5us - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:33:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --materialized-view-definition - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/mv2?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813/sqlDatabases/cli000002/containers/mv2","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"mv2","properties":{"resource":{"id":"mv2","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/mvpk"],"kind":"Hash"},"defaultTtl":-1,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"materializedViewDefinition":{"sourceCollectionRid":"7YZqAMpnWPY=","sourceCollectionId":"src1","definition":"select - * from root"},"_rid":"7YZqAMGndCY=","_ts":1697106784,"_self":"dbs/7YZqAA==/colls/7YZqAMGndCY=/","_etag":"\"0000a406-0000-0800-0000-6527cb600000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1219' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:33:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abpai-resources/providers/Microsoft.DocumentDB/databaseAccounts/mv-test-38129749813?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:33:32 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationResults/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036129009751&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=V8vPsdX0hkJmEB6CBt1MJHh83bvvaGhCHxpXa7akKS5I3B0iPv5mAhwllyxBe41z49FpZLjCADZv6Ah-eW35tBspdtl9vvdr4wkVMdEUR8W-T759ekoebnHDG56aO7S7wPHLFtULKsJjWxcCme1DpRiJfpIoyeQykfpul5Y94LwWlDGQWlmZzu8w-_u4e-ZQGRJEyTH6CdWnhS0wV14i74FtxHNAsOCBsYBI_S0J1U-bSus1yTCqVIChwpcQ25ee4YCweXffLnzD-kxTLB3AlBgwaqTaBi72gZdEMt7zuFRTD6M3Im7sih4ok8pGTxCJWzHGYt9-oJbvVw6lsXPtXw&h=KT-oyVSECR22gxtgxhnXkuRWMXR5xzlCkirHgZzI20I - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:33:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:34:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:34:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:35:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:35:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:36:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:36:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:37:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:37:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:38:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:38:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:39:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:39:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:40:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:40:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:41:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:41:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:42:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:42:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/4f5d9dab-b539-470f-b128-ff73c2272345?api-version=2023-09-15&t=638327036128853481&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gCHFcczJiga5XB03wKhhQ9j_2MqjaZYrHthz-de9tHtdOX95pATxXqoqzx86ixSVKuEYjmR5T5vHAwLh-_FazeEBEDEk1Dpo5IiwClPaZyUBI7Ub2rD4SjqSdBNRohImIMCHzc_bfIvBWNn0k-Ys-g3MhJbGepoTbqfNIjjw96WSGrCHboUHis3A8bqCXm7hekVVf-xiKuG3x0HQodMvqGfJlMLSbZLVZgzearzuMx52oj4Z0Aa9-y6qaDLvDxFwsg6syt8OUgXb9p0tKkgK5_qRcJHsCbXn0THufK2opHckq4ZRXnbX5QyDWQarmpty3N5ltVJhCBkIB9xrrwXKfA&h=3m7Fu1y3B1-Ygr237ehH4SN3YgEiHBdYxfkZjWzxnzs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:43:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongo_role.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongo_role.yaml deleted file mode 100644 index 7f13d5779f0..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongo_role.yaml +++ /dev/null @@ -1,2938 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_role000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001","name":"cli_test_cosmosdb_mongodb_role000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongo_role","date":"2023-10-12T11:55:09Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '413' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:55:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "kind": "MongoDB", "properties": {"locations": - [{"locationName": "westus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableMongoRoleBasedAccessControl"}], - "apiProperties": {}, "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '302' - Content-Type: - - application/json - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:55:18.464188Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"ae2ced88-b42d-4c6a-987d-7732511b514e","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongoRoleBasedAccessControl"},{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:55:18.464188Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:55:18.464188Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:55:18.464188Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:55:18.464188Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b481aea9-f8db-4846-86a8-bf8c5593a088?api-version=2023-09-15-preview&t=638327085208125854&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cssX6vUth8_Z-9oY_c-e5yfG5xvQH4F9gXzkboSLXxcZ4N3IpOhUjFJfqLTE_FmEzAcWjihx-uYKzcIv4GAhY2q9YoGHP_Rmua7Ped17cVW5RDt29rG101ysQZC-bVIMHOylOM4e230wt5Pt4dt0HBwFKy_K7CoVcj5Bz5YXGblDp5fOFoRNcpr2gWVpeisZMXwOaA9jL5jk6w2hhxYLPUADIXm_TdLUDhTJFjfHAp00TOyZEA9EwFWJcgxXgZzYfn8CcfTDow0dZeDyrhgrGL_G8BHtR2IfUP7-Yb5FQKJyxNwDKd9cmyXyd_qjwakTza_CfrAPRl0yLtHMdAGy3Q&h=idDRtziHuBfLxt47lal-No-Jnso9_wpm8iACyZuSaKU - cache-control: - - no-store, no-cache - content-length: - - '2583' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:20 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/b481aea9-f8db-4846-86a8-bf8c5593a088?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b481aea9-f8db-4846-86a8-bf8c5593a088?api-version=2023-09-15-preview&t=638327085208125854&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cssX6vUth8_Z-9oY_c-e5yfG5xvQH4F9gXzkboSLXxcZ4N3IpOhUjFJfqLTE_FmEzAcWjihx-uYKzcIv4GAhY2q9YoGHP_Rmua7Ped17cVW5RDt29rG101ysQZC-bVIMHOylOM4e230wt5Pt4dt0HBwFKy_K7CoVcj5Bz5YXGblDp5fOFoRNcpr2gWVpeisZMXwOaA9jL5jk6w2hhxYLPUADIXm_TdLUDhTJFjfHAp00TOyZEA9EwFWJcgxXgZzYfn8CcfTDow0dZeDyrhgrGL_G8BHtR2IfUP7-Yb5FQKJyxNwDKd9cmyXyd_qjwakTza_CfrAPRl0yLtHMdAGy3Q&h=idDRtziHuBfLxt47lal-No-Jnso9_wpm8iACyZuSaKU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b481aea9-f8db-4846-86a8-bf8c5593a088?api-version=2023-09-15-preview&t=638327085208125854&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cssX6vUth8_Z-9oY_c-e5yfG5xvQH4F9gXzkboSLXxcZ4N3IpOhUjFJfqLTE_FmEzAcWjihx-uYKzcIv4GAhY2q9YoGHP_Rmua7Ped17cVW5RDt29rG101ysQZC-bVIMHOylOM4e230wt5Pt4dt0HBwFKy_K7CoVcj5Bz5YXGblDp5fOFoRNcpr2gWVpeisZMXwOaA9jL5jk6w2hhxYLPUADIXm_TdLUDhTJFjfHAp00TOyZEA9EwFWJcgxXgZzYfn8CcfTDow0dZeDyrhgrGL_G8BHtR2IfUP7-Yb5FQKJyxNwDKd9cmyXyd_qjwakTza_CfrAPRl0yLtHMdAGy3Q&h=idDRtziHuBfLxt47lal-No-Jnso9_wpm8iACyZuSaKU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b481aea9-f8db-4846-86a8-bf8c5593a088?api-version=2023-09-15-preview&t=638327085208125854&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cssX6vUth8_Z-9oY_c-e5yfG5xvQH4F9gXzkboSLXxcZ4N3IpOhUjFJfqLTE_FmEzAcWjihx-uYKzcIv4GAhY2q9YoGHP_Rmua7Ped17cVW5RDt29rG101ysQZC-bVIMHOylOM4e230wt5Pt4dt0HBwFKy_K7CoVcj5Bz5YXGblDp5fOFoRNcpr2gWVpeisZMXwOaA9jL5jk6w2hhxYLPUADIXm_TdLUDhTJFjfHAp00TOyZEA9EwFWJcgxXgZzYfn8CcfTDow0dZeDyrhgrGL_G8BHtR2IfUP7-Yb5FQKJyxNwDKd9cmyXyd_qjwakTza_CfrAPRl0yLtHMdAGy3Q&h=idDRtziHuBfLxt47lal-No-Jnso9_wpm8iACyZuSaKU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b481aea9-f8db-4846-86a8-bf8c5593a088?api-version=2023-09-15-preview&t=638327085208125854&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cssX6vUth8_Z-9oY_c-e5yfG5xvQH4F9gXzkboSLXxcZ4N3IpOhUjFJfqLTE_FmEzAcWjihx-uYKzcIv4GAhY2q9YoGHP_Rmua7Ped17cVW5RDt29rG101ysQZC-bVIMHOylOM4e230wt5Pt4dt0HBwFKy_K7CoVcj5Bz5YXGblDp5fOFoRNcpr2gWVpeisZMXwOaA9jL5jk6w2hhxYLPUADIXm_TdLUDhTJFjfHAp00TOyZEA9EwFWJcgxXgZzYfn8CcfTDow0dZeDyrhgrGL_G8BHtR2IfUP7-Yb5FQKJyxNwDKd9cmyXyd_qjwakTza_CfrAPRl0yLtHMdAGy3Q&h=idDRtziHuBfLxt47lal-No-Jnso9_wpm8iACyZuSaKU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b481aea9-f8db-4846-86a8-bf8c5593a088?api-version=2023-09-15-preview&t=638327085208125854&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cssX6vUth8_Z-9oY_c-e5yfG5xvQH4F9gXzkboSLXxcZ4N3IpOhUjFJfqLTE_FmEzAcWjihx-uYKzcIv4GAhY2q9YoGHP_Rmua7Ped17cVW5RDt29rG101ysQZC-bVIMHOylOM4e230wt5Pt4dt0HBwFKy_K7CoVcj5Bz5YXGblDp5fOFoRNcpr2gWVpeisZMXwOaA9jL5jk6w2hhxYLPUADIXm_TdLUDhTJFjfHAp00TOyZEA9EwFWJcgxXgZzYfn8CcfTDow0dZeDyrhgrGL_G8BHtR2IfUP7-Yb5FQKJyxNwDKd9cmyXyd_qjwakTza_CfrAPRl0yLtHMdAGy3Q&h=idDRtziHuBfLxt47lal-No-Jnso9_wpm8iACyZuSaKU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/b481aea9-f8db-4846-86a8-bf8c5593a088?api-version=2023-09-15-preview&t=638327085208125854&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cssX6vUth8_Z-9oY_c-e5yfG5xvQH4F9gXzkboSLXxcZ4N3IpOhUjFJfqLTE_FmEzAcWjihx-uYKzcIv4GAhY2q9YoGHP_Rmua7Ped17cVW5RDt29rG101ysQZC-bVIMHOylOM4e230wt5Pt4dt0HBwFKy_K7CoVcj5Bz5YXGblDp5fOFoRNcpr2gWVpeisZMXwOaA9jL5jk6w2hhxYLPUADIXm_TdLUDhTJFjfHAp00TOyZEA9EwFWJcgxXgZzYfn8CcfTDow0dZeDyrhgrGL_G8BHtR2IfUP7-Yb5FQKJyxNwDKd9cmyXyd_qjwakTza_CfrAPRl0yLtHMdAGy3Q&h=idDRtziHuBfLxt47lal-No-Jnso9_wpm8iACyZuSaKU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:56:50.7203647Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","sqlEndpoint":"https://cli000002.documents.azure.com:443/","mongoEndpoint":"https://cli000002.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"ae2ced88-b42d-4c6a-987d-7732511b514e","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000002-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000002-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000002-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongoRoleBasedAccessControl"},{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:56:50.7203647Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:56:50.7203647Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:56:50.7203647Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:56:50.7203647Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3034' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:56:50.7203647Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","sqlEndpoint":"https://cli000002.documents.azure.com:443/","mongoEndpoint":"https://cli000002.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"ae2ced88-b42d-4c6a-987d-7732511b514e","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000002-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000002-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000002-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongoRoleBasedAccessControl"},{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:56:50.7203647Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:56:50.7203647Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:56:50.7203647Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:56:50.7203647Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3034' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/888a8f8d-e6d3-4b43-9d66-b12d83c5986c?api-version=2023-09-15&t=638327086765250082&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MBbpvELF8V8YLyHFBwcijB8NJaFsprwl2KMnk0CN9iZ9pWpIF0Ka6jPWPzmyjJIZtMKItLDJrpjs_9Pvevck-0H4vLUEEAScD4bOhUZXp_jf94i7ryoerl5j7ZCI45T2ohuZCzFatT2Ik9z0fbx5D6trQXBSEHJFU7YEOb9hosCPThNKKwJ56BMWUa3mmHQQeLlBSeVEX654jEEnuYWJ-J71SfGM3XBMX5qPHCaGlQgJHHN1uZ7f0CmIGoobTmS2NH9niGfAZsHqRHOqCA1d-ZMu345NfyqAafaiXbzZrYmQ_rcnSJ50N5ZLc261TLzc1gBXu8NKBfUusfyPZsfl4w&h=J5tdYZiB5PwPyWq4PkUk_grqPOT4NgQIyIWvK-jreik - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:56 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/operationResults/888a8f8d-e6d3-4b43-9d66-b12d83c5986c?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/888a8f8d-e6d3-4b43-9d66-b12d83c5986c?api-version=2023-09-15&t=638327086765250082&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MBbpvELF8V8YLyHFBwcijB8NJaFsprwl2KMnk0CN9iZ9pWpIF0Ka6jPWPzmyjJIZtMKItLDJrpjs_9Pvevck-0H4vLUEEAScD4bOhUZXp_jf94i7ryoerl5j7ZCI45T2ohuZCzFatT2Ik9z0fbx5D6trQXBSEHJFU7YEOb9hosCPThNKKwJ56BMWUa3mmHQQeLlBSeVEX654jEEnuYWJ-J71SfGM3XBMX5qPHCaGlQgJHHN1uZ7f0CmIGoobTmS2NH9niGfAZsHqRHOqCA1d-ZMu345NfyqAafaiXbzZrYmQ_rcnSJ50N5ZLc261TLzc1gBXu8NKBfUusfyPZsfl4w&h=J5tdYZiB5PwPyWq4PkUk_grqPOT4NgQIyIWvK-jreik - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/888a8f8d-e6d3-4b43-9d66-b12d83c5986c?api-version=2023-09-15&t=638327086765250082&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MBbpvELF8V8YLyHFBwcijB8NJaFsprwl2KMnk0CN9iZ9pWpIF0Ka6jPWPzmyjJIZtMKItLDJrpjs_9Pvevck-0H4vLUEEAScD4bOhUZXp_jf94i7ryoerl5j7ZCI45T2ohuZCzFatT2Ik9z0fbx5D6trQXBSEHJFU7YEOb9hosCPThNKKwJ56BMWUa3mmHQQeLlBSeVEX654jEEnuYWJ-J71SfGM3XBMX5qPHCaGlQgJHHN1uZ7f0CmIGoobTmS2NH9niGfAZsHqRHOqCA1d-ZMu345NfyqAafaiXbzZrYmQ_rcnSJ50N5ZLc261TLzc1gBXu8NKBfUusfyPZsfl4w&h=J5tdYZiB5PwPyWq4PkUk_grqPOT4NgQIyIWvK-jreik - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '325' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"roleName": "my_role_def1", "type": "CustomRole", "databaseName": - "cli000003", "privileges": [{"resource": {"db": "cli000003", "collection": "test"}, - "actions": ["insert", "find"]}], "roles": []}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - Content-Length: - - '212' - Content-Type: - - application/json - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/randomid?api-version=2023-09-15-preview - response: - body: - string: '{"code":"BadRequest","message":"A Mongo Role Definition with given - ID [randomid] id not valid. The Mongo role definition should follow the format - dbName.roleName for database '''' and roleName ''''\r\nActivityId: a7df831c-68f6-11ee-8fa7-9c7bef43f49d, - Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11: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-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 400 - message: BadRequest -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - date: - - Thu, 12 Oct 2023 11: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-activity-id: - - a97371e6-68f6-11ee-8393-9c7bef43f49d - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions?api-version=2023-09-15-preview - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"roleName": "my_role_def1", "type": "CustomRole", "databaseName": - "cli000003", "privileges": [{"resource": {"db": "cli000003", "collection": "test"}, - "actions": ["insert", "find"]}], "roles": []}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - Content-Length: - - '212' - Content-Type: - - application/json - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/0499bdfa-09c8-4e66-9d31-9b28253a1ad6?api-version=2023-09-15-preview&t=638327087183069400&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=LHVoeWYkItLhydZW9Tj4lPs5QnZtu3tsNpbqDMZnG9Abd16jgKAXzvgVJxUjDz7JVyhu2t8i1D-12crnvUUc3bG9FzGqpZVhzPSDTnGMopNOszBWZHdaP1wUlE-Nm-Vvn5x129xJ6hM39gUMzbdl02Rwl10E94Kp9MgBGMrvXuxUgAbTI5xCONj2KYhqOluql1ExZrkMP8SdLW0bvbIJHArMcc0FY5J_bA2VthmeyIL2iIweBxOxZXTbcxPBjSI4OgvOp2l0OtwYhS1FbV1VQlqUv3y5XjT4fDvWappkRJlqb2txC7dkem-xatWiCDkFcT1cZPD_TT7hG6AlkYfZMw&h=1MEkbRcUA8VAn94w9qvrM97RiMATEqLc1JvO0MkB0h0 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:37 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1/operationResults/0499bdfa-09c8-4e66-9d31-9b28253a1ad6?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1191' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/0499bdfa-09c8-4e66-9d31-9b28253a1ad6?api-version=2023-09-15-preview&t=638327087183069400&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=LHVoeWYkItLhydZW9Tj4lPs5QnZtu3tsNpbqDMZnG9Abd16jgKAXzvgVJxUjDz7JVyhu2t8i1D-12crnvUUc3bG9FzGqpZVhzPSDTnGMopNOszBWZHdaP1wUlE-Nm-Vvn5x129xJ6hM39gUMzbdl02Rwl10E94Kp9MgBGMrvXuxUgAbTI5xCONj2KYhqOluql1ExZrkMP8SdLW0bvbIJHArMcc0FY5J_bA2VthmeyIL2iIweBxOxZXTbcxPBjSI4OgvOp2l0OtwYhS1FbV1VQlqUv3y5XjT4fDvWappkRJlqb2txC7dkem-xatWiCDkFcT1cZPD_TT7hG6AlkYfZMw&h=1MEkbRcUA8VAn94w9qvrM97RiMATEqLc1JvO0MkB0h0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/0499bdfa-09c8-4e66-9d31-9b28253a1ad6?api-version=2023-09-15-preview&t=638327087183069400&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=LHVoeWYkItLhydZW9Tj4lPs5QnZtu3tsNpbqDMZnG9Abd16jgKAXzvgVJxUjDz7JVyhu2t8i1D-12crnvUUc3bG9FzGqpZVhzPSDTnGMopNOszBWZHdaP1wUlE-Nm-Vvn5x129xJ6hM39gUMzbdl02Rwl10E94Kp9MgBGMrvXuxUgAbTI5xCONj2KYhqOluql1ExZrkMP8SdLW0bvbIJHArMcc0FY5J_bA2VthmeyIL2iIweBxOxZXTbcxPBjSI4OgvOp2l0OtwYhS1FbV1VQlqUv3y5XjT4fDvWappkRJlqb2txC7dkem-xatWiCDkFcT1cZPD_TT7hG6AlkYfZMw&h=1MEkbRcUA8VAn94w9qvrM97RiMATEqLc1JvO0MkB0h0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1","name":"my_role_def1","properties":{"roleName":"my_role_def1","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["insert","find"]}],"roles":[]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '491' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1","name":"my_role_def1","properties":{"roleName":"my_role_def1","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["insert","find"]}],"roles":[]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '491' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition show - Connection: - - keep-alive - ParameterSetName: - - -g -a -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1","name":"my_role_def1","properties":{"roleName":"my_role_def1","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["insert","find"]}],"roles":[]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '491' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition update - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1","name":"my_role_def1","properties":{"roleName":"my_role_def1","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["insert","find"]}],"roles":[]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '491' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"roleName": "my_role_def1", "type": "CustomRole", "databaseName": - "cli000003", "privileges": [{"resource": {"db": "cli000003", "collection": "test"}, - "actions": ["find"]}], "roles": []}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition update - Connection: - - keep-alive - Content-Length: - - '202' - Content-Type: - - application/json - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/de1a1618-836a-4e50-8a16-8825b0d33ee3?api-version=2023-09-15-preview&t=638327087566525724&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cyG8xctv8gpD4VvxxoETsKJ0urMIS3xYlG-M1tDqduE84V8P08G8rmxFj-fVaBEIi3BdPS8OAF1Mz2QB5L4SynC8icCviknKukdBCoh0zT4s_1XBXpT0aqTIWOw1T62ggbJ0Om7xqKYTkRqzO7ekFTK4xZSrjcrjG8jD8hlt8VuZwY92V_Y4RJ_B2SfYcfx8Ehz0BpNlAV_zhyTs4sB5cw80dUt09uPsa4agC45AztCBHjYuicAdf4gIcrTl9sZJ9W3pUbIX3rFT2-J7dg5u28JA25u0C4RGfp2D6J_3Hh_-ayO-O4QRqSfY2A7JE6qd1ytYVPLdaFODGYJuV7Opiw&h=KkVBk6ZvjSIp_zddyqF2wMMpc4hOqxjMQXFN7rBCxOg - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:16 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1/operationResults/de1a1618-836a-4e50-8a16-8825b0d33ee3?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition update - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/de1a1618-836a-4e50-8a16-8825b0d33ee3?api-version=2023-09-15-preview&t=638327087566525724&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cyG8xctv8gpD4VvxxoETsKJ0urMIS3xYlG-M1tDqduE84V8P08G8rmxFj-fVaBEIi3BdPS8OAF1Mz2QB5L4SynC8icCviknKukdBCoh0zT4s_1XBXpT0aqTIWOw1T62ggbJ0Om7xqKYTkRqzO7ekFTK4xZSrjcrjG8jD8hlt8VuZwY92V_Y4RJ_B2SfYcfx8Ehz0BpNlAV_zhyTs4sB5cw80dUt09uPsa4agC45AztCBHjYuicAdf4gIcrTl9sZJ9W3pUbIX3rFT2-J7dg5u28JA25u0C4RGfp2D6J_3Hh_-ayO-O4QRqSfY2A7JE6qd1ytYVPLdaFODGYJuV7Opiw&h=KkVBk6ZvjSIp_zddyqF2wMMpc4hOqxjMQXFN7rBCxOg - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition update - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/de1a1618-836a-4e50-8a16-8825b0d33ee3?api-version=2023-09-15-preview&t=638327087566525724&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cyG8xctv8gpD4VvxxoETsKJ0urMIS3xYlG-M1tDqduE84V8P08G8rmxFj-fVaBEIi3BdPS8OAF1Mz2QB5L4SynC8icCviknKukdBCoh0zT4s_1XBXpT0aqTIWOw1T62ggbJ0Om7xqKYTkRqzO7ekFTK4xZSrjcrjG8jD8hlt8VuZwY92V_Y4RJ_B2SfYcfx8Ehz0BpNlAV_zhyTs4sB5cw80dUt09uPsa4agC45AztCBHjYuicAdf4gIcrTl9sZJ9W3pUbIX3rFT2-J7dg5u28JA25u0C4RGfp2D6J_3Hh_-ayO-O4QRqSfY2A7JE6qd1ytYVPLdaFODGYJuV7Opiw&h=KkVBk6ZvjSIp_zddyqF2wMMpc4hOqxjMQXFN7rBCxOg - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition update - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1","name":"my_role_def1","properties":{"roleName":"my_role_def1","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["find"]}],"roles":[]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '482' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2?api-version=2023-09-15-preview - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - date: - - Thu, 12 Oct 2023 11:59:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-activity-id: - - d768c652-68f6-11ee-8557-9c7bef43f49d - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1","name":"my_role_def1","properties":{"roleName":"my_role_def1","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["find"]}],"roles":[]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '494' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"roleName": "my_role_def2", "type": "CustomRole", "databaseName": - "cli000003", "privileges": [{"resource": {"db": "cli000003", "collection": "test"}, - "actions": ["insert"]}], "roles": [{"db": "cli000003", "role": "my_role_def1"}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - Content-Length: - - '247' - Content-Type: - - application/json - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/e5e93b28-6984-4e6b-a4c5-0126a41f2067?api-version=2023-09-15-preview&t=638327087948223466&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=YM0Igml_KWGasahXUmDsB7_AHoLfQ1xQ04y1gCrxoO2GVTUMlds_gcRVJWZZ_5v4ZcRA3yD9Ui-Yb_02DWxcToRzMGtYbDAYqDBeZkekc_mK5H9gpDL7-N-hcJPUzDPQgEJC-in7tqKIJ3QT0kzkuoGCBJjonUzYKxt0zC-o5YCuSs3tpStWEsVw86OjYhYi_0pul6sV0u29R6Y0sk87VgWeK2OQOTaSB8cL1XJ-JrpIZMCucYJs-SqMoJooZIM1UFNBdrb0Bq-KxqTdr4c0lmf801sxygJKBS0iL7y3Xm1kYmIg2vlsnCf0x7ffTARDf6DhnIuQK6FChry6zJIxvw&h=WyBDYZjWGeqQiXrncGj4XduHUD9QYa2AT0FIy9pILfs - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:54 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2/operationResults/e5e93b28-6984-4e6b-a4c5-0126a41f2067?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/e5e93b28-6984-4e6b-a4c5-0126a41f2067?api-version=2023-09-15-preview&t=638327087948223466&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=YM0Igml_KWGasahXUmDsB7_AHoLfQ1xQ04y1gCrxoO2GVTUMlds_gcRVJWZZ_5v4ZcRA3yD9Ui-Yb_02DWxcToRzMGtYbDAYqDBeZkekc_mK5H9gpDL7-N-hcJPUzDPQgEJC-in7tqKIJ3QT0kzkuoGCBJjonUzYKxt0zC-o5YCuSs3tpStWEsVw86OjYhYi_0pul6sV0u29R6Y0sk87VgWeK2OQOTaSB8cL1XJ-JrpIZMCucYJs-SqMoJooZIM1UFNBdrb0Bq-KxqTdr4c0lmf801sxygJKBS0iL7y3Xm1kYmIg2vlsnCf0x7ffTARDf6DhnIuQK6FChry6zJIxvw&h=WyBDYZjWGeqQiXrncGj4XduHUD9QYa2AT0FIy9pILfs - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/e5e93b28-6984-4e6b-a4c5-0126a41f2067?api-version=2023-09-15-preview&t=638327087948223466&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=YM0Igml_KWGasahXUmDsB7_AHoLfQ1xQ04y1gCrxoO2GVTUMlds_gcRVJWZZ_5v4ZcRA3yD9Ui-Yb_02DWxcToRzMGtYbDAYqDBeZkekc_mK5H9gpDL7-N-hcJPUzDPQgEJC-in7tqKIJ3QT0kzkuoGCBJjonUzYKxt0zC-o5YCuSs3tpStWEsVw86OjYhYi_0pul6sV0u29R6Y0sk87VgWeK2OQOTaSB8cL1XJ-JrpIZMCucYJs-SqMoJooZIM1UFNBdrb0Bq-KxqTdr4c0lmf801sxygJKBS0iL7y3Xm1kYmIg2vlsnCf0x7ffTARDf6DhnIuQK6FChry6zJIxvw&h=WyBDYZjWGeqQiXrncGj4XduHUD9QYa2AT0FIy9pILfs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2","name":"my_role_def2","properties":{"roleName":"my_role_def2","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["insert"]}],"roles":[{"db":"cli000003","role":"my_role_def1"}]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '524' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1","name":"my_role_def1","properties":{"roleName":"my_role_def1","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["find"]}],"roles":[]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2","name":"my_role_def2","properties":{"roleName":"my_role_def2","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["insert"]}],"roles":[{"db":"cli000003","role":"my_role_def1"}]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1019' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"userName": "testUser", "password": "MyPass", "databaseName": - "cli000003", "customData": "MyCustomData", "roles": [{"db": "cli000003", "role": - "my_role_def1"}], "mechanisms": "SCRAM-SHA-256"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition create - Connection: - - keep-alive - Content-Length: - - '208' - Content-Type: - - application/json - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/randomuserid?api-version=2023-09-15-preview - response: - body: - string: '{"code":"BadRequest","message":"A Mongo User Definition with given - ID [randomuserid] id not valid. The Mongo User Definition should follow the - format dbName.userName for database '''' and userName ''''\r\nActivityId: - efd051d9-68f6-11ee-b087-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '292' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 400 - message: BadRequest -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - date: - - Thu, 12 Oct 2023 12:00:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-activity-id: - - f15f7ea7-68f6-11ee-a92f-9c7bef43f49d - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions?api-version=2023-09-15-preview - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"userName": "testUser", "password": "MyPass", "databaseName": - "cli000003", "customData": "MyCustomData", "roles": [{"db": "cli000003", "role": - "my_role_def1"}], "mechanisms": "SCRAM-SHA-256"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition create - Connection: - - keep-alive - Content-Length: - - '208' - Content-Type: - - application/json - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/8ffd70e7-4c59-4a8f-9d13-59eb611e964e?api-version=2023-09-15-preview&t=638327088357887318&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Rhz0UgxvhD7NmHo4Sw9nNMf89xhzghGcOGTzeKb27yivbX-jqPutae9Ktf4J7NjwYYtgXxQqeYn-N_Awi9gu4Z9-TB4Oy6Rp9QY943ZpVXQnzDuOS-i7WzJULMzFV7MZt37QPR8qd78ACsZRUZltPZaY-n1dWk3C6RcNws2jSCqDQhTGIcqs1xn_SyEV527NlwmQ6Cx0geNDdn7T4Isa2d0fuKcw6VnI9KUQSyonULHQhd4K-pwjokNGtVjLBTApJUUv9sYXMKhWLAlTeXOOu4kUbpXHX55mzedbrpvRWntoODggLhLtfOkL5mDTVWH1mOEB5geUsjUIrMFe8-6lXw&h=gPjb-_1An0x4N0Iqs_ONCP4iO13uMQ8EcNLJfNpHvxA - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:34 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser/operationResults/8ffd70e7-4c59-4a8f-9d13-59eb611e964e?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/8ffd70e7-4c59-4a8f-9d13-59eb611e964e?api-version=2023-09-15-preview&t=638327088357887318&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Rhz0UgxvhD7NmHo4Sw9nNMf89xhzghGcOGTzeKb27yivbX-jqPutae9Ktf4J7NjwYYtgXxQqeYn-N_Awi9gu4Z9-TB4Oy6Rp9QY943ZpVXQnzDuOS-i7WzJULMzFV7MZt37QPR8qd78ACsZRUZltPZaY-n1dWk3C6RcNws2jSCqDQhTGIcqs1xn_SyEV527NlwmQ6Cx0geNDdn7T4Isa2d0fuKcw6VnI9KUQSyonULHQhd4K-pwjokNGtVjLBTApJUUv9sYXMKhWLAlTeXOOu4kUbpXHX55mzedbrpvRWntoODggLhLtfOkL5mDTVWH1mOEB5geUsjUIrMFe8-6lXw&h=gPjb-_1An0x4N0Iqs_ONCP4iO13uMQ8EcNLJfNpHvxA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/8ffd70e7-4c59-4a8f-9d13-59eb611e964e?api-version=2023-09-15-preview&t=638327088357887318&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Rhz0UgxvhD7NmHo4Sw9nNMf89xhzghGcOGTzeKb27yivbX-jqPutae9Ktf4J7NjwYYtgXxQqeYn-N_Awi9gu4Z9-TB4Oy6Rp9QY943ZpVXQnzDuOS-i7WzJULMzFV7MZt37QPR8qd78ACsZRUZltPZaY-n1dWk3C6RcNws2jSCqDQhTGIcqs1xn_SyEV527NlwmQ6Cx0geNDdn7T4Isa2d0fuKcw6VnI9KUQSyonULHQhd4K-pwjokNGtVjLBTApJUUv9sYXMKhWLAlTeXOOu4kUbpXHX55mzedbrpvRWntoODggLhLtfOkL5mDTVWH1mOEB5geUsjUIrMFe8-6lXw&h=gPjb-_1An0x4N0Iqs_ONCP4iO13uMQ8EcNLJfNpHvxA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser","name":"testUser","properties":{"userName":"testUser","password":"","databaseName":"cli000003","customData":"","mechanisms":"SCRAM-SHA-256","roles":[{"db":"cli000003","role":"my_role_def1"}]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '474' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser","name":"testUser","properties":{"userName":"testUser","password":"","databaseName":"cli000003","customData":"","mechanisms":"SCRAM-SHA-256","roles":[{"db":"cli000003","role":"my_role_def1"}]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '474' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition show - Connection: - - keep-alive - ParameterSetName: - - -g -a -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser","name":"testUser","properties":{"userName":"testUser","password":"","databaseName":"cli000003","customData":"","mechanisms":"SCRAM-SHA-256","roles":[{"db":"cli000003","role":"my_role_def1"}]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '474' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition update - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser","name":"testUser","properties":{"userName":"testUser","password":"","databaseName":"cli000003","customData":"","mechanisms":"SCRAM-SHA-256","roles":[{"db":"cli000003","role":"my_role_def1"}]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '474' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"userName": "testUser", "password": "MyPass", "databaseName": - "cli000003", "customData": "MyCustomData", "roles": [{"db": "cli000003", "role": - "my_role_def2"}], "mechanisms": "SCRAM-SHA-256"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition update - Connection: - - keep-alive - Content-Length: - - '208' - Content-Type: - - application/json - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/d5010bab-d35f-4470-9ff8-ddd5aea8e96e?api-version=2023-09-15-preview&t=638327088748654327&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KCuAoh9fEZU-OE0oC0A88bJ7gtCkuL6CkrCP1Te0mqv8wzi3exiw_G2AKKYTkSYBZF_Gm9iAlThkzg1IeYZCSTOdZxCU5V9sT4R-TGhAFGPfRLmi6FCkqwEKu3ErfpyqHfIis2bYpOYzxEZEtKAPknjZmYeOxKuBkoBwevk2MXmsD0nNY_5i_4f3Xlcuo8KzrXmxeV-rZzCnWatgfuD0g-a5zKZ2o4ayBdSsyjklH6wJEEcsXXBhotQbakFX5UW8Sn0SPF7XX6GFIY9x97u1khwIX_jBRkGR4G2Y7ph7OK3XIU3FNEdU5JTc6-BuCXtwcFm3CCfFAmaj9xEELHt-SA&h=Gth9fLsrXSOHTbOkRxLDA5dq_x2JNA1Chf9HmDjgZic - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:14 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser/operationResults/d5010bab-d35f-4470-9ff8-ddd5aea8e96e?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition update - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/d5010bab-d35f-4470-9ff8-ddd5aea8e96e?api-version=2023-09-15-preview&t=638327088748654327&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KCuAoh9fEZU-OE0oC0A88bJ7gtCkuL6CkrCP1Te0mqv8wzi3exiw_G2AKKYTkSYBZF_Gm9iAlThkzg1IeYZCSTOdZxCU5V9sT4R-TGhAFGPfRLmi6FCkqwEKu3ErfpyqHfIis2bYpOYzxEZEtKAPknjZmYeOxKuBkoBwevk2MXmsD0nNY_5i_4f3Xlcuo8KzrXmxeV-rZzCnWatgfuD0g-a5zKZ2o4ayBdSsyjklH6wJEEcsXXBhotQbakFX5UW8Sn0SPF7XX6GFIY9x97u1khwIX_jBRkGR4G2Y7ph7OK3XIU3FNEdU5JTc6-BuCXtwcFm3CCfFAmaj9xEELHt-SA&h=Gth9fLsrXSOHTbOkRxLDA5dq_x2JNA1Chf9HmDjgZic - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition update - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/d5010bab-d35f-4470-9ff8-ddd5aea8e96e?api-version=2023-09-15-preview&t=638327088748654327&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KCuAoh9fEZU-OE0oC0A88bJ7gtCkuL6CkrCP1Te0mqv8wzi3exiw_G2AKKYTkSYBZF_Gm9iAlThkzg1IeYZCSTOdZxCU5V9sT4R-TGhAFGPfRLmi6FCkqwEKu3ErfpyqHfIis2bYpOYzxEZEtKAPknjZmYeOxKuBkoBwevk2MXmsD0nNY_5i_4f3Xlcuo8KzrXmxeV-rZzCnWatgfuD0g-a5zKZ2o4ayBdSsyjklH6wJEEcsXXBhotQbakFX5UW8Sn0SPF7XX6GFIY9x97u1khwIX_jBRkGR4G2Y7ph7OK3XIU3FNEdU5JTc6-BuCXtwcFm3CCfFAmaj9xEELHt-SA&h=Gth9fLsrXSOHTbOkRxLDA5dq_x2JNA1Chf9HmDjgZic - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition update - Connection: - - keep-alive - ParameterSetName: - - -g -a -b - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser","name":"testUser","properties":{"userName":"testUser","password":"","databaseName":"cli000003","customData":"","mechanisms":"SCRAM-SHA-256","roles":[{"db":"cli000003","role":"my_role_def2"}]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '474' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser","name":"testUser","properties":{"userName":"testUser","password":"","databaseName":"cli000003","customData":"","mechanisms":"SCRAM-SHA-256","roles":[{"db":"cli000003","role":"my_role_def2"}]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '486' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/a5f0d26f-f378-43fe-9f70-0b0117a098a4?api-version=2023-09-15-preview&t=638327089105479302&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=CKn_XuaAOt_SY5rF3Hq264LNIhDbUQ2Wyn5_4sOXZs44QYA23EGiVHffhS9DxcLgt4-3mjHBcI49jrQplavh87CzNj_Zzg99jxFyMl9B0XjE5cxx9PzWfEbPIUwGikUuSUzfHZ5Zlqu3QHBzOgJ21IgOsNx6JoLgiWdoJWg2KmwTCxlkYEcXkWRPSjHQZ0DYeSicUEJ5uD-NoIK3l3I5TvkJgTPN2VQNud8HiYkM8L0MB9YQayWKfNc26rm3HbtUbqBU26plpfCLoVTMfsjflhC3sVoIesnxXNNZ2SUwJtWZMnG5rYJNLONPEKxQXUKhsdeIspOQOg_dstwglEE50A&h=9y_5utMPMMl3qkP439HSkeVG1y5tP-hjt1UQNWvBrIY - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:49 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions/cli000003.testUser/operationResults/a5f0d26f-f378-43fe-9f70-0b0117a098a4?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/a5f0d26f-f378-43fe-9f70-0b0117a098a4?api-version=2023-09-15-preview&t=638327089105479302&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=CKn_XuaAOt_SY5rF3Hq264LNIhDbUQ2Wyn5_4sOXZs44QYA23EGiVHffhS9DxcLgt4-3mjHBcI49jrQplavh87CzNj_Zzg99jxFyMl9B0XjE5cxx9PzWfEbPIUwGikUuSUzfHZ5Zlqu3QHBzOgJ21IgOsNx6JoLgiWdoJWg2KmwTCxlkYEcXkWRPSjHQZ0DYeSicUEJ5uD-NoIK3l3I5TvkJgTPN2VQNud8HiYkM8L0MB9YQayWKfNc26rm3HbtUbqBU26plpfCLoVTMfsjflhC3sVoIesnxXNNZ2SUwJtWZMnG5rYJNLONPEKxQXUKhsdeIspOQOg_dstwglEE50A&h=9y_5utMPMMl3qkP439HSkeVG1y5tP-hjt1UQNWvBrIY - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/a5f0d26f-f378-43fe-9f70-0b0117a098a4?api-version=2023-09-15-preview&t=638327089105479302&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=CKn_XuaAOt_SY5rF3Hq264LNIhDbUQ2Wyn5_4sOXZs44QYA23EGiVHffhS9DxcLgt4-3mjHBcI49jrQplavh87CzNj_Zzg99jxFyMl9B0XjE5cxx9PzWfEbPIUwGikUuSUzfHZ5Zlqu3QHBzOgJ21IgOsNx6JoLgiWdoJWg2KmwTCxlkYEcXkWRPSjHQZ0DYeSicUEJ5uD-NoIK3l3I5TvkJgTPN2VQNud8HiYkM8L0MB9YQayWKfNc26rm3HbtUbqBU26plpfCLoVTMfsjflhC3sVoIesnxXNNZ2SUwJtWZMnG5rYJNLONPEKxQXUKhsdeIspOQOg_dstwglEE50A&h=9y_5utMPMMl3qkP439HSkeVG1y5tP-hjt1UQNWvBrIY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb user definition list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbUserDefinitions?api-version=2023-09-15-preview - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/dae58c2a-1625-41af-87c2-7046c6d8e62a?api-version=2023-09-15-preview&t=638327089457123316&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kErOSHsTwO0qhKeALw0ESKKRhmrMI1oPv6EE0rR0BPslkigFmjkph0sJLEjMP8-iPw9MGbyHh_nsSHY2ZM_h8ofA8widMOI1AuLrEN0wN-Zdz8-tlEjgOnuoPz5ree8R1GdEMjA5m-tkKHeBt8BjGHM4txy_JXus5d_2D4rElKvBTDbTMIo0mCu_CEoi_OGLnJ_1bFHNyr4NCzeM-p2RJIopPHAOSKr9syWQPBPcGlfPSJVTF2y8dTDFI_kLsrfeBta3_AbjSvD7IL7zwYade6KcXZ6JrTA79Rg_E2jzheFqwaNLL9TCDRJNky41kgUUi5PY0xH-P21AmvoOikE5Nw&h=WY8wBaCkqiNPP5iZMz20WaqYwF-tD9Fp7u3AzyNVew4 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:24 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def1/operationResults/dae58c2a-1625-41af-87c2-7046c6d8e62a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/dae58c2a-1625-41af-87c2-7046c6d8e62a?api-version=2023-09-15-preview&t=638327089457123316&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kErOSHsTwO0qhKeALw0ESKKRhmrMI1oPv6EE0rR0BPslkigFmjkph0sJLEjMP8-iPw9MGbyHh_nsSHY2ZM_h8ofA8widMOI1AuLrEN0wN-Zdz8-tlEjgOnuoPz5ree8R1GdEMjA5m-tkKHeBt8BjGHM4txy_JXus5d_2D4rElKvBTDbTMIo0mCu_CEoi_OGLnJ_1bFHNyr4NCzeM-p2RJIopPHAOSKr9syWQPBPcGlfPSJVTF2y8dTDFI_kLsrfeBta3_AbjSvD7IL7zwYade6KcXZ6JrTA79Rg_E2jzheFqwaNLL9TCDRJNky41kgUUi5PY0xH-P21AmvoOikE5Nw&h=WY8wBaCkqiNPP5iZMz20WaqYwF-tD9Fp7u3AzyNVew4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/dae58c2a-1625-41af-87c2-7046c6d8e62a?api-version=2023-09-15-preview&t=638327089457123316&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kErOSHsTwO0qhKeALw0ESKKRhmrMI1oPv6EE0rR0BPslkigFmjkph0sJLEjMP8-iPw9MGbyHh_nsSHY2ZM_h8ofA8widMOI1AuLrEN0wN-Zdz8-tlEjgOnuoPz5ree8R1GdEMjA5m-tkKHeBt8BjGHM4txy_JXus5d_2D4rElKvBTDbTMIo0mCu_CEoi_OGLnJ_1bFHNyr4NCzeM-p2RJIopPHAOSKr9syWQPBPcGlfPSJVTF2y8dTDFI_kLsrfeBta3_AbjSvD7IL7zwYade6KcXZ6JrTA79Rg_E2jzheFqwaNLL9TCDRJNky41kgUUi5PY0xH-P21AmvoOikE5Nw&h=WY8wBaCkqiNPP5iZMz20WaqYwF-tD9Fp7u3AzyNVew4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2","name":"my_role_def2","properties":{"roleName":"my_role_def2","type":1,"databaseName":"cli000003","privileges":[{"resource":{"db":"cli000003","collection":"test"},"actions":["insert"]}],"roles":[]},"type":"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '496' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fe23616e-ab9d-46f3-a2de-cfe5e06a0ad8?api-version=2023-09-15-preview&t=638327089805263264&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SukDP0l2rdelv_sooc-xX6NceHQw-uQNb9nECbUeMqPCa6_mPaf3AjV6tefXMRDihGrilN0YH7OYZP6tjPP8mzPP_PxzgPRjBXeU-RytThD57rlsQWRrNmSn5CeaF-OqfGHNaiw68GtIdFxkGRl0sUHzd7iiFK6auyRx9F1T_bsDoEG0tIPyI_THeQsdTfwERRkKQ0tHa_fzPfLc-RvZmkb-Z-oc9wMHjl_N0-XL-9fhVGOp7bYYRFWrijnDGrCvnii1HHEKaK2BjFIH-TpkX1kvcpw9uYrSnQeTR0wT8IwvkDh9MKbWwT6x00EhNQINND9EtCqDREAji6m0E711Vg&h=3J_D36KMfyOM9x51FcUedehrkydlb4Rj-U82_UfFSIk - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:59 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions/cli000003.my_role_def2/operationResults/fe23616e-ab9d-46f3-a2de-cfe5e06a0ad8?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fe23616e-ab9d-46f3-a2de-cfe5e06a0ad8?api-version=2023-09-15-preview&t=638327089805263264&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SukDP0l2rdelv_sooc-xX6NceHQw-uQNb9nECbUeMqPCa6_mPaf3AjV6tefXMRDihGrilN0YH7OYZP6tjPP8mzPP_PxzgPRjBXeU-RytThD57rlsQWRrNmSn5CeaF-OqfGHNaiw68GtIdFxkGRl0sUHzd7iiFK6auyRx9F1T_bsDoEG0tIPyI_THeQsdTfwERRkKQ0tHa_fzPfLc-RvZmkb-Z-oc9wMHjl_N0-XL-9fhVGOp7bYYRFWrijnDGrCvnii1HHEKaK2BjFIH-TpkX1kvcpw9uYrSnQeTR0wT8IwvkDh9MKbWwT6x00EhNQINND9EtCqDREAji6m0E711Vg&h=3J_D36KMfyOM9x51FcUedehrkydlb4Rj-U82_UfFSIk - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -i --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fe23616e-ab9d-46f3-a2de-cfe5e06a0ad8?api-version=2023-09-15-preview&t=638327089805263264&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SukDP0l2rdelv_sooc-xX6NceHQw-uQNb9nECbUeMqPCa6_mPaf3AjV6tefXMRDihGrilN0YH7OYZP6tjPP8mzPP_PxzgPRjBXeU-RytThD57rlsQWRrNmSn5CeaF-OqfGHNaiw68GtIdFxkGRl0sUHzd7iiFK6auyRx9F1T_bsDoEG0tIPyI_THeQsdTfwERRkKQ0tHa_fzPfLc-RvZmkb-Z-oc9wMHjl_N0-XL-9fhVGOp7bYYRFWrijnDGrCvnii1HHEKaK2BjFIH-TpkX1kvcpw9uYrSnQeTR0wT8IwvkDh9MKbWwT6x00EhNQINND9EtCqDREAji6m0E711Vg&h=3J_D36KMfyOM9x51FcUedehrkydlb4Rj-U82_UfFSIk - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb role definition list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_role000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbRoleDefinitions?api-version=2023-09-15-preview - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongocluster_crud.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongocluster_crud.yaml deleted file mode 100644 index b4c77c72884..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongocluster_crud.yaml +++ /dev/null @@ -1,8010 +0,0 @@ -interactions: -- request: - body: '{"location": "eastus", "properties": {"createMode": "Default", "administratorLogin": - "cli000005", "administratorLoginPassword": "Cli1@asvrct", "serverVersion": "5.0", - "nodeGroupSpecs": [{"sku": "M40", "diskSizeGB": 128, "enableHa": true, "kind": - "Shard", "nodeCount": 2}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003\",\n - \ \"name\": \"cli000003\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"InProgress\",\n \"clusterStatus\": \"Provisioning\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000003.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - cache-control: - - no-cache - content-length: - - '892' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:55:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=pOxMPg2pUrX_3TWWjpUQ1veMcOCx4WNTffiKmeUfkhp-0eMCSAgqKJp8THATUXuKbsVZtLauos8W6s_BLXJWUWoP2ZHlHCbGwfcWRecvZ-_MsbJN9pYhJVdI-BA9YraQBTHtEuDdgCOJ_FRUodMHc8Hh-UVD88LjtdAwTC_9DtuMY-ah1OWKYTSewB08KAI1BGsDdlfpnP42ugAnDyUdvB4LQauVinuiexuwjKDOIYV2YoUv6s1o7wgflPtz1xwYz2FY4RCIJtPPBo0Qsa089BdJHvtQJFD0LvPzWJgXeJDS42A2AicHoqrkSe-NI7ukkNBNiljimNGcu766r2NOwg&h=Yumpegqe7R5y1r6VJQrKjbAk4yplcoPBU-0B8uSw1xE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 491cb7f4-4757-4ae8-86e3-428b08f37093 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085460313629&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nFHPDtyqT5rqxWMttevqeyuXRR4Refmk5MZ9EbdTEvhqSbzqas6pKoQBmVNrOe-4gEoOyRmoG527l5tKc5oKLZ-lS20g8C9WBa0g--fbFczziFmeT_4ajMRPpdNPdGlXY5f6WtTDS63ctZucttM4qg6tqSFC7crdNz60abBGXiAsl6GlQsRw2ircDxtrmPERpRiK_Ez4nR_EWmhTMQyjexBUzDqOrvLiMVC-6oeemm6_TX2rGfsuM5Ky7ITGDonmVxTgLOYsOEtZL96JqeukxE9O8cnVphhbaUDk6RqQAft8qLJD9HKKDCZ5WTqMILKHd0K-WEQUbys4vy19qitGiA&h=tNFcUu2aEdl1HU73cwsCkX_y1aUAbRrDSNKf07_GzgQ - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:55:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085460469879&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fpr_BYQuMYjCRse-rx-Bx20CyGNbfkUbvkyPi9QOyCMVjX3dLDzjb3EUFsLu0Ar3-6vGvuyg-DpbCQn-CEydFNHchVZB4UqOkXSsSmb-7J1_04lD8eM7IuabT6BLHIvylkFIX1MJtWxbI330tVm4L0FTzSJ_XJBn4IO8RPJZl9LHFG2cgQ6ZwTBORCKa9mNs0e2rB2BBVmGf4hRdJpLVtdw_UCvelpsZS0_F5lbRvLFD7VwTPqyli8p2eLoIdjEmEr0jiU4I_IeuOpDjTEvBYiqNiKcm_zhjgaAXvIuXl_PGehCDYonlRTLfiD2iDZTr44h6HRdGFSnjnUYn9CnFoQ&h=zBBFYqDtAAJx0WS30IP5fnEjeFxqXipPYHNIttPhZ5Y - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 14ac4fd0-c3ec-442f-9a18-6dbd6769af79 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085767666947&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ZGAWEqyTZTJbKRtwGYUfG80yuz7PmIcfyarb86S1080Lu9SS07RDbgpAU2QUbcf4DVwoIAKe1u1-XdzhOcqOnHyvvzsGwQQ4uvRdSPSrMjX1FpdOLF8-X0XOQ5R043ddTCaQ_wsAod3-d8XKztrN3bZeVB4JJiv2XFLy-kHw6DhHfFQpI4XliNb2cN89wf4wBrbOMcfIF9_QAiA9p2YfGKgD4WleSt1bnKBebXuCcve2IEMPVztd2O7pRdHnctm6wdL6TBP9H3CRjHCW0BkuN5SAHL9ZfgivA2njcO0DndTlLV0QM3krkVd783XU_gtZkFpoVdsgvhVLpBgN6_fQsA&h=ZZ5_hkkurySZPoR6X2IiXFLFggy_HqnzydFpznOqtgc - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085767823713&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ZFu1oSqdxeFTGceg3km7WGlic8ZMo4dN8djAHlp801ayj-Kxoj24V9RqSKaSam6C8JoyUumamEGKexZtk3eLe1uVcgBTS84TY3Ii2TbXIE8I52gygOSjy-a9CfzEH3c4v-XjVOUItV2VVUYO_Stoh0VeBWK9Rh0_6p8BQafVC1ZSelEBmkjPLd75zt8Nac9_g9-yx9Dgo68YJuVao3YysKwtZVCQqrgBUfofZ8R8WMKa5Bv4-XUx3LYIm7JViOooQmiFf7a1niYlUsr24hMwgldAL1au0o6cK9J658ONWKS6DQkJ69Up7UA0hfjOqAwR4F4disB-7vgtst1kfz97Nw&h=OEOzrZ0fSl71m4lP7pQDGygiV7ZbA42bXrpcWM1iSlg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f70c6b4f-36e4-4546-bccb-049ff11da6fc - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327086076747801&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HhXfVto7aZKtDQJowWn1PHhWhNVjPytqW3ogFSeWATHgu_4t7LegX5UDwk2kp5aEeDjVcax9gf6EoxvAutdUVm1x3Z2Sna4CyeccvWFeFOlybLMwYsYgjl6dAAtBNeZBjnfyKLSLosHEcZX-c51jCD6zVZjL6vLXygpf6mAqMVuun-R0ov0eXWV5D2_bd92vs-QXo3pOq2iE8dC_dgI7CnyVy0uRwoOvKrIdlQQZBRlJjviwn6DbThNNou7VSl2v_CVRmDsQNJckt5KONg8IGcOubcBx0i8HFh7PybeaqBNrKwkq1egiS9Z93FhJGyPtZUtXVM7O-VD6UP4Od_QtxA&h=T-_VjHHZHon8Mga0lEtXSWi5jgnRn4KWheUZpT0B2gI - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327086076904075&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ascZnD0wSKR0U4kXqJiC7mY_LvHo3VZbl8UC1R4S5CHlj5X_WCdLGer3IRoEvodfDh-oLcB8-X0bB2yVrpYxrw9ybjb_3izs55vCEhGNzAG8l-0mupBdTBxyMObleNEVnJ8sTx34x3quscy9glzqXO7ITkDI6KJPVqYbrHckNFYfeXoYu4peEIFkrEYXuZnaNTemmvGIfmWnvC_Ivf7Wmk4p8rcD_boE3XlEpu3l5hVu88JblbJ0IjOSL91D4hY-2sHtclp7HOcaKRqlwrsnmmqds1TCmdWOlaE42VXUw73aHVJu8KzdFnOV5P8tsUWK4XjulSki2Gv4jXgSMtkG9w&h=SHsi0kZk0YxjKgEakzJXseNjCwWAcNGYmI_F3X2pXAU - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 0200fc0a-6149-461d-ad7a-6299c373bfa1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327086384095918&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ieTxZgTH-37gklVkVA71r3mLyZZz41hUpRbMnNcmleVj1pwcmZGyC3BuwI-b0NvyWgtDOjdclRjD-rcVOuaCfSoQ1fKCk4ioaKQ_9PtwCB6nnfZeTI6Oytss8ysvg6M0O-zJL2dKAEg-tGMv3jTo3bREFsCvRkgiRxTuq30nqESS8yu9RMJ7UZL2RrgYeyEPud3r049R42EhCXeIb66a0EUpd12Z_OxTOScHqbzeNGXFtGk5olPnivIIssYYjI3AIiUaxoFtQXp-dobVjoLFhYFzHF-fkb10yhFx82oxQeRlTIcsik4kC9nQfTqir7aQbH5g4GPH0sgzbQq3vQIqLQ&h=rg1UHizwdnWNEZE-nZN7FX-p4-NUwlqK_3VoXbEwaPk - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:57:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327086384252066&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HhAUHfpFCzZCxuh1atwZMVDoEQKDxl8Ji6yWWRKwmzspLW5h89Gw4-AxwCPs8rXycBTGABBP4YlO_B6znDgQkrNeAsBumisw72cFoWyWT8MmyCUpD2jCP6nIVASFtIrEc5HOAauX49UOA2ME4eUxGhgZPrcPhkaBJzp0d19yeusPqMmeuKCNZxgmLWeJuxhPv-QFtbPscKN66G1wuFUFPRZLPu-_KC2ClhMSLZzH_7yBTNCHxB0_Wt1fIUmhxNyXWVz-kM_t3IwjFGmPGXglYusbvtHwHxXK_jDNDgnPlbfGeLLe7CPOI6UePY715IiUgW_5GEt09_wpGTtEhDFhUw&h=1R1ZkR5JcegZAyFFOhUfXdWvdPsS6o1R-65VfgKafhQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 953b88ef-6733-4737-92aa-6e6d9d675da1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327086693641388&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=jyWnPw39DyjWe1_NHthQ7QFlkVcr9HXjyOprSjOY2bZgyjUl3rxztUSPQN1xibpsA3TmH1VaYHpJebBmOpqF1c-K-zKLLNoM734ywdpQE1Y5_ZnxlW6GF62NTYdCshFsN21-lBZKHvWh4UgTA8d82M9y2bfmJdPnIOQoEMziIaUbm3LCpPi2kfDG_kp1PsGaTBRcdoMXpDFzbYeyneiBrHdMmKC6e5qS0FO27AXBuHtUx2doXeXyOrj3CzSOofvZPuWZ5k4z6jZSuXx2ZkdyjIyBlY3GkzRHVa7iP8XzfmQsn5tNzOTQw-Z4Lz-os0z1oqnlIueCyolXV49KedlLrg&h=7tqQbv4XbB7tQOX17gbbPDZnj_TVNvGyN8l0X1-I_58 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:57:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327086693641388&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=imKOaMvpwUuQJKdsj8oYSLaIcu0GFf1ExPduj8dJYokArAHAg6Qjd_88VpLIOPjOB8Yo5N0u69W2eWkMLvVmdOq3s9Bo13mCckMFpX5o-xp8on8sHh1rOkvHkaFQ9j_r_defOX6rKNu1BvIxcxxLaKAn-n3Up3vbvSavFC0yyxBPPotQC_3VZQaJPT3n88l9VSLwZ71IcpLNGmE38X-z5ZarG9qFR8H58wXARZe7mWH0AMnQC2lTrvMZiDNcqWqKiL-Yg4W5q7miOq7NLZ1ySa7fceHBFLtXwJfMH2Al-sjy3XxURLVUOszoUOjuelCnOWNBQQX9kWhTuyAmarI07A&h=4g2ZfTZ--23xW-i17Yk7G-IVLtBThVdHnsCsiUA5zHE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - d45ba612-70d6-4be3-a9fc-5aea2496db8f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327087003036002&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n4aujyASuMQ89KIbvJVTj74N51lYEza3KyvPN1mH7B2TMbLJhWZppM4VqkFmX1xxcWe1enPyY4h5t0EQAROqJrcC5wh9mvO74WU5bYT5SgJmfsI_SQ9VtTuavAGa3PuCdLkguvHPyYggr6NQjM053ZkPASXzi673Ns2bjeG-rIYLWb1Rzq8wWhoTqyMmyyiPVkbDeqSnRM3jd-rNDT7hSbO6BiboMaup6Ke1Yo1GSvtzapqQhfEwK0Qw6Nn2RtzlC0hCdVycL5n8kF3MayaddFuYs3_27UVdZ32EmybsxceCXtq3WZHs2fKo6gnWs0UHbkY0pobR4qh1u4LvF1x1QA&h=4RBp-0StqZ5tXeFkRN8_EdnNqRAijNME5KzOIGy_m1Y - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:58:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327087003193122&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=M6ZGmhrWAPqvsT2_9I0IJugOnWXnUE2shiVE1KrJMQzUkizX_VyfPnhUjjYmIZEP_FKXkQaeO8Rq3abWlDJGMDmhTtRdphuVVAJJQS9cUd7IQFzsjPDmMBfVQJ-L-xkHREnMDbcEH3jHQfHrejeaogiZp7mXSTbb3Q7LfoW3SwxhyZR-oh2HmaNmTpXBYKwLaeB-_zFGHp4niUVUCd1fvRDTfomX8eRndfz-hKzUw6J63anpSbt66TpjRw4FNxAWqwzU5vCbWnue1-rcgaKC1YaRxgDlQp8IuWnIdoVWMN03_iHrWc4cNlwtFNoeEaHQvo4ZdpR1sv7zGP3KvdpNrA&h=qdiClYVkkS_G6USXitB1e2Fwvpbo_7ifHU5GMtYnEj4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 0c0e6fa6-0f37-49d8-8920-e9d68a578288 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327087310228617&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LOm3ViG7vI9ibsw4mq6piGnrD2ZJIyHhCqk2MLjZzClqZAGSvzq58IqF3PPXiOrdbSSM3EH5ncEeplgoI02Jold8s0TvJYHdFfAEZUzY-dXxZ9jas7L1z2BwPdFEQ_bMCHZOTQaVJzRLt5XFx5f2Z82E2tp3BOB6VxUkbd_RC_Ai71i9QLSNs6XEbD6xfRPtgyoiAa40IKplLlVYDfMcqihqiP0i4AZHBDomwcS6cyarvAB2sLw0c2soKj9n8_E7MdXG9aTXX1O_c8BtnNG3XEtCu9BPnZf2m4r4KninuYpw5C26iYXWV_heqU-DDXcGd6eT07_45XCAGjlsnHyMCw&h=BuI4SezRHQ3n6A2xqXBXFIOw60KOPUQIlQ9ne4aUe_g - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:58:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327087310385243&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=BDQVJhAhbPxg1TupSdqIyYYFlJhFzGW_9qk1ijYPvZhQVO55_eTKCxWKOeiDXEXkn12YaT8j1gMkW3RBa2uDHCP-8IXVFaxugkuAJervTQlFfjlmHkk4JuKITOXi2uwG9FmXRcYZ1CReAwqis3NG8zY0AKWatxk9WPjy3uRMMqYALXD6ep1ioOB9cKwoj06XEW13EmErHKl8RlLHfWL_k6Meh621_a3OzeT0A9O_3WAnvUcMtpK0XGCxNjSmRDcsfRYz0CH2hPKSufyxuIuiHWYXzGG4XGdxno_AqwzN4CepaaaGy4wawcqKvphiIDGS5Dh4qqfOFH7DZxbFCYcRTg&h=ubP1Nw1S-bhhvfvBMxwYck1ePVrP_upjhqC9vqGWnYg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - ce8beea9-dbc7-41f1-b912-db659562fd63 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327087617904963&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=KUD2CcnLKZw9BULqSfMWOp5XYwdyO2wuis9r8TtCrTmJhH7GHnIFTUoFGg0rUZ_9hCNCsvS5-XiCgS04Uh-6ol8jAHRfGPcw14xcuuvZLIEI586I9Xx1HD-VD4pkOUZR8ozGywuKuwK9kiPAsFePoEnizQYo8h7_JA9PWjHJnY6AN-_9WL4MXe-9X3SotKyBac0mahwQ7qWvyJ-2_IrITiAlHYUG39xV_UkWveZ03ABCcavia7xennmcmdo8ZkcgNfOS1IeLteOKFlt0ktChKlrIrWRi5xDG2ExXGDSsh1kVkmgTUgIJnXBOX6uOYZiQklw1wgrk1ttd2WizDctCag&h=I6P7PqNMjMoX8sgGZpz7Z2k0uu_9-b8L52eShTv7vRY - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:59:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327087617904963&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=e_CNu3qLIIpmatCLMnBxytmgaK2Z8om3FuvIu3-1_al3yhd48kLHtG0pmNVViArv-BBhEkn5ZbIOirO11VTpCnOOPU6U4vbrEw-7WhZ-k63oqdIdAtiaFVAWBVvnIlX_hzFbUS96BrqgXFg6rhkvxtfMwysg_lMME4wsopFMXR7tptWOk_DgM_r1d5LtEfWelL13Bxa0rc086U-XpDZsVJWYk3i8AuxW4NGat5E0wEL02VFfjAirCOrAYRp3rI9jxUpW5Bc5uQPscb6ldCXDkUr6yDZVR2xDPXL7xxnvw4p4VPTTNxiJf5U6_iuOJMRDvQQfdETquwGwmj5PJkIs9w&h=hVTMj2heTGBq2JOork85vvFW0EEGi2A4FJmPkTkHZBA - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 30e075a2-fd26-406c-8ebe-6624b7e747d3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327087927129402&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=JxMm7omaNovJXBfPAb5bxD9BBeXnpyp7mOt-d_E0tT__bNKpUlvF963U_zidERIa4Y5mFqwD8-XNujfYz1YQc0qoGmLWUg-d1y7AtpAokM_IQq9srxHdBQ98myGUNjipk_lEZ8PTRwoPxctkTzW2zawncTiioF07gcN80DcKKVtxQSJW4KGbxVvvVQfhtndd9k9Bx6x8L1yk9g7-3cYDnUPBgFM6CYcxxcAkII5ATy9f8Jzujf-b7scuJXhEi3TWnY--GF3wD0QFs_vgMkq_XJ3zKK7sAJtuTVVdwQkIAeFbUKNLFjwlN45PKx2SpOzne9KPhomS82brS8AIbST4ug&h=Qik0ttcpVel0y9WmJPbPx_9NZBV0ONAWxS7UQ2_b33g - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:59:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327087927129402&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ORUw8rDCbrJqDCPtarWwFYHl6y8ynlwev76sc8B7d43-hOMakqtgn8zyT6hQm3OwElAH36fqCJFqQZfA7erU29lPvyFjOJSy4qvD3rOZ0gws4ExS3HyqhfxkB9v1MBBB7PhlaT-_mr6mUV2Rj5quRoxKVyn1OClrDD2Lt--Mnlz4Kq3Fo6IE3GHUbdSn1U3FTpKu66a0zaA3TJg5Ttn3-SbovLLrX1JlCycSl-r8OqUQFVtjQeXPILECtaj3tEDMBHm4tbQF9vi3ZjtewzdG_gWidMvEauu_UvY3Tn9dQ9EaeZTIMuhVoJfLY1a5Oc7LQMJHYcevNpr5NyZdxn3INw&h=3Z23SRPHg86FIwRFNSkxYxu6w7nFbmJgp-e94P97mpM - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 9217986b-0287-4011-b0d2-eb16de01ea27 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327088236352930&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MUTpImQYhW3fXDEQqdoAZqvczdAJ5qr5NR4eRyKr9jLTVpeyOVqNA5neTQCTNMJesy5f5r4iVnmNA7VKIqmFNwudXVyOFSF4Nok4xBfLiEvmUCPD-1J6umej_1q6QXJ9pfxTsAYfwpIYm_sohxmynKOBb7kLTXNV2UwBeRrJivxz-3eyocI1JImgImzm-IJ9nYDz9Hl_7W0R4a0mn6RSQ4IS-3SyXxZPpZHyIEbU2OK4pFu3PlzWXIdbamrJCOOfav-wzxXcaeiggQFIMCj8OzLWjcWoslQ9QzAgN3XMhLzJNN-YVzyAbsr08lV163noSpg_3E2hmI8J5EybjtqB2w&h=Ipt3OupcUtzi8PbQRdOxrhtn6uJuIcfQSGDanSWqiZE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:00:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327088236509591&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=jCaFOHopGmx8TjGsbnr2KYXz3Iude7SoF5jRKYxFEQvemymJP-17_SVFfyQQv27_t6jk7QggzyrZgKxBHdiaDVANYUGNoX0xTb0EN0pLKx1LJQWRC7mFnO0tCLpKkiEx9KqefUWSgcBB6-skDZBAMBVdwNb7aVmb4Q4LB60T9fTFZEmWfAtQuzNmGLuCq4z5gi-SdmiyyeRoF2SIDfyuDIfpHGIp97n_1UiP41vB85hWl6bx1mxl0fJH82rNzYbnecgoODg_DNYNBNVyCG3Eon_YDrMJJqU9EA2XKiTaV6EFis2yHMO4sxioyLH2cHxXZ4Qkv9qPGOmDgbL8-_kP0A&h=BNeYcAGjykYM95cU8E3h4h9b_Yi0B3IIuA1Ld9Nx9cQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - fd2e511c-f61a-4cc9-94e8-8ab161f02ab3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327088545582688&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=E7a3BCKxcjOLWb8PBpHE0aDRwpA9rA4k1c8PTwNOm2Wmoer8O2ru5JBvWZk2OowUWEEdfu8hHcic1uAA8YutIlLhFUZCANTVQp8Ye1SOB6SXNktRIeSjGILngcmPSn9O-z1nVqSsohWCYpBxsjY-Eq0eVTFjYtzZQoTZpPXW-qMgTj_sRL7JeHeugprogCwYYXxgjF8uqMQfO7djde0hLQ7JwZLzNPqygWhlMdI-HPbHC47fvgFnoHnHypqzs4bcw4ZjwlIwQOuMZghi3emTmRwkfLxO0AjcSQjiSkch4z_hU53W4yM81sG11VlEL1U7rzzUZZFG2ADzFcku0ZRRJw&h=h9ldtPK-jHcLNvx__U3bNX-RpguvWFUkWkuKz9Fzhhk - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:00:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327088545738892&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fxhq9j9kuGS1hDEwldu5DBSgK_E5cEcekIOLqdHkMK8yGYMoe4FvkfEXzWHgbKc9bt6o3K_huQshT3CR-zFOZHpGwHT_qFQZRaWUviI1ulOm-iIiKHzUv3z4-QhND4vmPkYan6z-Q3-OtCiiGqTruXeCoHF88k0bG1a2r2JOMy2i2TguIIgX-I2fZdve9tPMCqBhMRSqfX3b7fSZrZCONzhdiVsdjizg3zdS2ONtsK1eqUBsvuUPqTHWrpI9DRvdtHfZ8ulMAZrD-nGzxvmM0_axM_DN4amGQmfcapLLxPhxZ2S7ox6s4S4ti4UIP92Y-sq2kvFPl9YbOkBnuejsQQ&h=VlyIzzXlO5FJip6P9viPMv4CUjndPoPpUysK1iA25Oo - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 67ad64c2-33c3-4519-b94c-ea270edc252c - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327088854988480&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=OZpIj6uJDhWsVePfe7VHx2495KfM0ur26QtjfX2zgPpSAOXSiC3s95GnFiZR95BCD44KLpoIx3gzxmqNieAnMCxNzRo5-gCb1_TBwK7rXmosnLZRIOGBkaCekB9FzI5Ai021Fh9-mc6UoZqMNR0Sn_fEMwADjnLnYy32yaXMl9Lr7QzExYBP3cAGDaPzCbxIusct_1JWnt2zO8YNsXU8fjDCitu1UXjlA61HVmysYfJ051gsPF863_Ux0Dx5KjK1RBoqB3SPIO_J4JUc-33lorvlDhKxgfPqhMjnpMcYJvvCewEiU9qhDgNbvax3cdeVtd3i8PkV4mmLtyZtuFBeGw&h=jiAu_5OP2mVAbxnF4JNysClDWv5ZIO2Xd7uEnEXHCYM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:01:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327088855145150&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kGe3uyPuA-5A7xYJfTpRK399lolU_6ITN9nyTlgr8Kgt5axgyXvlxkJ0mlRYM3tyRW2fXpdOG_5e7JtvtTGsRzBuENeYcDTxZxM8jHO4QSiSspf7SrXLvEJpV0YokcepWgLtZnHT3ZmkaXF4SDMB7iKYAdT1MFnyf75iZ-ZNvVUJnJdomYdiM-O4S7R1sNACjogRzOkMkWw-7qIV7CLsD4e5iz6qfi6_n2_p-NetsReNCzJLTWKhleDckvzGF3U_s3JyQ2OvBEGBE_OisSs8xxhSUmpQKZEX1997ks1lEnRDJ_1_tn2FKXA3Nrz0pXvpdSs5-k5KmCm02tLl9vYoKA&h=vJLUWtvDSkd1UjpvJqprO1a3evjhlDWv9t0DYj85Lpo - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - dc1d5cc9-8edb-4b01-ab43-627894833045 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327089162359083&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=qDG-jMvuhMkeDLguecG3u7Py6ahGWFzYrzVCpw4MSUxqfCrTVa7IV26uZ_Cie72evbR_knaa6o3_Uqf7nRAh6jBfin1KxvBReGnh7j0dW_9WhvxCCgSxfJPAezScLLxY20vcKgajD64NEuXU4E7EwUkYsSJ0RSCc9HmxdaEiai4tfFfO38Ln4jk6V-zaxtmB5__HzIcUhUJa5tmGHtnDaU1kG397XrAtGM1NUuF-9BZWS1Zt_8RX795QoIS01lZM_nIw8XqOeAeH7g0GPA3PjjRNMWHYP8U2grqqAr5AnVWRiphII3WV1uP_DRJuSGr_S82lzqzJnPKQKAbTmXye6w&h=8tiJ4XatnmI3uWql4vS8NT80cQQB_wr9DSuEHSt_28I - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:01:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327089162359083&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kZfCyy7cGYY3Z3vYtNj649kfAWm8YP0bNxwOFARs1K5yh-nf1neC4S6C8uxhDXcp_nX_eSZhcPRoZ3FB4aNyxT-xFGtksw8sNE8Pf7yTW7Nxw7WuN60OM8JNOpWl4zEZd7ajy1ZX0scLtgwNpM3DwOcD6r78-J7ouOiQPwV4pboJj5xnlUj_iGYpKKfAfAFCbTbqYv3IC0NpecMQZ7YNBfJVWHplBeCmJbkPLFzel2I6GRdOAXWCDFPc3qJRXPSY8tsZu-kfwm6mNVesW53fa2OYm4uT9u18NKCg6-tF7RdxsYT0h-CzxokUNxbiDoU-C62M1HNIwKpRjshEObdfDQ&h=Xzkeai2j1VoAi6JnMJFhYLqxmYKW6LuKzfXQG3_1zOA - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 1fc379e9-b3de-43db-9253-ea0b5b51092e - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327089469395887&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=C9nd_K_jvnS1v4rEkceftlpUW9DsNZlJ69yM2lAVpTkiSsy4xihmnnfmagBGDQr08o16YC5WLra1HP8rjfGrWRedJ1sQOwI6IiFbrnNck7MogW3D6ajkzEiZ8ZiboEbs_7iWH48VMKSy1lhdzitn52qIxBU76xtS-m8KhBYUSb1gFRHfeVoSOvgaWSegGiU_F-Np5maQwe-L3A_FiczP-XqnNkjZzriMpJG3z99xC7GOQ5GJ2mfUYD8oZlCcDUfHzIT-jIjrAdjVLmwgGpWX2F7YepEuDCQzJWd0ejkig-patjjaIYz_FBf6rK8-DEm1WCHU7J6-LazUaYxvT2cdSg&h=xMnnitnTwe2VekC-tl9GlDGUqzluswJheBZxVtIon1Y - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:02:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327089469551909&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=O38J1M53iRdkD0bWr9Bd70Khs0zOEmGDAYlfAGNNbDqt4o8P4Z-PiFUflP70E8_TL031RJS8tadNY1MIi-4llw95pCxoNQ9B1HzByG_BtX-Nz-Mu1hUR7DCvAbxCUokPS7spvlfDORK3XJQa15OrRI83i9hlTFaVV5qI1t41WtC7O4JCfE2J77eFEex-z3GlI95ib-xu9jtu6c24IUo4W0oQwHg3t-ccfM_gbaAZEDh-8sh-rT6wJG9WVZvHv4ZUj39IJ8NxVU60qZDWVf9z71R8DbVHZqLZvyRr4brCQYjKrB5ih7n13VVA-MRbTdPNbvTAtKL2yC42x5lZoEOxFw&h=6Hbc0PtvmlOYtwi0yhUX-iUzPxbQOGmmFez5iz8nk_0 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 22573852-8fd2-4982-82ed-02dd03a07141 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327089778932293&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cCO7SKS3UvNswNWWjFStD4OvIMtIoH-VH_r3tckwO4FMsHUhHuu7tp-cKqXw0K8Y0VzFZxTqVocAw0WnntFlRZ1ba-cZQT_NGwudnt-fJ209O0kJFuFjf5g3CzGlDBoIkV7kfiZcPqMpp4ftdu86RSvoYbZ8wIAQL3QPDSIjjL--bGuYhcYKK1fe9UL8fRaHuzfpUu0a39WjRDJojy24OR_hv_8Jz766wbAgTe4d3lAK2vcE2IxnGAa0V5SkOgoyUrjMd9siz-OogXpL7TwiaKsYkkwRbtQVkp3LcEBEb1-VUb6Tfws8WXi_08JtVjIdXc6iGocuiPAvo1E4h3FYrw&h=W2WZ_gcqhdG0ZusBONHdNVPbN015CYCryElIkD-cyCo - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:02:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327089779088646&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Wsa8Y2xIqsvVyHPrxV8qk7BG7r03cMxw346Xd28IAwP6Kq8fKWbMPppwJzT3un4hABCPFA7s4yTYR2LFhXc_2V19EDrU06rZ554SG0E5A8QhO7buO0Zv0LUYutsFyfiSobbH6Xf4lHRXCNJNC3E2pAWybS7k8dgeC1tnZ5h5FrKKNV4Cw8JfxmIU5mFTYpkFX81e16pISgmw61QDEx9A1-1ZJuRMeF-RApam34XiPfHXtc6YedN56n4QjHSwt658ytW6Jq6SbdvTfDsbzaGp7St33sEnE_5PU3H8WOr38ik34jo9FvOy4JCGSv3FE3NdlqWNIbrEiWfEHBXAzZBqZg&h=_nsA32Ftq8MLE6zRhng-8VfBOsKvwDPu6DQUVyM_mOw - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f53a447d-0bef-4898-a2d2-1e83627ffa9c - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327090088781464&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MTKPSzjQj4SkmIw5Xw2AM9JcrvU7Acod5ujgJoT17laqovlUMXPWB-20FQgh96xJ2Yacw5Tr5DiNYbg-K3GTZiMgN2tyS3oZqUagSwnvgMCEIGfWBVG5dVwUaKYpYlBvST-ULLkHGeAibKUq-_6CgGET5VPyH5h2_JTR-_uWnhhIvffub_y84xspU05lB0ZLK4hFB2asU5OOc1s5WIj5tMfrDTvccsoptlW4vIxkwUXc5q6NI1VAats3f1GHakZED43dlYTIJEA-koojcdm5kjb6eL9KJskF6_YXS3X-HPUnpqVwkC0W2behzxg55XUUiRpybOtnjgqrP9NtAKV40g&h=U00LYVy9pw3qq1GOccQP28l0wzjKUED6g616ODq0W4o - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:03:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327090088937927&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=TF-d0XL2LpicM7GHvaEnxVQFG56jxyhG4Zos6qz_Pfuq5vmZVtSMlA2WI1KZ6ep8GPj7UlPmGnxD2HPwlili5Kc4o8eos_2FpziKKRPZK4IAaCELNCrAuaWUCH14QwtOmTGiP1gOHwi_DMWJYZ50yPmNVgGZxkViddiJsHamuIQuHRDd9kG2dvPiuGLI66yYO3zKw63CT4kIeZ3Vm4jhuU66fhOeaOj2b9IIyM0CjhPNMA0IHtgw9M46iHgQHPA4rNIebgiW98mt03N6tOp5w69LINnmXcbBkwZs7P7kkiyqUxmX8xgdFnCAkcIRrykjS1NvVHPOrUPdZvmdeHo3QQ&h=f7XH2_WzMsLDN5uX90LADdXlKouFHcoqhK-bxtymnvQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 9adfdfdb-dba9-4d5a-9239-059a2fc909e2 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327090398174314&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hQThVRuP607pJzjUXkr2EjZFaTc5qCk83iferrwlgfJ90Y-wWvd87Y8MYdpaHMW48xmDWVsYr1w-BRAAAoejFs9Vi_Zq6WTL33Wq5MMlrSbdFSCya0AfSZpBGddjuiWHscWZKiPN1iSiuMd3E9OAIJJyl7-n3iSbx7P1GZxkqLwJ5KvMM7yR0TE7BZZM06S-nHZcqw8HAObkTaE8CcbN7ZHfzW8-kNuPWyOuO9RkU4hBRSSCVrZ8eGB01EEb6GfRTjUZ7oX51_nrRoqTNyaDlj9vI5xZQ7BFOKafbaCldKn3aAqauQ6qFN311Fa-MT8CNQlFJV3dFhGANFCDKhMwyw&h=2snRWfuRjLE6SClciHcVtCeAIbAxCM8XrcMwDb7r3e8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:03:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327090398174314&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kiGsKydZCueD9EpDtneGR9G8yrM3CyPSJ-ND1UAv7yDCslPwx8YbE5jv7cpHeZGUvzBmy8YgoIEbt4dknq5S3V6sI3jmiNQUXAMB8gSiyImwtubAojgO-nLtp7gKy4hPU8GUJcVP4moMB5D5-Csue7t8A2wC_ylNrn6-F1v5HqnejQHXU4ixxuh9-E1mqnX9CIvYgja8ka1LA0bl419roP9ZnDT40CgsVzsJo9YVB3wdBACyI9MvH5_cBJIUJH-Rt5n20IwGhMzU5mTtOMa80zQ1aq62A5g92z3jm6PPjZQOjfo5JAMLFVFC88uAwd91QUx_d9KwugN_FM7EhtAtnA&h=DAUQjEXnpXo1m5qyvAVZPRw5AJ0S17xjDdpQSGY2Q8U - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - b607c1bf-96a3-42d9-9723-686ea3b3ff52 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327090705524109&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ml6QbnsKstKgN3OU5IcneIuj9Dya8FA_7wWez1vUSbmead_zp4ZiLZKfPKm0frqDvk8g5_EiBJT_zpM0ZIXtcIJJ_Zyvw2zA8Co-GglPaCVYu_ZZNFdePZgn_dBeRf7kjvDRzypHKcx0Scr5w2boPo97d7xBb1FAthm1MUXfo9sGVcGMoMHPLoFjoH_5N-cdFqfPmUZPbskN6jBh_ITUMur0boOAfuFUmc7kMvy-Uzx8vCK5QSKx-u-91LwJkfnQ0EkAh83QrBwdZ7Jk_uec9ZttOK-uqIcZnc_c6aegRvNk0H7juFJD2qDoQLei-tV8r2lv1GDBkH609LZbS79wmQ&h=iko6b2PUT-dps64VjOmrEdbKEkr0m0yDYsberYwK3Ww - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:04:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327090705524109&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=po3oJCyKevz1pIB-LexBNe-MTAMXRlcYtNERQCDBT63KZcFEcoC6lSdCwpAh5-pa6vnaVvqxRAWxD9mexMLQ9jcoTtfX6ps8cPwUuRsLAbs0xawnOvdXbHMo7knvWO2Keifv_MZJQA3qXWofjp81Rbu_8c1oJtshXiIzPvhHWdlv3UchHm9fzRwmSQxxyrCE-V-KV0wwFuahkq7tNr8ahlcIRAbgqI5UE8m_2EinK-lhrJB2vx55hCmBqdX6uH8Qk_143uiTqL55qk8MZJFdc3Jg_O5OjB0tKItCyT3MsMXR3RjHQELJPpyfraW733HBdPtsor3eZmx-dlh_BpOrig&h=s6cWiL-aCzngzYbdpJcAyqjfB1YUn7aFgC7KNCvCYV4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 99a9bb13-05d6-4bc6-ada0-e9ac511977c6 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327091015060579&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=BgvO-UYkQUf9LaVBG2hkB-Ax2Jks54yK_M8T_1CTGlSZc5JG-CCTGZr9xhykndtEznEUEpAFJwGesAlEeJAaeH8ymOilTw7Fla0HF7tPKssCwhFEzcX_v3HA1eR4zaEh5g_13a1GF5S8ahiT8FxTSKaoi00m8r7Co7vclQVu8aQJ0sTfd1sBZT0KqLrXbUOjtH5ER7q5rGEihTy9nWrJP0O8qgsm9DKkjeEs2HbNEsY_DyQe6A7ZlLVgONAGi_1vvKMi5ghsbFo9jvTLb9AyMgWMPnCNllSu9cpC62m3yfWSWpASRlYFF6_t8a7deh_OUNZ5tKqQo2Ns_Pg6Dyr7Iw&h=ykFrB7naaf1aUjGs-MKzMFhSwZ70l9isqEIdnuLgCRc - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:05:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327091015060579&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=CCLrcgO_aJjEfOnPh44fY-IVT_EUPFFtbOziz5W3ZCup7x63SMCgUa3whghGz9qc1BQ52YQU9UroHA6yO3ebz0VGOK5telRBybSbxjj4ipkL4JbzHvl8xmLhIp78ifFaCkXx5rJeX3Y3u54lXxmCKdqt1_9Fn-rOLCTAnqo4r6VNxVFxIR2qYLReD08-XtbTBLjJzqF7YpX7R6IHRdprGPaJi4G1TO8CUSyqCprta0YoW20WoPFx2cnwbH_pNu5yR30TfD5ecslBBW_0Vg2GjnHvOC424KNPpE1Nc8eZ5oxaLn1iEB-jEWcyMtAXjscVIqqpd2FZ80FivzL1rPE7qA&h=4W9swlC3h0PkhMzRuHWEG06bom4gYGLyZTgWr4eX5n8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 149941e5-7793-4488-9f74-93b3317690e0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327091324447073&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=eLeOUu6YxgLp9L7VM1AWyhYW7W_3m9DdZPSESu3g0jS8fVYOS95sGAm0WUwJd__6kUHFSIsxmML2Z1t8wfXBgiVO8KTITHoRuA7z9xTIF0M3xMNSA1ZKo-9OzPrmPuNeMdkBU6JLdLI-MAFi9zWoniYQT1kzNUDDJIhoeowwF8ToX_7VcR-MO-uayh52CEVkPx6R_untvrXFT6quSdt_eyYf23L0dZgafojOPy5v9p2rLH8IHo-PFGnMRXQQk0NVZnY2ld6Oh_iI6iBt7cbRx2LA8bQp7DU3FPLGCqLjZmPHjVdCneE9GbNwZwBAZgBCFMvGcOWYqae1g_AEDT89Bg&h=-59_ZIZRtwhbbAUnyy3foF_HFWs9Y0ayruO91pm-_Bk - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:05:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327091324447073&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Lv2HwtGhMTOiGZL70rKrY_ZPXjz05jzNUXo7fpw5ylZju3haBR44Gle01YCI7ufOnvMn1LV6ye2Hhhcx25CIGB2k9zfb9iLVQZ5SF_Uc5cKq2ZG8c3-RG-7q10UABJA5VLcR8Z2vNsGsGZRXfK8uCmmCUzC14s6JP76C52EQHk_sh_bUgo0ENLLyhxS2apUugDRUWMQKkFTEbNh8uvNIyXDkf_rcZ4-VQF6WoOoHtm_JmyzM2l7Zj62XHVcL0iL9QlsZRe5P7It6S1dqNKNTRLEDk5_0sHbSMAETSyflDDNNB9UJ72QN4BsUcWtzuIja2lkcRg_RUjaER1eKFrLrLw&h=2GVNs0rJ2WbM47X9IZuX-QVmQGBUHNwqmqHUecVcQnk - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - ff65d204-c27c-4ae7-a6cc-f5bbe0be14e3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327091633827535&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=KU6JjKy1YgPOnd8l5IQ2TDTxn5tKespawl5W1ih2T4pWM5Pat3Ccol4P9OuGQR2uQ8y_nvqL8lfVUk8TKF68Y876LF5EmJhvckNWmY4-PBjGlDbkzFECQthE1X7zgXFF3zkYiAJlAaMzLxYkzdK31-TqOj-c0MsOwY5lyyuGQmbBcx6nC02H_sX4KfX_JVN4dL9xcpKoGrCOVD2CgRt2GYSL7xW6-0KerKoDacJXghMsMufkdZoFlDyGAtzqWl7rU-ZwKaFq22MZsiqExjblWgwpbFDx_9rmJwBenWF8nAUJD8kM4xkUl8tAiFnPKN-kmbXrl31C4rbSZScG5BV3FA&h=yizs_lRItFJdZP5VGQ_nWb7gPt6FW1OMHHusvLYlofo - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:06:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327091633983768&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=beh6J34VZtHcipHazALoRkroNL8p_aiMP4L5u1qXjVe-woXwH0xS_RDa7a7ux5ksIyoczJFvJ1xTOPH1iwI7tnBndgiRGp3DTm2G2B03BCPUSx_8EOuKzc5e-kSC-StMYxfdKy_P7sZLSMuZIbo7RTCfowLwkTIKKpeWfsiBh4bEi8FdIyy9cpTjCZRC2L0h2EoJPSPEnLMxIcAZtDa0JyhbY5YTwBwhGhNQD_Wd09if_pZwlf4I_nl9cFhAsRCrah1cP6hUC5MelOMS9Px1da-pvaC33Ok3o1udDsgW87mf-9oGp7M_xLoShNIItvJANPyOL_AcJtYv_IYcRm1i0Q&h=yQRtvKb9DyfLs-CrJ1O-Fj_a6baWzOlufmtxeuRyDUA - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 769c5e50-3578-4d70-977e-89848788c731 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327091941527350&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GMSF_oV_OE62omNPre3aVJt9vJn3SIPdJZwQ-zvZ9U_TCYNrtbCCbGwwyUokcioIHe6IHQ88ZqVAf1XsI-CmMrOwHgVn_wBNRJjtUJTHqD4FvalGW8W1mPoojxPaOloTujoTP2dyCNKWbU5nfKCKVMtIlw2KOsxWSdAYZ_TVcfCK3H3u-Dbinfl5klicR59kCSvi5zZL2WfZpVQKLZtTcU6gMMPumCdfH7ZymGlXzn-z9Diey2X8R4ONQ7gLn0fY54Pfy1B45dRC6r3qqHVNp7HsnFVk1PVBmDeMCejQwwb-CuNB_Dl-onTE-JPXnQTPBTk6SAJRvT0-Prz1LSlCbA&h=M22FtYpb-u5_BdNj89vpthpnq3cwZ6FsKVemfVSStAs - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:06:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327091941527350&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Tyrtj-YyYYczAfN5SEc4S8bLWHLgYVLUQO0OfLOQPG5340gIL_nR-bJ-YDNoAXXJdVc0JWjBceOQVuObiAdvSMf20Ui7qSprDsQDrcg2IpTbGFJ9IQswe3KjJkpkdSPaodbqiEF-Le-G59kSh0eiN_XTIVGBFbqlU0C898UKyN5yEfkez-P1n8UbeA0jghh1lYX38Olut1tDF1c8QN_KS-qU4zqrCpTzStq6vrZMeAnrPYHVrwFwAfN5_AC2iZCder7BWGttEHB2wNTHRSJcCMPc3yzByZ1CLEPKJ24Rhy7Uj6_gTslt9OAjbJNLSDXZxS9dCFqZwTAkGlBUW4WQTg&h=DQZOu5Av4-VupasiSTS1_2mrtR_PuvpiWm5rGjU4GKo - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - cac36c12-b6dd-4fd4-abd2-34de06faa70c - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327092250907226&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ghxVfepb34nvWAu5i4sHeg9-DdO82sNrRVn5eeiyFY_eLXJMSI5CXcSKzdk-HpvEtg60UTPwhk0tMCcNIj-kqB3oZSLJkRpZyaxoByhqiX1V_b_mkSgms_i1J4I1LwSDUxPFR0cIWXjhlW1ghiZmt3how_HjqpXy40sC1G2PrlW2odTMDtjYhY-zB9Xj9A3wnqepca844y_XTq0Jv7cUnbXTk3v17Ai8ghe7zgLMN2BWX7_iFsr0Rxdq7ThwHr_Y5z7HDt2l-NUITm4gW0eid_FXR22gweqTeSepyycHjClBWyaIEpZzE6sZ-z5GezhvNCSkK7nC0jGYMgafSFopZg&h=kKSYP6Hd5xUoNxZGI6jZeuEs0udirFxDaEzLCuEVLz0 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327092250907226&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sea66EqvGnKwcq9macvlJkpw3V9NAbflAXv-PioYJeyguJnyjx4Uu3Omw8ksOOBYGXdP9e0hAGTb5TEEXHzK6nibUa-i1W0v1q70pxeJ0Yp6_2roHYYeCsYKRwlwFUdydV45K4C7z8OpHrkkqajSktkO44DLC2bNkGVGUMpfV6L1kpastxWdqeVWsn927IJVJGPpUygGIsGil9VsasC6LnkByF9uXia2u3IofVMRgKNTaU85ALofEMkMcvxqYsll6pqPR1GDu0Slqje3XDY5PqRbWKXWm6V7NjVsK4pRP9ZylZpIYbbY4RdOwMbMHNKcb3LQCehDnuRYMwcrVZIUgA&h=u2ZKLivKB-SwN1uLDVXrkAzZpizj_E6n6PC4xlvG4rY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 91477713-c432-48bc-ba80-6910a105e738 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327092560287739&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=thdhksXGuxFlJYNZNBZkZJLCgauTIwIR0AD7lNjEX80fPDCQW58KljwYullpymwgOq46mdqXegYRzjApaRdhzInF_ApkPXUoIMFlrdZfYSSO46ThC3ytD2rwwH-PpAvLlHlk3-FOo1VyJ2GiHcVuftx_J2wuPHH-DVqG0U8AzM0ehoxLh8M62aXISbPrexJ3IaO6kx-hrhhip9lzrMe3edmhcWm4H0DSeC56pza9J8dpBEcrQkMs9aq_1YQrFaf7Ooy8oAsgby_I4knPsiVDSBS9pP-MDrlN8T4U4-LM7oUrvf_220QxUWqFmZCdyAxY27nX2LOcqHfxYfHk7H-Ekg&h=3RSVAhPKdTAcpbBHfij8-rPhUmwE5wQE5sHS2-xTGQg - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327092560444079&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=pwhEewMwN5P2gm7B4vSPTW9yc7yN37LPp9uJYT-FX0_v_Cdc7dxUZhcWEOqkGB_CqBfrBM9Tn6PxaSBX0WQY9IP48Fmc7kCpmJcSSHvosF9CC22j5xNsRHC9lQhGdfcyig4YCh7tdjzlh5CZ-3xBq2smPdzgPY0cKhaLPJ1tHCmvExdx56-SJt1tlden9zErUeQdSItAtGIbmqwOXlxwskb-heYBcLD98AD34974EtiPlFA30tYlkS7Kdoj3_AoOR5Xw-o_AggKZyJUiiE0x42msXES1KPlWT6HJSliIB6dyDKfw0kaRsY6qojA7d8kV058SDJGvuBsCNaj1llMN6w&h=j623D2VLbJGisNiUtffYWqfyHbc4o4uzy9jcPqUqaJ0 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - e85ef46d-948c-4f1a-86ca-30f1f8884f6f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327085457188589&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=If3AubUWM4UuI9pr6zkdDr_iRXf_UH7Pm1FoWeAaOqClOGSAwAJF4BZBQzVfo8Y1s6MyM-dTu8vUwYdB2H4wdm3Vd7xSTl-0Hu6iQZA2Vj1zscl-14QKaLpfTjfgKe6R1TZ6G0k6IFJ-upzr-2iJmB8EAAGUYjQNF_TGB-cse8DVhpYYooyregHyEIf-_xFi3-QGJdbWZc3Ccb3j6wIDuFJnpjrAtq3dojL0PYpxP_0IlSAeq6oor1_3Pwk7Gjwb-DAfVmvOQN8d056gEb6Q-cunJVQ0AcJbtJtkiY2e1mLhHxQtDYGSOv_a_HxBNGXjnYZH5aer5ZuCa-FOMCcXiQ&h=tXyxfVHb6oraei_qExYjmnVr5B66tFE0irrnLh7p7Qg - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n - \ \"name\": \"dfe45ae3-ef10-475d-876d-5bea27507b8a\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 11:55:45 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327092869521432&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fUrdjS35H24DvdnnvPU7OjUWqs3ddezz7geNexLyfoStIvP5esgahbsmLXq-EYuCocaVbVzGOipRyoiXmEuriJ8SHbmIbRvrmEur4t4_iyk0ZJPZlapsTvnLKjZ62ZJeSBTuJu-eJ5XUY2YCybTj4CdTGLu9wvaTru_x6KTQ65m-spjaPo0H-w5jw5nyBqRtHfOj8S1glObtGF094qKe54S_ahOJAZihKg6aH7OWB18cvNjsIylu0qGBos6ZlSthQHRRRuH1smn_iFjqZ3kb04j245O-hlLSfecKCF8xot821DbC8Hj8sdyaB0bwcJHALmCvp_R6VePZwb-2x8f_ig&h=LuPXP5J72OkLgeZZd30CyiNp0QOs7HFTpkZb0kuey-E - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/dfe45ae3-ef10-475d-876d-5bea27507b8a?api-version=2023-09-15-preview&t=638327092869678176&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=UA_8Hdnpgp7e-Hf0hPUSu7mRVEM6QGLmAkiiOvuC8cpDtwi8qWO_hYQ4FrpKrBoqAAv8XigeHyuy70pm7rilH-aBHu99R7PvhhCHdRa27sSvOwfPB6H5X8C0jcvZjGL59RF92izDsJ4061EA1rKVpmqHh_6JItvc09218j0FPOSocIszzKW8ApCBoexSTLYgU-hnQv81nApKCsUykt7dhNAdxW3WZjLL10WqmkNw3beXM7hQIPOGy4mfZIVA60WRJ5SHODi2HEbgDUcCoOnLjDVqL6Pas0Yv4KXz9bmpc-XRCym_dpPKcmMFVk19p9hnPbl3Y_MwJXSDfGkOWcjXRg&h=x7sR_WBa07Atdo_jcv3vbotcGeNtKC014QynSbTtgTI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 04244dd9-25c7-4d02-abcc-18745298b099 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003\",\n - \ \"name\": \"cli000003\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"clusterStatus\": \"Ready\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000003.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": \"2023-10-12T12:16:57Z\",\n \"privateEndpointConnections\": - [\n\n ]\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '902' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:06 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 415ff7e7-1c93-4173-9902-364c5a6c2fdf - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster show - Connection: - - keep-alive - ParameterSetName: - - -c -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003\",\n - \ \"name\": \"cli000003\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"clusterStatus\": \"Ready\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000003.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": \"2023-10-12T12:16:57Z\",\n \"privateEndpointConnections\": - [\n\n ]\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '902' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:08 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 451d9164-323a-4acc-9e2f-21e3ce8aaa6e - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters?api-version=2023-09-15-preview - response: - body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003\",\n - \ \"name\": \"cli000003\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": - {\n \"provisioningState\": \"Succeeded\",\n \"clusterStatus\": - \"Ready\",\n \"administratorLogin\": \"cli000005\",\n \"serverVersion\": - \"5.0\",\n \"nodeGroupSpecs\": [\n {\n \"name\": - \"\",\n \"kind\": \"Shard\",\n \"sku\": \"M40\",\n \"diskSizeGB\": - 128,\n \"enableHa\": true,\n \"nodeCount\": 2\n }\n - \ ],\n \"connectionString\": \"mongodb+srv://:@cli000003.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": \"2023-10-12T12:16:57Z\",\n \"privateEndpointConnections\": - [\n\n ]\n }\n }\n ]\n}" - headers: - cache-control: - - no-cache - content-length: - - '1035' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:11 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - fd36a5e8-8592-4ebe-bc64-0e2b1d31ce41 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - -l -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_cosmosdb_mongocluster_crud000001cli000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002","name":"cli_cosmosdb_mongocluster_crud000001cli000002","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '287' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 201 - message: Created -- request: - body: '{"location": "eastus", "properties": {"createMode": "Default", "administratorLogin": - "cli000005", "administratorLoginPassword": "Cli1@asvrct", "serverVersion": "5.0", - "nodeGroupSpecs": [{"sku": "M40", "diskSizeGB": 128, "enableHa": true, "kind": - "Shard", "nodeCount": 2}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"InProgress\",\n \"clusterStatus\": \"Provisioning\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000004.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - cache-control: - - no-cache - content-length: - - '901' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=xPIlNaNu8kL-ZAAc83GRc5BbIkEitGzbNiABQPHRrhI6bMkl4-grHTUInZZZeVl1ao_il35XfXbbJLC6K_fCnbopzLd_twbYndz9zuBksVrcpbbnujYXpoaOHNslkcK0vCQgKL7rHbz-8aUQ6gUHqvbtkIPG4Yuh-9rGKFb_7cn8WupFCrHk5LXSN3XYUU5AhUlqb-S0eqMz9dQ-EWBBFN7MfhIFDHHGG6_D2RdCM6qWHe4NJa24wbp2Pqhera24Y98OGXnxKnCzEB6i9tTvWsZmPQzmDSG-QkZVU9KsyBXao7qt9OXrIUwyu-C3I0U_jX4gAnl1-WHPxhkmXvjBfw&h=u546jP_bB3hSn2s2aRZLw8kM4a-th_7GG5atsZTgzVQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - aff86991-f794-4245-a860-7ea8cb33c474 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092990490443&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=c3OMS4QDwq8DR3NGnD804ZM651ojHfzRa7EMtkhXDKss7Y4Pw_pJVF_BU3_yzwEsHxJE2iVJTzA-JNNWdy_M33B-CweSkfek4Rkcs4MN4WsGBx2LRoBgjeGmZRqJRlpBBECCtU8dsoNvM0Mmsm4cNAVLXfJYeXE-eBnVwJi55hNJbAd_1G4waZavdl90YdNKWyxy00Szpbqt9I1F2q0Rv6fAcr8cgL1tmt7QewjtFCelFn_omieMtmLyPKlV4HNJSUByVZpsZWCWkWmFN5C0fsLuL5zsHgWbzOvt4JAqo-LQB1Q4pu1U376miRNRHE25c745IwXKiz0QLAl9yNfhuA&h=mjAxfhldIcjMnFiLei4AdJdLQczbl6DATsjAQPO80gU - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092990646959&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=B1Dn4Tt21LkpcmtOYtNnQiOzuVYFDOkEFS_kCjaw2aMQkDYGEJ9MpEBcB9NFJmoGOXPLVjY_5w96b31-7KihiknIJTFGfgSB3u5Ikbrzg8PPLNJ2RxqSV_aGcJ2e5aq9WwZ3KixLmplCll8_jp2TnyxEF6tt7G4Lol2lXSoH2nret40fkmJV8jn04L5eRnQes2pSH-4IbkxsUIs1amZfJSCY-WfG7hoo5HZrZrZu5LMpr768QSE24AmUuZFTZo3UDJpHeCWT3bqwW1z5w8sty6TRubbstVJlnXa4UKe_LyzfrbIpHGT30CAky6UvUA7Yiach9B1E7gT1_w3Vf8mihA&h=ApvThck0cOeAKB4DoDiK9iCM1-XMqJd5oHl3eouwkRE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - e85e4bb8-6b05-407b-a17f-ca446f9d0d7e - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327093300555432&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Q2UUlMG1fMvLGnjcsFadnTEnXJqLUbVPnV_xIoMvRDAiYa1KQm-HmA_mhgMTLGvyWQzp4DrCqjM-fPu1-NxxbekE3qnF5THsnRRyBS-iQGdIZnQ13iP9zRYCk5uLQFYYVVpbJ9oOufXc0nMuFwJG1UxAztbGuKKv3VFeEnY8tCA17ECdxkuoxMkQ8T9Cfo3guyFem0x-04CMAaBHAddVergY-fYHcL4kxJ6sX65pBcdd5k_5-rVPqWo54jlC3vte0E5U49pCgJczAng0EslXHVJbN_A1OfvvxbGOEi5evFqdWbVkBSPbZO_Sg8twQUqzvIzTbiYpuw7_F-vsNwtRwg&h=o0362ZInVrW8Lzpq1eCyZryXmM9vw-FtQrocLTtLfws - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327093300711954&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=YtI3deM_SmmCyglzDfRzULD5Djm0IVMSaxKEgjlGECjUQbx169NWa7kdGPI3rWmr-Tdqa42T8W7oWOfyPEaPNI0Dd-Qu_3AZxvMpasDzW3VXIX6Mt6Y2uuR01Io36no5KT3-ISkueS1y0dwUEfhMsgNmi6fzJxfZdvqKiQtXJktbF5U5eRXQ3YONH2IavtdXeY58XuQ6sh-dzeAi5QCcWaekT37BOQzorh61xzH11qHcoW9NQB6O1ETJWTAXwNPl01WsBkKWbhlq5kyz6TeygcA7tHLb9TaTVHhedIGNiYGoe3J4ZPuL9KQ5E1rgQ6uIzJ5aDQjxm4UTmNwkPr0L3A&h=zy2HRzrYavDuLc6LX-8se-qdFPlcoQIVLFp5Iug-vHs - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 7cbf16e0-7063-4bc1-9a03-b2758f071444 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327093610588300&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=h_1RTb7MuPK6bXcvzHwNbu9TsRjG19uFd_Ab3d5o5wb1Kn-1rZyS5_D5MoZ21jKSQMcLz_F5S2FLGESyWRTGssYetQuvuaxs8x6HVxBa84Z17dwprgWVDS1nPvKkUwxqx2LhDo_kQ2IZC1jQvsHxYnc1Dt-CNhAFukjKFrUFeWmxupRi-PRk_w2XhB5WXpo__w_37jqZrSRf1MGpp6jT79ejw7Gg-0CHGJMP3cEe_nOWZKr_yAHvrUS9jR-pF_DKgMDOtxWk4g7UX1HC-dDW1VXjKVVy-Pq2cLQJ-H3ZSRNcbbxh3K_OVfYZf9lG3syrcTUNntSNrhKSOiRN5cfWfw&h=zCdnb7va8kOU9ui0PfCbUfPo457q2u8vIble_3Vdcy8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:09:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327093610588300&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=VpvS_mczFa4dQE8CZq8E_17nIh47p2OJhv6bH_pi_JIN_B5Ej6lOO3EVjtaOGwZZd4Ngr1-ot8Gcorel3-q9oIhI6shoxYGbztMn4OCY4qq5jgc6HuHEREp6z2d5GP8B0x_D_-TLGeTyQZ_Ma4nEBfw7kachCbBkvQcQJ0Ev_RBCD5HQsSzlS-wR-3XU3jaCCIb8oiAfaIm_vRbv0eQqxFKUE-wauxHgFs-DixtZ6aorAcCjSqIv2BwwXImCYdjMzqFf8YHG6hQrmzwp-AuEl4PkiUxzGxCvJg7KnCY-5lnLFbEC1PIs091qZdWNLAJHEjxvMh9fBmrrsrF3xM5Row&h=Ofk_Fx8E9HtaCEbpjKtzuORVEn2ZNTMVu1IZDby8ruU - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a2c71491-dad9-4f52-b045-956bfcbff262 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327093920678945&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jKxUa7gYbK-17J1sKKkqcjJr6-8Q4KCF8WGZkD95z1pu8c7fAkV61TE14kxaM91hG7ykUM67lc3vUKwVn9yIAdo9LYZNp-R6NoQFYkRU41fpn53yjGrVZK1lDI1AeZgpbK04PPavvb774kJvbHPn0DUxatmZDO3im8Lu_s4eQnElePM04ullGpzLmUGP3tHOHynFFmEFyeYgWJNjIV_jLK2sW65IxkjqHKT21LmW-J1Z3gVS-pylIAz8HauPlWNmkqAvfEx1t0NvlCvchvW2BX6FXpY0HL2sfkimB-ie7NiPnWNi8WO7zEirWkoANE2oy0iXJxVQJGHhpTIrLTcrZg&h=nJ7htxE4Wq6Eq7Ll3YJaubRy8T1uB3JC57qOfX6ZuyM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:09:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327093920678945&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=DaiXRbMMr9XdAyRb14xa3DqXdGnme3YNrF4K-_NYYWQ7SsNNI5BITA5VQ0q8oMFm06KYm_JHsMk1z4Ep2PfKGChTsmEXtWU-of8NoEefch0_aa-2v40NqErSbhLDZeyY500Poeeq4bUGWk-DxJ6HcN3wNw4kAUry-go19qn6Nrs6Ef7J4HWazyV1nY5A16WXrWJI6K3xqQW_7J4JnaGHKyOd_JBqOtkgciGALqzfvvBuLNBNVKTIoBALGnwOA94A546Mky85UQv5w-Xq8n71Qsg2RKSfYypiapRXe8lPZIWciWtn5LRXiv_0C5JEozaT7oVfOayNFGMw9MIYN8S0zg&h=DK9tciIAaEQ7eES8FIPKUd23Q1ZaSWuqwxP9gzQtQ1s - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 80df26da-43af-417d-b054-e887584a2b3f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327094230804241&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=u0Lgt6aHaSpwanE77AQjhVkWbp7ZzA8ksp8yJQ0i_nQTxIij61wFWdGiTtwnczu_vw4UTr6ag4yXWcAwHknoA6FPtgYV6Lwd4zW-DPnqs6eX0eE2rsiul5O8uCn2fw6jUrMoRiYtPQEGJ4vEZAS5J_sUi6WiG-wRP4-S0shFs9Zxy65HJXtoK0YCPfeFfC0ypZ_SBcXXT9y08zALtC830yu3xQ4LfBpwVtIO741DtNjOmDzT9CrMJXXmU7QdAk2Juwv_1HBkOGF8Ii8-lfPzDz-Yo815m5lOZKGW3KCIyOaHMvaKRK-B94jMlzYkHMOW1E8B5hj7BrvyFJLcsPVXlg&h=cvPsd6j4Ldjait4Q6RK5N7Rvc0-W7m3bTrsfH-2oOz0 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:10:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327094230804241&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TPo6YI5yhxdMxa-k1cuPmK7vYwNDY-jQ-wWKsn2uhpQoei-6ax-L6wawe6ga6o5cKGxaI8YA2YvP7IPSXyt1suEVYX3lqcFRJubs6nrBPTd_PLld64bweEOg231djoSmDASBlQW4ju0nTMTu-axzHgeLNc6bkL3Zt9LI-xthrFsjg7v-dinfrI9-E_7dBU1M3eJQYpQKmBCunnXJ6yDt3MCXv_0mR2IUUqOt8dBJhClIuUwxg0w6md5bayrJbZJrPQ2qAkOJcK9rWjf6B5FJ3druplXqpBOZkkHRIkcIsFwbMIdEsSvKguHfRLmMPIwOK6Upq15Y7SQ3xgAKls3xIw&h=TV7_fd5gIccTNOsxaf9tzW9ZdrKIhZ7m_HeJgERS9gQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 1de41326-5b4b-404a-813e-41b69b846bfa - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327094541458117&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Or7_XnVaStXjvLmv74oF7h5mcB_TamjQ7E8GloLt-FmwPLmYq5R-NeKpr9T0ybwadQR63088W3EmvnXrV89oxBvGtD19o1YLibNz8OjyXLfPuhFF9qTPSCYbPbaCajEfYrmrULpU3WBEq_yBnfL-YNu3WbnJQ-cFYoYLDlFBe-TPdvGZz3Da3BsOitl-L8R1IFQEkW6SXmhns6l27HrazGLGc1LDSMTTVg8OTXTjesuiAAex4dkA-pDz5UThSDDr7dPVtyrCd_R7xAfXMWVgymod2N8Ma0q6pKL5htiCpC4aePJ93ga_Lr3BN9HjuFspGVtmaggMcwfSIiR3nfcblQ&h=qNFwOc6yH4ah_QsvAi2cW58pK8Q3AeOSIuAIAoq88OA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:10:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327094541614886&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=h4weC-Cw8-2r9z8R11zuenoVqfZJEFFT0cWJlUD_K25xY9PMrOV9RRZ5mzeJaN1LxOxjw0sDDfyavpoEUDkUaj1hMhypc-ZXWlRcYvhGRTN064VQ2_LSZWlnXQVakBeYh-J8I05HsAgM6_u7qoEmpI7KqWb-UOgDJNSKK4aiKVXOMawXqSYSUBUsCmgGfscxVm3RZ1IDlW--ZnFKD4uVlsuPVwKhjUvdgLsZq_Ebe7fy7aYVt0wWBe89aGi5vPcucb1Rhk95kKZ03jafzbZE3hAu4dN6HAvJ2R2c8BoMEwhJJSDhalYnlLSlH5qhqFu559zihDTvD4GGaSOtLmLtlw&h=yGqOo46PQls5FFU7PJXWscOT8tB8Jzzonuxbq3kSZc4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - fa8d95bc-6a8f-4c64-abb3-854370fdc1b8 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327094851492819&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jFwLAiG_HsqTbE-BN7u8ycedD1uQF8tCHISxtQMc6L23dnKTab-Fx1wr8nleSQ95RyNE9XYCP52Ue7gxfScoP7m6wvLNVT8iJaWwTqEyDMYfoY-9GcQCIUwLJl4x6p7cujWB9w2NaumMBtjTc6oCeTrl8np0WFhBwiJOzgt9VwqLntGnT1plV0GuMU4uDUIux2wpk83sdT9P8HM5IZZc0wj-gns86rLvRLDXUA50y2BbA9C92bK4hJGAoVXFXdNZ9BPm3eJoW8Qz5Vv0tA1wmW51TKsmkOQg5Gell8aS1KkjYY1vEQXcH8wm6p0oXD6AesgO8wEaszgqg681QyYX1A&h=Jc9a2m2SYglFN0Onhm5gc6V4Koqr2MNbkdaec4p01C8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:11:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327094851648530&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gtUIJQvsNTyiElxSrg3fZeAAqXSG9tGN4NHYjVx64v2rfcUu9NEctUK20impn65IrLobMF1WzfyY-9aKefWkeSJK5Ojn9jH3c0hPJE7M_cQ9jsIvWuucK3UFm-mRLMaIDlJHsNoLtvrXjzGylQG60R_nl0P59hcT_YxwFQf4W3nMjKFtSeGRR-GnzMDJQVGsfYHCvzIzKBVQVJlU39U1T9EYoGDI-l1WVchOxGoNV9M5LnsklgaxlMOuSiooQ-knh9egM8FpAP4dW3_CLUZMkFjYl8JlowQL-QEAZWDAouVqs3bGMXL-Kw7KVTXOZECIFIYD0AOa2-t76A0EmvRlbw&h=1blpGC0ZNoLW6fWNAfbHpXg-T75RsL3gityRFAGlsOc - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 1759f53b-9421-40ca-9ac9-d73501bb34bb - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327095159480675&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=wQ506oL9qICxU3xbjqT7lvpYdyjn0HYNq2_KF_G3v2Drjmw-w1C4GQFTbPIIgMtGO4wwQl1FRbc7g8Tk7YQtllxhlMiY_COalIlIAgB74hST5tNLvtYenmbT638WtIIyFdxs2ooHn6N9zWXdOVrR22BXbxIafKzUuyiCZHoqj8roGAGVhHBLOiALH8M7IrYT5mQWQndps9pcy3C_ciq09qTREF4E7C5N4qzS1DevYOre2a09D4EX2X8DyE7UaNQaXudpCxDPRbU9gWEVNX7Pj23C2oSRIbSdBx4x703Ou50NltJ451emVApypKRMHMF612rAkwJSWJaRkredLawKNw&h=AdpqPdPRacu1P4h-xQ-ola3Sx-52rNN41y-yqMpzeLY - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:11:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327095159480675&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=QOgiPzrMApHBwNGNbCtqK5NycQaFcsjoq0c3UKCl1lqM43X85ueJs0FKMim4TKEbfD0F_9duW99QCUA0bZtu6ASyalTFpn_Xwpan0-oB4Ie6A6Ls6_3kHJ4rw8Fqy9mp5AUDJh5FENTO-R4dm0gDN46WcAxd8jdbEDz0O3jWRKFHys3_S4ksOysiPEZ7utsgVeQLnsgA-XVxw1knkEdtBjFAFTBgnFVMfF9AqGP6lK9dUVf7BSXFwSrmg4j0adjScC8HCejXy0GOyz5scPmiexT4IDeRM7Lx3EhYnWssdCs18QUEy5sqp6mlucKXdsYzZbOIANJLCVyGTkWh4Gdilg&h=oJNF2FVFfi-hnkoecDFxO65wPYbYpKb4hEzRQcre-Eg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 59a8bba9-ee1e-4341-bdfe-bc0842195ae8 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327095469656742&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=vrP4KY_HdlYQaTYb2HL6bvVNIaTyaCraCqDTsrFgfDSQ03_wEQcKxpAJcwo9vDTGOEbFJNrWceL03oJ5w-SCMwPrgfuc-n57KxQJH0N0dddJwSbIfrY_lasgBfWLPBpmuqCVyIGnsQTpk9ecePybDZ3rQMNj5k0NTjh3hJh8fdprBz114owFuwmI7kcelVW9sWF7m6WstRjdqYB7EmxK1iGzj0R4Q9OZ5S3DO6dtedL4_b8L_EHY_1vJSnOdwp3reUrHss3-F6CaCsqtdhqlXjK90dhMkltGz22b7tvHb6veGJmvm9W2b5IsnHu_6ceI_y5yzIOxAIemXtpPChtUHw&h=bbMh1VT494D9N55-iFudanHxbHxbh7Luvb9aSqfh1q8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:12:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327095469813535&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ThnXybvyfK5i2yY4dWoHj-Qqw70rJTCyCccZopJWTtQoWP2h6e645bDw-Pl7ZoPaQc9rs-FD5fqN6XnO4vGNVEWX2exApvfvg0j_fzbUIBtZbai_10P0yXkayo0_1313hRx5_rcNrwZ8ul3kV025t6zDq-FDMzPVFsRcgk22ZnoGWunXIYddN-d62XKUPwZVGGfuc8G-vANH5S4zm1FhWA4-L2Wp_yXlWDM3B0odV8EABS8xLkL4KLPqa8FbaDSf-28co82n39hs4irPdi14fTMdqjUIW3NVGsH5OK1W2QI_Hf0ErbBku_x89TokZ7pGSg5tVBlirKF6fxPiviXgYA&h=15PPJMtnuRGqS6M0MHe996ZmLz0uXRir3ufnsw7URg0 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 7e0be940-2ff2-4362-876c-a0f4a6dc6a90 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327095779833945&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=LW-cFJ6tJGJOFIhIPDQ3bII--r8aySGtKBC8QlsQCzPQIgCeJCNVqkQmCZ8kEZtL0hSpWrzE9u0qaI5Cvb7DZrnKY4UyurS1xWr2wd91HL92ed6_rvGmjMBgqtbH2GpTwLRG7wCkZ7XUKusEU_PWdM45qwG2VqrqndM8o35Aq6-V3UlJo8GFAS0UIkBBd6cXPZJGBbiOvxnPra685zeqZzozlYy-uUsNwMZCV1vw9yJucCnn5FGPUivzpFFUI94CZs8ldHMVGMgo9CMf-OfrJNLP7CGncHEH6AJSfF3-G7VPFwEzvE_lT_LPEoood2QfeO6roEXcc5yp2fAnmUBBhg&h=-26SX5acudNWxtJG84flMBg_Po20XPDPkiXctWGN9Dw - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:12:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327095779989205&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=AWOWhxc61GgZhM8h8dt2aMR5q00LCRY6ctPI3R2eF0LQ1ooDjj0scNXeCL8alUFUj2bE7V-8dnIK7AXrGXMmhvsnwuRI3N9VH0WBCP6wnz4nqIw5IS732tx2jEhgM78-z6ozhcrftz_IFl9OCvq0zHNevW-KOew2a--XsKIge849KxW-9UApzm8NLDDnI0zXlyX9VK5AHY2lxVVU4UrUleDkYKSb3UMoarDHiHvN6HdUpG6MOZoFpzir58N4XQD-zFglMx8DIYlFadYBy5j332B_YCC8LvhiUpqOwrC_RP8WSfeeZmbFLRqkqjmCPoLS-XG4kuxRCOZdoPTMHfZpkw&h=gS8uXMgm6biOAFAxHFFy_ltYaRzA9MNj58xW-ZK8ilA - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - c96c6666-0d3a-4901-9521-264d88c15b06 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327096089872158&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pgWVvBUs4OHQi-qy-1ZQL6VkrV0uLzMelxuX3FXceZwvoE3P90mdUPGgfK8U-n0SiYscWhzmcTH479OZdQ7GrmE0BYYlUYAUl4jOGjbZdYauBFnGAClT1CGHyNK3LJOd6v-QaM6juCKVt2BpG-CfEz0oArU8gMXwkm8n4_Sr49jsdS0Qn38UyLSQ6-NHYP5lYsWm8QM9Z8XVo_jDyFGBFSFt_HNip8JxZ3yWqBukTV273r0hCeqMHLT8xbGpLFHHaKc3ZNFOuydel7ksc829cDIqVlR7tXN0xFEpJYmsILFfIDGDA22do9bAV5srdpK2MkunCHj-LUlEoCleReqRIg&h=0uD1LVBWVFPRrF1H7cwAixKfTzc3uZrsRs9e3mvwc_Y - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:13:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327096090027804&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=VR01mEViyIr2TyJW0yCc7m4TkFS9MB_w_RYoJ4tEUXA7m4tP8BBRlnWgQQ9S2i0jHycecrU3GqNKSCyK0oi8-Yo6cpReBcjS2j8Sijr9_mp0fZxpmpTctw7eK_ENWbCwOyTnCnbLC7MlBMV5FTin3hYI4NoX0kKc7ewFMhW-DkyWRD9bnCh7wjI0L2swzF8s9ysFvKv17iIgnM6EqZoRTqOirE62m5p_6euybna15uN4o_0xgMiAmjYBesy8CF3MFrdTeF8WoV8pVEAe0hpSrYif2s6LlCL4DEzeMU1rWIkdwarW5ZsUqR6p19GNXUrzdKaxOAsa9PvGMe_1hTaVwg&h=YgoBfbtJwetERNCXMlOUf3afRlC0ctOS1SH1GJEzLi0 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 8b59356b-c0be-412f-a6e3-b633352ec8ef - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327096400067850&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ORzyf40UKJY1m-i4YXXwZmubQxhjTdjn-kgHK9V7mZjp_XzjMy8iA8DlO6ET_YVFFnJYJ565v2r_KVCEmOBvkOHmmzNfzRNa9chM8R6w8VcWyi2sT_HDR9rEphmDAhrhjw_NJtHGwR_zhOF-lxR94RRzRCgVecTe_D1j3s3cmoFm4bgm70fLb5rxFYZfAx6DxKb5GEqKc3PPT_7wdSD2-MOGkqhN13GOOLq5mlrjDKDg_CZIxIHBGP5nQyIP8F51R6qqNacavRAuWEZrpocCV60noRpbkRO0WPcnr04Q21Wq0M5CKGBqsoxUzZybt06yjwucRhNgYglEG4p_5VdPiw&h=EF8Ub6i1jWLd4v7O7GNULC4qLdRR_lwRzFqsThPxEgg - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:13:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327096400224093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=mYgN-docE7od0e8ZDdontkE2G7D8ITCnMC952hGs55jKXyOKf8FVzaKLH5ae-WPOr58PtSQ0RlxnYQynC01-Kv6zGaf0dk1RiPe3A432VCIVuF4rQqT_bHqnzlgownr4TDFn2fzZNtjT2ECbWnVKDbz7-z6dX3JAjrVj9w9LJIXDQZ5dwvYyP84PbEes3VkrcMNFjcLiYYyd6wEIONqvCt_BxCdIcgZVDpCRZIRCfR-ZJ8q9bo0ICRgzWoHfVlF28IzAMDUbl-ySvGyEfW528o6CVM22EuZrMo8JB2CucqQbzGn7zjWPio3bjNX1r0A-pr5e_DvyY9bDkY-LoFny9A&h=GrZqdE0f3onKsXkZ7_4kuvf6bpxhPFiNa2RTNSsa_w0 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - b49bb81d-22e7-4938-981c-b063082bb2ac - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327096710243762&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CqK0jRGt0C1L-rDzqBum6EZZMz22wA0bUHSBVmk-Zybb3kK9DvQEotRshFfifwFRRazOSFNHocvAKCbPQ8Pn3n9sa9Z5ZF3Yr9-o_SYsOXyXoSaCjq2RAvHVZ92mEpkQOGtcKtqjpiyfr4WLNchyh363TevWmdCl4jtAUFDbajRfS1NKU5hpatgeYV-f33Nw4tp6TVcYEL2h-5faqUX9SL44yi5GW-vOUDfZ5SKWIlSyz06cdUprbQRKn9Z51ZKZMyzqMb73oTQthSU1s2J_na4l-spySlAwnMG3LT-gQhZyePK08weiGYhsnC3Iefn3aqS9lqgoP7TZGomkAZckZA&h=9GnMB5wzcHHz-Xak9TWWwp6Am7gc3EcbFgZ5c2QgDns - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:14:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327096710400630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TpmEnUu_kMpHCg0hxCykCStw5aV8lrKbmuu7qFZQgPrxUMc8SwoM0zLsTTRYIAo9Tbg5_e8qSrNSgg_iZeaGhC6pWAm4DQVYEeBVoI2MUB7TFKdMZrHdattFXn0A3bANpe1Halk_-LKJlxOHTARat3ewCNHbTLoHvGqg0Hs1ZyrMvB-VQTMDlgn7ZA6VLyqj6jCyzAgQCwykK9wTupGpiAa0aDXWl7wqPdCnr-syemaT9ZHlH9Sln939h51fS6vZh2N0hqVcGWy2aMCXqcvSq60D25MptAkdnhpDqjNZwb2mtxFWV4H_kPWZBGVWO2JrEm6_aGwoFLJcKzKZNBPkIA&h=xZwSqP8-T7Ndz-Pom5UD5S03c8I_FsdDUwukET26QnU - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 7b0daf41-4de3-4685-9d36-543f1606a236 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327097018096024&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Jib2k55R_8vFvcmiUGM7q7_5KYWfJJG_pXVtbuPVsDU-ZbX9Z6wvE1K6POqqdOv_aLHr8TM7IEuf3rqf1UCplC-vFumUpE4e9bb1wb4JWw7z2jnLEJ-V-G8BJwe0OgswSKig1kIr1KeDyKK0ZTTrqpxTYfL2r4KOZKYI5DgxwNj3nIeO152kftgd0TWstLvh4dZww5jylI2nXIbl2BcsR7wrTIn2i2DwesMHCdaRo1EwGrvGqmVKQZs0cxHyqwW9EdOxqUGz1h5lTf2JbDeKlbP_soRUWHkjXs_aba0evJujJ4do6UmbFvYMO0T7VVDEAREdt35G2T_npCwSDxtPeg&h=yX4WHf7MlApvrp99eOrXFuDqpu63ZAbNcjIuxqhMEII - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:15:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327097018251551&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=YieUyPbSZSiQeU31uEiF4P2HE51k8vcatp6n6Xt6Wv8KZoTRRBWmj4zNQBFrG6dApqUmNkRKY2Xzhi3Dc2IzXBPIqI72Wvv9N8hkTKjyD_eLvPI6OlUpeLCv5sA5AF1_zFNpDi8CNuY0KiVmTOA1DeXWD_SH4Y_anHMnxOTmchV-R38_aFnB3u18Z-pJrjgWBAr5i49Ob3_nFEwsczVgq1lB_NQxLmyQJzQ5-yFMpXnA_k3pHNx_nQnc37ijK3ltavQNuaejJjdtwCgMJlZkFUXqt6FOd7QoqmHFEV61rOyEBLk8obymuoCrEKR6WoSzDLoxuuafNwDe9xm-UJTOrA&h=uKN0e0QiXlsR02O8MOTxnOmyXsnXyWTgGOTUL5Q-vFY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 49fe4a2a-628a-4e7c-b32f-3ea11a6328d2 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327097328140161&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fM2sqibe4BZtRXsBlBwh-vYkL2EHGflxcz1tF6Da0vj4_HTTf2kVb46V_7G_geDFYt8dtuEUiPa_nmpUUC4FS_0sgbxO3jofn9jXqtASA_Vp1K5ag_-gS0N0M3uGhkyyt_N_PNYnQ6r-y1B0fVPofoxcpfk8cLHzbctJVCx-h7JsM9eWDIwVNRRovKrvxNHdhhmYlaeILCGwlunnxrXFtfzcz_n5oTccS9L_23NHvUeyOSwxYnGZhBBzEYGO5RZ0GKpn1FaHby403CgGqFfN6YXAlx8Ot9lxVYssbGGMRxcjseeVjr7nMGspPqTNKPTA7yqUB0L1AdZNrpFCuhZbdg&h=wlJDzbzIJhJJw8ZQHCMGomC54r8HdCDqfbbTVPEYjOM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:15:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327097328295832&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=suGpo95uxpw6Ti4jcnN8mSN6mpp-P3ZeJGNYJ95TdoyqViPba6RoMtoxdYtx1B0q8NRPUxR-nAtDrQZZogm_Y4KrGqKzSbI8BsH7vlDFh3FyBb_WNQW8uo7wur77y8p7Dciq0z4U_4iUOvsUDHuh0GeP4MCawdSKSZuq_5coSQW-Wiu0Bqh9EJ2N60yo47dKd3X1Z19lZZrfYw71iekyjIPXQIP48v6bE5AdTPRkVBStpu5AmFW-Zz2Ou3QZ3vz7UlR_ukMMN000pwsWYrGaERjtui0-1x-BzpMC7hOt3P8tiZOuzguykX7i65XaQV7vUdL9G7Zfv0CJDRQMoGGi2g&h=p1UtSq6SlxbXRm9zgULp_bXlHDLl8n7ce1TQV1ngZAY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - ee53889d-c3c8-4269-add6-f888c0fde329 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327092987052908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iXcuRjC2O5hKNdQnF3n_oaX2qKHAiEk64OnzgkefyAtih9QsJegcI-0GE1tLAUmNYC8tULiSG-TK7kmzBRb_K35eD4kg-NIAr5Fy_YvKmSsvI5KwIJUXmlK7ExlooGQBi6Niy0_M77HD5y7exmPY6z4cpR8vIEYmVa0RAH9llUsKgbZNGYVgjVaeB411kFHtBx4mMJ-3GkbQ0qwhbEKS9wTidD017Juf0Z6IfvzIcLyt04Kr4VLuDcatuXCXRQi_CJjmMCN6ECsYso-vrzHLiZxJ5whfp9PJn0xkBJkco7mXSC1hMvtHTDkaBx8wTeV58ouBU5B2rHRxDAlRoYtCNA&h=kirNdYz9TZ1a_kG-yEk3eZTK7qnFTI7GKbC6fMFTnlA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63\",\n - \ \"name\": \"ca96cf1a-660b-493a-a124-598f00153a63\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 12:08:18 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327097636137434&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=WTMu5FAY4HVTEvm0UkNDdbi-LBclvsMBfh-QX4YmFTWSUXLNdoKRb534k370Q__bTQC5Nd4SHGyixScmBdulJm_sNU6_dLF2kSghRHzSoPqc5Sz9oPJdQdjKABaEaURtYsUk2hyN5N2r7L5abs7hfqt5AhKcaFIpcIxb6NKI8zVKaB6Ybw2c3V_dP5ktcRN12_q3m5IjAgC2LkoQmxTlRO__pjyQfJLjQBnm3ovE38Qfx-bPleOlnvkqoaK7X1xZu7Q56iOEwKYNpF6Vk3umNAx0kH5w4jSH9QK5plwAi7JJXE8WmI0oeBtcvbu_ZscAwbsEz1K6goF1U8sFS2mMPQ&h=0ZfVhnMteicbeOOS8fW43B9TK9IvSv49hRxerVnRcjk - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/ca96cf1a-660b-493a-a124-598f00153a63?api-version=2023-09-15-preview&t=638327097636137434&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=euN8gzYOin8U2PZm4ZUXugzDoVOsR6zoj8NkSm6-mPpl3L4Sor6N8Cnl5_03Eke8jZ6OsAD_ZQHpMp3bAnWClRcLwo-tnI5dvQfuWN3AF1p9kG1wAsj-utqVC0-6ZtDNQPy6_Q_9hE6t-e10AZ3LIiD0KH2RfMIEIVbYmn4GMzYePkgEpgDrGHVBeJQLQGqoKn8DynUy8216AlF1uHswBlBJhf7-6dwbM2bcugdkA-yDfaBBxv_1OkAizHI7cyvxsB_PFGqig0cUJc1l4PdR-PIhSgteDeKH-rLy2JwzdV9g3YjoNT_2w_S6C79OBMOqOXVanUsOwrOWDVNLViEdoQ&h=6vUvIrq7DF0PIsxF6veK7hWWBjfSsZDZRdjv-NKabc4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 3bfc52bd-3520-4438-ae58-2a7ec4475cd4 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"clusterStatus\": \"Ready\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000004.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '893' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:04 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a4864aa9-43df-4bba-8714-a6eadf9fa366 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters?api-version=2023-09-15-preview - response: - body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": - {\n \"provisioningState\": \"Succeeded\",\n \"clusterStatus\": - \"Ready\",\n \"administratorLogin\": \"cli000005\",\n \"serverVersion\": - \"5.0\",\n \"nodeGroupSpecs\": [\n {\n \"name\": - \"\",\n \"kind\": \"Shard\",\n \"sku\": \"M40\",\n \"diskSizeGB\": - 128,\n \"enableHa\": true,\n \"nodeCount\": 2\n }\n - \ ],\n \"connectionString\": \"mongodb+srv://:@cli000004.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": - [\n\n ]\n }\n }\n ]\n}" - headers: - cache-control: - - no-cache - content-length: - - '1026' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:06 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 819c4c61-ed4b-40e3-9981-a0a8e7afdea2 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"clusterStatus\": \"Ready\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000004.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '893' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:07 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 27fff53f-0882-4bea-b2ec-55f161efb23b - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: '{"tags": {}, "location": "eastus", "properties": {"createMode": "Default", - "administratorLogin": "cli000005", "administratorLoginPassword": "Cli1@asvrct", - "serverVersion": "5.0", "nodeGroupSpecs": [{"sku": "M50", "diskSizeGB": 128, - "enableHa": true, "kind": "Shard"}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - Content-Length: - - '269' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"clusterStatus\": \"Updating\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M50\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000004.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - cache-control: - - no-cache - content-length: - - '895' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=jptI6MmW2xnQvaos3nHa6BITBBoHvSbDI_kUZXO9NvMbQHBaivyeBhBoMfPFU0FrzOpfa6w2vg58-QVxfSTsbYR2RgjrUcLK4o71n4_wI9tNTfq_nDMgq7zGmZ1gtOIO23ycfF0S3kV6ACazQNjrC1GA40Ag1Y2kN2Xr8lEuK6wnANRM94iht1kU2daf_B5O5Ef-SRljKcC8rz1UFiE8cye_mpShTFg0a4E6unhemJFlnxCr-ub3v50ZgSIyFBlty1SVRR4ytpeoyp7FiL_S5kSVhYHpz8uBS4Er9lSFpNeklsDsffXJwPkOK22LSIsZBPv2vdcEmgdIiBASLjCPHw&h=_b-qMSnvuELzgjRySDjTK9Gcgtm6VA3ToBigX2z2S64 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - baaf6689-b128-453f-8fec-e9d59049b8c9 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097693795847&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=A0WIta1zPRHQdg5W-0DThXM2Hg0YCaQ8bms9pur1fc09EztN_VeW628vV9pOqs0voBlqYujYG4dsPMgMA4qnEAjXWiQdbPcCuMyHn4opksX_vW-TMOXzp17qaEb3LiCBi7kLw7UpDXasf6Egpe_suIr84QvmrnHkUOh52hxhsxrya4L1mwxIObr-78UGM1db470gX2zUxpDvnmOTg9uqFVjFAcWxVTBCbK2toiVJXHtbc7jodHuN3_jqVvkkP-ndMuCQ8ugH_gJrsvbKBB7Xw2tVSC96C6mKdja8FF40rlvIC8oLUvZbi0-til6mM_EMk_dB96IaUwH_ElTDIiFS2g&h=CAyxgIzIn3n89D5GKGUaBxB_xduWciTMQecEgoGWBDI - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097693795847&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Au9Cmr8J0LJbevM1ME036HQcq6kZ3v0c9p7qWpXFDRtfs8uxReajQO0H-w8OQZJtRroDoyT_3a8_KKJM1faMgoZW8AZNFy4H8HghwNlZZ1NQFMAGupUd8rnBtcpgepZI-dwwHvoUOUt3u3kqjfG6xaIEfYSmWqQWy3PpGyY_vS29l7niek7oQ2i3bnxh_ffLZ_5Ir_VUkl3VLjA9kmm5XqrRIxsMKrHzKlwPbDrzMksNdlTg4hwJ8PZiftZLYosCyR4pJd0TxdfZCDGHG8XUFdgHtB27anSzHZIrZGMti6mu_RYincx8pMe-veqT1_Tc2fnUP9uyCcPUnjPnq6cxCw&h=1mClBRAH5O1TeavYimDPQTPwmYtaoLp-wUS2B5iny0w - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - aa634540-6264-44a6-b739-12b4831b66c5 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327098003027135&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Xo0RYK4NRagf7ovCc24ClUtT7cJkT9muCcufUqUlizTXGSrlFsmvtaxPQk6M8f0GUFnAqk1Xqkx8TM2kLnqlBFvJ_GPl0c4rkFuEWjoY3oSWFJVjCHtXBKo9Uj1kG8W2EtubRTHRJeWi9vijGE3TMfkEthtyl4DNnIxi_Bb4vuh23ZIzcRxvhez1RHH4q6ygY_KmI4eKlUhb8KVl44XdWsGuOthAspW9qI6F_m1tPeq5SVsgNry23hUkkeSlydIAkkm22CGer0DOZdwXLdZzyRkHvUVPMQE_ycMGQjnfOIHpLQZN9sVS-jp47Sk2JbdAtacuug7YSUbjdWzcufmqCg&h=wQwUWAEqJg_iWYuGN6qdaLEoTHAxLK0yvxf6_JbZvlE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327098003027135&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ZiRhd42q_ak_VoAg3fT9Hv6IP7dlEtmBfF5NhgbLa_ZO7ErA7OZEKBYfonDs8Pck1ZrlwWHDMsNS9NUVsbt8r8gZDsvo_gmISwRsQxRbCl7n8uVpIxBjDNLJE9vcQuq6fcUIo9IZwprl2i9gB4UB3QxoZhpfuG9h3tBHFXyAEdbNxxfNDOH_aQkSKui3igRYS78YhFoPJN_lyfS-c7LDx1Zwqil1dx_dmONN1yuIcrUuG-2OHaLWnX9hX50_jMhrDUTZImuLflTdYH7U2WN1KKXD8NuwEh7c6BSgqKaMtDUP2xXVxKo5xw2Rhno3xtDSI-MQJ3DGwz_HXLJP6m5cZg&h=6H6mnkkimsYYq8sR4zv2huiq3IuRNGNi_xrW-_6b79c - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a72b4209-ecbf-4a91-8060-f150ae282f9b - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327098312405934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Wsr5wmRNGbL5Xl6Szjfli0Xm3N4Fo31FGBbWsFcWBnHA9gNJMyFXhWJlogNPgcvBmhw4vg5UqIr9aesbgS9hEwbbO88oPSSaY_Hj4x_Gv0UgdnX0NU_Z2_x9R9SKwNzVVSspElf5iZ--rMyVVm9f7fqu20dXqKaP3A2rbBp0C2ajVTpwMia2tT9HsaKQYqi7TItfFnBuf9kwI-b1xHI2ZNzOTn3QpwWXngafGcw5c2BSZfowRP9sjFq3DbwZtc-yGGfdfVmZ18NLq_jd-PlN6Vk5AV5YmfrLA6326EZ76tD8QPMPQkgKpEgaQzEYZoIRPzCSfyULrwLDVuCaXAqdjA&h=N5xdxs6dB883A-TxartK4-O4Um5gtquNWC194Tv32lc - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:17:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327098312405934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=W502KP3bNsfMmlu-00llRg7R57YS32ut-px97w0ie7ybwE_YZhw8JyR2LSazXSX-6qMaA3jCFtZmvq14cJkOK9jZ-iydtQjQkLfVQ32FhxZkCMfMyBPukX6v7AAumOP49dQDFoNd38W-ZHVwqV5Ef4mRsFm6HGnVYZ4oeDVqPZDrf2aMtezuCazEvZpZfJKqTEXbFWn4QhWsu3Awe4bzJ6ezp-bpAazjRaXURxC-AxHI14LAuJlAKFt11EP1HO1Kz7FlClmcyRb8wjvQnG8zjTFJt5mGjWPvGKKf_grLmWMUynky2QBszaszeRj7CqS4uyRWcsKLvRTEr6kSUamoWQ&h=rrH-lM5vup2fvJBS-KE0mDdPXkcnSBa4Omtz4JpgGks - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 2a49899a-815f-47bc-9ed4-28b4c3accd15 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327098619754376&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Py9W7X106ZcAt77I94J-bPpn-ToqF-z7_qwWZORkshIc2SIPaqEC0z_DCx8rlZJPwKn_JfTgZhvbe9dVe2hiEyjagrXV48Sj_9rTFjRFi4xSEx8tNQ_rtB1HzkBLzAOVPMAsBe1PKZeCYmz2MZwkDJ77yAmoJDiQj2kpeqyxL81nEG1dCtscuPorwyfY87ZMhOHLx0Rll40XcpSLoZadZpU2yYzx_jiNKTIccO4hZ452lRVFR6GV0-0l82GTDBBAdIbXos--8cEWK17DVaC5anGhMLmSksOsAcmS1pWGF_6dL6-YVaMsHKBiOaFf1opfkqi2DJtSfOtGzpcKXcTm9w&h=sBIvwTEaqr3JrUCptmeqT9N2wllO2jQYhjaUWIq0rKo - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:17:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327098619754376&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=QeMlsgzvQmjXxCzxONaceGNHzqCe0CK0nHyM30slvsFDVlDzSAfPj5AnPwutDfphvx_BcJ7pIMNWSIRJ7yI_LbQlS91UbntWIFs5cMKYzirGgTSCfQLFcb24B3unP8asYnwu7ZcHY8Bxf1I50vTRN89-7GQg6BzJOZL0fvrtebFR5ZaCJCWeP0CNV9v4o_tj6f5bNlDmXhAhVU7UM8Cu0h0KiCItCsaUSgiQtwY5IXGfUjzyUkGV_nARpdyyvyae-xYAsS8HSylNxkxVzVsT5xywFOlusu6aZsvSgMv991ipsPQq822Qq3kAV-6-HDdbirb0c8O0pWlJzuQ_vIPHlg&h=NroxYGgvKnbIUNJ8GL4a6ux48AYBj5Xz3-ZnZzjtl1Y - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 90f3d255-a5c9-4650-8220-72f90955482b - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327098929132337&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Ow5y3Iq2Dbg7IbZY6s-UhhrUGlfkzvu0FfrZ37uBlq7i6v_2fWky-C93Dkf1qSnxDEmVsOxnYYQAHEe07_iar3_efyPU_utbsXdTpWga_RYCqtdK4FQA1SYq0SMWzXDscT_BOxdjOdSozmATNr0P2cO1l9g7N_C4xfxXYI44PbyjEx0-g2JEdZrj5y67J_vHRV9lTfWshG-9-f2ZPdbcSBBsiTFjsvjU415Kl6RV07ILZmbPfxVS48X-6DmjT3c51yWfnKSM_3BTOmknPHliqv8XfyRPvD7jr6AX4khNGLLT9HBQqM14K8UPgV_BU9R5ES92gFUmTTT5S0-v-cMX9Q&h=O8MV_a6dRIZgz34ujp6EP8zf02CMnXYunx4cfgAP4Uk - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:18:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327098929132337&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MsVawkVAPCjpKfP8lA1R03KQV_HG6i4Tt3tMj9Z9yhu2vFuehYaIX-ZybajXqxuENwzGTquXjVa3xhHjbv5_mXOsjgN-ESqidEkUwXVvnt6aYYyIWyYAmEUM5qnIwwIBp-IO0pl7ym8C_E9iGxXYINAJhPTp1ZlvdFlRqJOdf1kw7UeYt4VYYn0fcDm5BvUZVtVYQy4_v8AnOuIrCWFcP5zs2mDlj5dd5mC7AhsQdeWrRc0CkkZaOTKgvnzqhFbuo0SQwZNFq3V6C8ePbvIGirmYB8K1T0ZZWNPTU7T2ChP5IGYyI2bxWXGYhGipqSiXwlFfkQToogfPx1ejzY-phQ&h=wuAd4YKLfL5bnqLfYF1y-WB5YtmSubp9-9_hNfa_wDA - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 0e6b88fb-9349-4310-a5cc-05adbdeee362 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327099238511761&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=qBk9w8FRE0650BJKZ1edJ4evIUeHoY-SdR0cCEc7uTp-XoWI04Kqhbw1Eo--8hNH9C40x4RHiBEG-p3jJCuH4m6EDf2-DMhTuz-jcSxrjonCQ-taJxOiSD3iITlT4NR9IzJCCwPV1KNrH4HGP2AfRXO7lBbUHWXJ6LMtesqWvWbGlS7-lnfcQRpipu0aj5fI3xYKGptU72l5UCAyAoOjp3BCqc2T0jp-I9vBjW1UuCXNIMzymd6wVqk2CirH6B83UByYwqvkqwoQyNaxKVRj6MoWimFSkYh66fz277IgIMco3NsGOHQOdsnh4nd08xq-Wc2wWxK12aBnzIf6yLQk5w&h=RlduxdW_3YEov-_bZquuFFKCGEbA7GooJLosapo-BZw - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:18:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327099238511761&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=TBcZqTMCr1npIav2BxgTdE57sKtfy3NWdDfvJjbFTYiTwZk5D3YE3l_rgNyLU6y3tM5egU6oPjwuxEcCF_VsZW04n7qpo8TUwYGP_tYy5jieO5JoU9Iw5Q9OPgB6eHZTkEy7_mcEqwcAZdHhwd-50U6Z4tP9V4qzaX7ysUXypViWwjPtA7yh2Y36V_iJhpUcLNoNdzkuTH6-85bNqFycggjo_TfX61I13r6aOz_o0hC3O9cz31jwoiZ0vHZlV20wsNGSjeaqhD_wLZZJd3IGsZ0XHGrFDwuxXhGmG8huOokC1tMaEhXEF_NbZzRKAn-7egWTjm9-tWYUvYtNW4l_5A&h=lBIolceg-5EzFyef5RV9_sB1YspJCBaTD0Eer_9OA9c - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a423e07a-1ff0-448a-a10b-69c75bd70cf1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327099547733769&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ST6uHtz2qXmdpNnExLmK4zC0g1Mb0AjNXCYIBkCjni113Ke2HF7qV21_F2DyDeQV_6Pr_6dgRzyWX26LTd3ft1stoPDsOqsMDKJ9K-2epoe1sRTAIOudPzHa0s5T_VbPpGi60b5S9bG0JEkydZZaDPu-hFaog7p0qSr0LwfSlwnz7DOmjkCP0No8x_zrriFTiL3iL7nrB7WPsmHrBXF9yxEmeDYjlWQKrlEUYKz05yPjBEnpAAungW6YPSA_EUoRNChRjVvmJwyC2e8VVjrEb8LrcH246kU08RmUEYcdMiZJsmTwTJzEuHktoZM-uwUogk74-IzXl_TdlL4z_pjwyw&h=pXG9odoovPvB1uE0T9wYHBZs1EdNq1yKkyOrYRtrl-w - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:19:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327099547733769&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dqr3iqasWmpuq9Mb94afquGnizY4sZWpsiaijcz98XdumFaYxGJLnk7xHUSOPmfXh6QqznLVsRMfrNEmtfD2ykvl408Fc1dWmLVUTL2oub7-mL4-xlylbkH-WKuOfxcFTCISDcjLpImRZ0EsmI_LC5TQAbS2o8tnl5YzDHqJDhRMfeMttXUGkX7bVS4BpcODK2qQLWqxjkhXJV2yZpCOEj3HypWtRb9CBhAWH7RBhylT5sMTiQ5--CAQccFBRTb-l6D13ElRPgcP7yWUghIgEvytSbrG0G5xBCugJHe3GFg4ybvnylvxgXFuwzFPtH__YjqaiqjpqMtN1bM-WxSpoQ&h=27lY5vWD7lh8vmlk1CPsf8Ljvqjg_UdLfe-YRSr3JQc - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 03b01cef-a45c-408e-8f41-b98d542192ae - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327099856988755&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=DoFCgX-Zsr2OnwtAv81NhJiKl715LcDqx4-WK_XN1Zo3Zx7BKSwZGccgrNJ8KaEzYEtysKl_USmzWdjWaRIFuZ1uVibPfATaChM_futhYXcEHI5ET4cr_Msvk1AZsqttjYq7sutEX17skvu8bi8AAARjK1YvDuKLX_y4UH-GfK3AeCwtFmHtefaoHDXgLgZ9dUm8XiTDqJxnTQyfTpKQFhY1G8xE0W9GPoHNADhl8soYodg2GzhcYWeHqc-wzMMgyfRaRfwL2Df69jv5K6Elqr-qWxwtF9OQy64c850JDK6YceNhFSpwljZS8VCY1QL735gIwpmtBk7FBr7OYf0zoQ&h=iwvtqKm2cRqGxlUCJH8758_G45xJTq6mSniAwAxjjC4 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:19:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327099857144463&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fnZKaYOnRzPRS7FqWAJ52JD6B68S0kkIHdDr2iC_7Qv0qM9t5_3OEFQZuXUmY5sM3ul-r4280rJ8JQAFaR_VcM4_iT-mONULjhAHE0J_aSoKyS-odAQddcBfpnhG6S7AOd8lqKX-ZCwuUel2mP1WA-llNJfAadOc-fvTc5D4I6r0rhoagtaeh228TvqOiLkyGnn4AefhLRYINohFXfrfAhYVFd1fSbwfsHPiFcfH0cxyf2Gfh1tCae6C2_o9BpqqyAtkmHaqGZ7WTnJ2ncOKdriW1-RzBGzMPF9hln7KTMDR1EO2KDFFX6lV65gOrjqQumBoIO9KpgPaIkZ4_NSy9w&h=MGeVMhPIdgCykEfvXMBIZOP2qfIfhB3alTrhZJ-3EnI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a5f524b1-640f-4c65-8ff7-a0c2c5ef18a6 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327100164335746&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ebMfhSiioW0qWBIBueutiQ0G561krqAajKX20Svc94EKjPeylbSpvAN9kg-azrbMgb9X1y8RkIKpo-g5CeYam1K0PmboArkobhJw4nnVL2L5sweRILSdth4KDVtkvQzlRU2GbVOhIaK3lQeUkYQnskf8pytrm_XjFOVDOXVCrUgtabgAkAV41J8WgyniOi5wj6CmWai9HUmVuAo1qH2Y08rr-TqSny69GXTQBpG9AKkXR2IWraiFZqHDKe8hVB7Bo4Bgns_ySGYgtiGErBOgA0r3udSCH85Aa-ysLHNj5xceeP7xQ3wbuHuaQ9Qfh9Kqr_ZiPLDVUYMk9j-lmnSkHA&h=Sk1uYhE14CSgKiP7t9IRIzxU0iuLkZiIvOiRF8AQqIU - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:20:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327100164492505&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=s4YwludNdkC94C4zEN0lue-24llSex2ACZFwPD3-z-AX-1stAP-kyA45_hRhoKk-8jdjKejD5AkDsl2JxReZAaRa8f_TXpEGom9Y3PjF9rSDOqTq1ZvhQyCz1Uw2WFLEXnBLCMuodroYUYolRsSx7hpScJ4awNlcEBVmIz3yMozloCYnPC8sZ2Aef_8ry4uvOEZYjp9jE5dzu_2HGDlDphgQF_5B3GHmswnKeWxOjHXlCeYmcaE6Qb4QuHus0pg-lGXiGqyLWzJFN81-TZGiml0FfNXWYKEcdPaPVaJ3RpVbc2fHTK-1vpdAyrlt1u0d7cyyGnOXr__qE2L4gurMpA&h=uq-pRNPoXWs5Qx4PrVjPd9ZReRa_wQdQf-mFBXBMC04 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 33adebe7-f714-4303-a600-e980d904a33c - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327100473715106&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=TWWaiky0JO_BhBA6UMjv3wBXOZTpgPth9VEa3-9fjOrwEWfVwrIzDjm9aK3aimbYHBZLJSBgM8IW3ifeFEPMGsTLyiR-hMu0UNz8Ae7hgtm9RJjmBS08nhIjW3EwHx67v5xOJ0XethwwRtongEIOZ1NrHk43EvQdt9-OBjGLOT2EylLDVghIxlANsvgFDtoMXHvIn1Dk7PsNN3eqjYxAhmfXIz7dtkNlOp6g_GeDiWEpFEmONYyco0mK8rM1jY9Ae_7tuI4Z4VX3jMTWOKSf8drHfoKF4QnnR6XSTa20Fomaxb1dYhTDaUiV37_NmQtC912qK1ak2jLuuJsnea_MBQ&h=y-vpEcCd5r1QlCAkWKhtzpCAnk0WU2Nj0gDoa3jprXs - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:20:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327100473871819&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=cMH_DtunKsxaz3bdYflChP0Rv2FLPoPmeEUBaNqwV6YoQR-EZTP-EW7iGLGkIyudwt1594Wzl0jXBy376dg-QxVuJ6-mTpDdVryPsTpiEA0pE86PcW2SVaVLHBjl8RG5Jr8QEiCm4WS-EGPkAS5k8xvUUSmOeHEf2MD2g-GDtllmgTRmBOjRUu0OrwS3ZT68tlqJ1LLtobJ4Acf3mgqxH4p_uImI6C8qGokhYti7GkmQN6JYjyC-06ma-WUVrdI3eW46CbpOIu2OB-WyLrNR2mliNzrf_2i9b5lUAWtGPt4eBlo1YPIOZUNSWCv9uPX05xdNIVY600ABTF8q9HtvWw&h=pBMV2nEJVC-wp0_nBuOLOVWaX66uwc7m61NSzkk-hwg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f29d09a0-b05f-4bc4-80f3-d5602a9ad19c - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327100783094030&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nWNDgyHn6S6hrG4eDfx8Y3QtWBVoeYu6LEkag87KdVEgkTAS2yv9MGhypkvLygKfI_nsU92ISfLL5I5N3qI0uvZL3XfiD_w36jgGVrXSqBXwp14cNi7Y1h0fO8tCyy2zJBRR2ta6k1TrTZ_mczbpfN8Y_u97gtlao8OwbSc8ajYinHWshySgCA-MN4VmQYQttZ0xjUbdJte405NQKbvEyfkQUFgxJJuUuwQQYMODLCdo3_sEt37RuUkFg3emIpf5tOUBF9sXKhKili4BGfkH1kxPJloBJXEJezjoSiZ3i5mq_6-qHLqlBexCa50uPxfIsqAEh4NZE8ox6JIl3uSXyA&h=T8jSMua559gSNP_aWbJ3uP85WuXcuFdg5ERBmCeYJhc - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:21:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327100783094030&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=U07vbbaX5_t6reH3vs83hR-rNdTHpVYyClclLPaX3NGfO53W2wLc6amrrkOx7Bo1BhrRHWFIFPvkAdCl-FYr3izeC7oEk0M3moTVg4qryU-Ljd4ZwfslPsopn-t5b2w4OIcSg2T3rN75h-WQJW_ydoZVW-mlJsg2d32uuGCd89zv7YPOTpsdUpfJ5s-3hovhNtOqPPVJriurfkCrjLrk1PZ92E2_UhdrPrnFVzVWtXziCSei0ciN_nbnIdzsy7-v741w8fGylidtOYNWraMG5rILO32ZmLwVK9AGdmsRua5fO0_1lfSU5wa8ijF5scqCXWM4qC9K0p4YDkzL97eUwg&h=n8LnRw7ML27uoDKRza-gmn7RaC6etmxARyEfHSifmpM - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 3e6fe291-3764-4812-bfdf-cf9db87628d6 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327101090441003&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=s0lKLMNv-mJwJdL9YQQ1IW8oAQWkMumUf-DaxU9h5Fg80iNaS4PyrCFv3KAShb1ZmYxuax-NW0wmQdw3E0Oau7zwfe0B0HNVWXPoaorrdmvrxNYq3TqQ82w8YH6fvK0BqFtoP79Vc-RHaOdFRWxTPlzh4yu7rOu-Y4INkMqsooOhNiPIepSRKrAWPCEO3LJAkzuD6SCg8XwLLqyQu4DduRyHFxPGZ-We2TJah9l-LWj-yx2WCSA1CcCrroChj1BTc4494yPK_jf5WC_ppEUhQ5YfYkG-OIRcTCdTtybpg_o6CMMCFsNkAAG_MCn1_xIxK_Hr_IOoR8N0G09Xjz-uFw&h=m05u4CH6xjUk3or2aoXcqRekIXXtyftED4myKV0QOWM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:21:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327101090598013&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ecQcCtE_BSdpJ0hBsi7ouGaG3QCz5__XKc7K1ekSe3TJrfJCwloM4DQrAbxn3zLNUqP_CghK_fwWUNBWmdchj1dld6PrVxXxaEmB34e8rhIey3BQibnNoh8bANGH-zKmal2WABGIV2_dksCv1pu3vlHdAlooafwYmLOl1nbpn5Gqs1hAkZrlhcv9dGGYitClcMo6SKlU7sWKGhXuk4Mc-sG-_OZKqo2OT8-Bqu1ipoQMbMahdE09aPIa6XGA47u0a3jBFBlTN185Xqa_4kcPyBQHleJpDwpsgQR-foJmhwbkOJEqyH8Ox0swqxdSIU4vbIULffysgiQwHBRdU47yuQ&h=OrcRMi7Sd0vsE2Ymd1_LVrlc-XosIZNikllU9aYlojc - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 852c2533-3e9a-48d6-bccd-c6fcc8afd019 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327101399857457&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fBhBT7tJAT9NOMn3ZUvXNW-Or0geD_FMpWjOn9TiYvRCWa3bP69eeJUfeuRfU4yDkWf4NSK8bBge0w6XTWzRnwQC6-PMaEljie9MVrQjoA3myBu38KBYd0gUhiEDYYDVSBwJby1Ea8qGuh7aH43WBY8_JIJbjEA1MYQIGl9ayKuJ-OWcAy8QhQgy5f6ra09vZttijkSTyoVV0gPRsFomPSYMzBOBwFR7ogm463tUHDOPvgwCdnch787CdhfuDAangq9fdcNeOXfHTQeLJJikaBJyUUAlf-Ex585ejCCNshMktzhviC958isUJNy_UmBezIgBG6P5j20wVd_JYNzlPg&h=nvfMBpGLIUyZvLOY4cyCiJur1apKAvAQ_811qVBW-ts - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:22:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327101400014224&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sEz4WpzeO1uMkD_e-CG_S6rXEKIS16HHfsCKj9KllqWTy1pPWTPsr7Ubl-HbfCUB4xOdXKUH34beTmFfXjhMZkb6ZcqYov_8VsoN5Umazff_ztFWJ9WRF2v4-Fh67RPfxP1vBAI2LeMo6FR6rMB99__IXbGbBajNM1c8EKjr32PK0wpmehSAq6GdORWyW8N_25yJAj3ItEghTxRJIlMbMyONbD9o6u76bIUbwCg9oemNu1OPeAaOwHZQbRa6gd30Pt7-c4dwYoVcLezhpW4wCs-uZxJwGnV_JEMJhBLF4JzeSoazajUhfjJv_uTg1YyVRvLkeNjvDgv_G0hSs-5DTg&h=FrFNmuJIaqt8uzaq_Azzg8YdOWMZjSSp6ge2pYPkG_M - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 4b19b798-979a-4cc1-971b-7390ca982816 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327101707205565&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=qz-i8_IWlEwt6GaJ5SC_g-2Yv7jqn1YqOBJRsYGptI2LqSwk_3HFzz_0-KasllczcCUTkIbDa7E0IKYXtO2Es6LlG0HiC_ya6uXAVbIcjEH1BP6pwl4Vg7wjSSjgXweNjxhJExlquJ5tESXdWwLGOc5r3ZTPI8Y282DQIAEhQy6ga5OU-LT7Wwvc7Bn0kk0_Zpz9ALu_W2oxSagvQTiywjTn7YOAd_Xyswh-COyM6sJxGOl88yssFu_rq9grC2e6lsjTJCOvFQtyQg993Htk8dwbKdCDllCzTQ_0h6tp1c9Cy1YQM09gkNQexeg9ZYYbuSzArKNRD_p79jw6SZOGEQ&h=jDatG79NhARimLbFJVnKyEc3R2J-r2WIzi0Saw2ouwk - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:22:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327101707205565&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hUlPNkvqhjmIjDv2d3AeH9yFgqkdkLT6l3p4HsE4_awHS4j6minXQyjw4DlGacqGweCV-lEDxtzwkWAA0d4EYCX3cLBfWCXm4vKFWXUVsA2ERKZSFxcIZa5fkoK1HEgKLPntj1xicUYszJl5KlFsIOrS0dHupuE8GU01dukuN12gwholfJlVrw165_MAAfdBTmVa9uHvY0Ow9GfRm7ZVfMtxN3xy1z-C330GZvj-yzY5NrjCkz8LXgdDuWsUHKhS8EC8-aVHcHrDb3St91eSBUKwPxObB0lv7vgMv4872raturza4NOW0tja1Twnrtfu3MeDepuD4C7iycaZD91kAQ&h=3lUe3iYdPztch4KVJ-1ppgwEri7INkAlV1LyI1qvjR4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 37c5cc15-b3a5-4d5a-b828-16507f0fdfb6 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327102014708224&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ftejJb3bPl2M-FRQNPiMhQUA3kJQvFpbNMcsfoVh5X6O1FVTqKXxrx6yky8EL0j06Jny2poXCfCRqHtTsoPOwj387FN6E8ob7GKUtB5kkxAEwA8VqoSjYokkwy36cY6ZnSrY3Gc3CcRFpbnePnENpetmpys3Z3JO9IT_uBBW2zRUKzHOmIdlZQbevn5HBqv0QPpxQd3kGVgH5cKPdCgj56PvuG-ooAaYu_GvZlGIx5J8YUyd7Hz9ScXogTHRgqQ64oOvYNgFm_d2ywp4WqTZk6NE2Y28XBFaVHulQ4RrrYGrTssiF1mdD5LO2LqhC9RntDqGgYXLviWZBxXxkwmwXg&h=r0tK8XRRP-sL9UwI6N80ckTR80kP9ekspF_jglBG338 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:23:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327102014708224&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=PRNjXQuYJP2ur3APNWq_S__4sZue-HfsXehaozlXteYmQ2WsQtcJDi8lY1oA6q2axOut0dEHkRH2G80a41RFVPUElRUsDm6wytsTLxcYXTR9EZbw-uSSH0HTRcBXOexTLyTs_FNh1HLmP99ikJi0bgLIaPxj_sWarXBnS53rE-9Hew8yi9So8fFDRoGh7QDSuaff4ZZjy0I4FaQcoESUnC_LEcY3eqy1sJjFPwLTFU9qWl-2IdTTvVOvz0pLfeXLFXlBBU_qPjB2EuZLbaMN3jwuG5vfMrHsxI9k3em4-qTkp53yTxhjk0RtluJBWgvTdVfn26MSAB-TIETlFzBBLQ&h=DoH5i5qxf5R30TZpCoe862-8xTkFVlYAi2uMcrx1U3Y - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 38e83621-6d3a-40c3-82fb-393a18fa4060 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327102324084990&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=W_LOWJa7g78Bsj-EtwQZ8-bTSXsZPDV4Q_GMai01hX66o9VJQ6kOC0CBA4Ww_7uG2D-V9egpAox_6ld3FqZma7WmiJ66bE0ZmHi37pjILYo1zEP1ny_6OulbJ_RmQxRWygo5ZtH8CN1kscy_jPmTUiy-xEfo5CIBiaPflU39RLduGxuQX4fBR7dneLODvABaYUJaXp2ijJrzcVPBezhZz3iyql0dqaQyY49D2r3KtPxaQhrGg8njqJf0H7_PEd29B_Dcwagwg38D-CDXv6MCjka8w2dY443e4VOu3GVHCMQP98FgJc-Yc543vP3lF-M-UJQ0JHpy5Z75O0xujCtpPg&h=ociErir-8hb9eLKwEXG7GXBXbBuhwDHaswJ3Jq4G9FA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:23:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327102324084990&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=DTilFY31f-kX9dydw05y3ksAAcpe6LjzrX2CS4act31mR5UA68gdtht3cO20XYfD4XW7XQdY00_V8JA1_Gru9T0Ask7ZNL7DriQPBhnsqo1AKZvKR7s1YcldJzg8e5a-RImHC7O4_MtuRfjyX_nJ-AWDPLKNCWvDuPFqImbFeCLPB_ur9cDTplLKEFoRZTNR2eCkm5TAwNmD8dr23MYu1L7tSexa-cjNjEkLxLM0wLIKFX66Iwvj68nAS5fV1zpWP2RguYLul9SLvzHUhO7EMjthU2_Pos68VLTcZysMNByYVFLjqhWQJQLeDql6v7dRN09D74Ptywfss9nf4xfOtg&h=uAdwf-nFt6JYwnwwRUGaievq8XxMAUCT9v5WgbyDOYE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - c0012d68-33a0-43fc-978a-326a65ba6c36 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327102633775040&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Lwwb0adTikmpQ6KwPrNf0_OFeAE6jU9M4T7VDNNIuWkjElXwoeXRXHSPJ2QNP33rYKUmqhgjmuS2vtwMmMLQFRJ113OWeX2kR36Ez6hntKxSR4tbbU6kDNlb_EES3JMdO_ssdhZtFzxW-dCj9WhDbCf2kCRg0DX4e_tL0SsTRy1yvoVhWPI9lplD8IAcymMaKM-Zae-g2GWuXnxezoQAMhC6ZTqk42mdc5oI0vczM2UTwrkE7LwUuqny99zKjlUXICFgZVeeZKNl-EijKzZEFzN7-D4L8D3CU1g7Es2xqkDSqkqlvLtXrtAPjlAyfkjZVwdp6H_v1T9uFPwS6XUl_w&h=5lvjALTZ0kftNa7kAtjpGzW_w_dxJHdQaA7Fhl6UT_8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:24:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327102633775040&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kSQPcyBPpIC7PB9GiwKdEKxnC0ByMZaoP3FAA9yFJjefRBd5ALrD9Tw4X1p6I18qdwDuVkYqBICLdBJacu1m-j3jfTtC0p5aQWllCi1xL1pD88aAQ_NzK_QAl3dM1lQf6vIXT4mcE_UGt9A3Rxdc0ft02S9o7jzoZFMYgQFAzw0dYhiL2ryQXYIYmDkG4oq6mxXVClOQLUCnDvfqccUDChZRVl3x27ATCw5GhazFOiPIoTIZSyzDDpoEWgMLAnyUTBaK0k1LvZskwr2XqFjYvtruYn-O5a62ZgcQb2yQW0HCEeNbNJ_SpjT5l3UyDxwQNRQryCkjZf2gjm53RPpUsA&h=hnUzMXKiPu3tSafhJE69pmuoCRIXKyIB7BGFfnChBm8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 37e3fa7f-e942-4603-b88e-6cd1ef13c4c5 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327102941120540&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XwtASk5rnhds1JvNS-oGu_S-2ZS-cZoJWdY0fs1R7Qm8dNG6p_2MemgYA_0sdlfXlURlNMnT6eEVNNmIxgRjIRNOivM1GSV-oyuVaFHeLOoj_v1PyAWZE74kf8Zp4VxPtyp_6irf61U-70rqfa7yOxPzr7mk9w0KTUH5ZGpCtuXIBcV4Qjt1Zm0P7-1KS-KsV42ujElDxLlKgQtMjl_TSDGFiHgUBfaGx8mJHwqrDDMSJlW_Vj4x95s8WbGr81Cn3FSPlgEE4rgMNY3qoU_IUhB9GL4JyqoJQ-iUFmq-u3ncR5vbRh9G_hYXfWJ6reqLSYIumnl47O9j4R4VspXwnQ&h=nV1FybWZp2fCv_opzQPnSqb09EsgMjojiHuiYJxU1h8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:24:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327102941276799&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XsGw6l1maUPM9ijYjDsHeAh9hAKW5-Q_K0QdpLDlwPEdIlO_AJmIPSTEWfx2i2rQSr-wVepNrnrpZwILB67RpMoEBuq3HXGCdjdeAd0oPCsW_0yd4kcOrHJV3urmMzv4XqxSNjNwSOX1_wzCGhObT2dYTUwpoIUdL0VFYLlpM_pEFjGjjWuXeEc2tz7BE6OSz6zkewnkqr-KHqTg21zZrPd3yczZG01BvakM9GzmCHqGSE4IH00w9uDzd8FEPdlkyFOp6CqFnw8wgGKBnEQVjlx0kDXDK1mdI9GHV75w9Wt6GmH7fLNyF_ve6h_qsxA005H7gXkApcwwSvT1FRJhOw&h=8EpklUerIeEIgKPaEXBV1wy9NdTY5FGayNUYWRcTvz8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - bfce6d06-c857-48b4-be69-3d716772965b - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327103248636352&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Xvw4r7F7WSxo37a2LM8Pz5S2kp9MSHZu0o5liWlFVYjotKID489sE59FiLbIIYpM62A7-sySP8dOuX6sm2kVUpfQNap9kj2wBHF2g52RwccCAZ7EXMls02vVdDew1Ek8BDMFFdZUsp42lW0grkUyUaf2abZ9ht1EK0-sqcXzVlOvbzsqYxHAzrw_1E6FAP3psYhp9tgU1r_pBS9XWAdQJKDoC_tOy7REXxRcqeSvWVGQzp303lf0OCB3MJV21-z8U_Saqr0C0AVtMcqgLgfIRjlhp4FiivdVGvOKoQfGswpS3PJaGGay91kv8Iax4-cBPSd9udj6bwDBpH8yQ7-SRg&h=vKRwAiTLj9xmWQR5IgovHMSPFytgsP9Ltnk63-v5nyE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:25:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327103248636352&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=rqK0Z9N2cSxR55C9pWO3ebXNmIUMRDbETIRcoUlOL-dvrKPcbBOEnIatemRC_38NArEkLSPTAYGFpIAzBJ1-F1yP4Bz_DGwDOpFvQ6ysZ1EnCfp_yvOhybYkWvHcj-DgPGU_J8u-ihZWtZuMkodao2sX7KqDQOZ4fFg4FykhNama8b8-zvob_KvDfjin6dfC5ofbW_Sjgdh_85JGASR2PANfchKWdCzctbGg7SaeFtnmnWjoCe-bky5TjIufEBONl1GlyZ_vpD3yUQB2tORXnx7zCqSEn5b-LN9NYw-4ofUhQzyJ8c3bG9QgP0wSRVKnporRjQ0TDXFFoormkgQAgw&h=iP88hSRJT_EEJcro50kmwJESrX2ssodg5jGU2Ie5n1Y - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 0fa68131-e29f-4a33-a049-d135ac8d652b - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327103558014013&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=c0rg1_rvFIniv3KgQ0mzd8sWbeQgsTkyIfW2RNv3NfrEHjYtLroDknCknWNySujcwjtgP6b8NE3_3bUW9xPLMVO8psaUGlnJ98-2sdPaKs1V5LM2nZn-4K3kTHlXN4Lv990eNHISpqNqQBIRd8uSXUFJFe3WVrS33p6xehm03NwsynG7sgfE7GZgLrXd5BItcZkPJNHq9MUnP38KkMAIw1X26wHD0k_zRfDh9hzXH4vaP6B_gH2RbV0Pmb8qs9lC27IpDlU8Z28e-l7_7clXdHL09llnXzASHlYcZQs4fBa5dRimtBQdZCEa-CV1HrdiUc5ADoTPYuxH5xTH4Kwo_A&h=7a7VrntrL7Oie2CXhYY_RZ_CVUaDeWjUE522dop4UKE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:25:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327103558014013&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=jmhNOePmEJX3p80miM-tKSR2-7yC6phlQdu_THp81IRHV83uaXxUFZMHs7vzGueLq8ovMCr0CTerYlo7VmdnyZIJGmqAjsVXUSlCM88J5boXP6zxPKYDcQx-QrssvFU0C57KMD03X6gIBGSaYkgBrS3nE7gSIQOsT80nPfHc_fKVLfniaVqk2N6CYGW5dbqlHq-TqGuSu3y1pu4lC-ZoMf00uinuthphAt29Aa1GjKfcC4GOkycNh5QglR-rwLD-CUaVSyBCdIpd59xUfd2bG6SGWHQDH1T_it1jSYyUARxabpErHwe6-XNJb5k6nORIq3v8yNI3aYUN4a51SjGXnw&h=4nMEsjwl1ShhpNNVNHWuetWx2agUb8dXKuv3_pv2U-Q - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - dde215da-d58a-42ff-af25-27e47ab1ed11 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327103867703790&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=qqsOjZW6CnFk6YTL7s1oxHkoVZCP-DylHn7PlXXRnCEuoUGaAXiCujR2Cjx7CgzNOWRHdK5v7Az-VJ69K3hciVULkt5jOkqN55t6EA74vJXTWquCQj4gfzAklDXTrbvRZjkxyUP5DYOahGxRSeDJTJUgvZiX61A3f47A866NFogbsfPMqBQtJftn36APRNQWibRX4UdtRNl1jtB2mjlVBceh04a7ir7zURj4kIKv0zZhgUJejK84fH5J1IdWP47rEsHyWB3w6m0r1L8Htxr8FCxOWQLQUAtBlaQfW4uJeYSMlqp154qMx7zVpwK6h-OWjS4ecso4cqbxARRJLUn6XA&h=K09xu23br5kyeo8kQ19NG5lns0L60rw8BHh7QFi5JjY - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:26:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327103867703790&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=BWHbVCmDNGLujuL0mpRicJNLu0jkjIZTUB-dKZ9HCp74qcZWjoM0n7zILcYV70wNY8cJxXfrEHt93Fw7mL-SsMGLFhRPgCZpVIOELBGaRT0noQHD9RG35adBx22Fg_5vyEUNms-ngt_6m0QR05uTU_H8N3IqfRzWt8iEJBJivIdLsdhEZgc3XMhsiNvrRfId4NNXTm_RW5RCKxGfvTDgrt4alOP5jA9zFCrHl7JgGiYNodQd9cNrUB0wLO4OqQ9lfNPRHfnXudQTebbRRBeyZiVRlq0oAyt33IGrfEUm0SE8-b3LB0w_vrr0DnUax8GZEXYBVHPnXyH5oJ60dJCFfQ&h=8FYITsFtpl7cDWpVnj-E5Vpw9YpGvxE8gb8-jUM6LUs - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - c22c8a1e-0185-4bc4-adc1-87dfd055faf8 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327104175050344&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=riboDftNnztu7P7Hp6q2W99XrPZPFTUBl7SEfcB-iO7NEZ0fdeeI9kHyOmhTN3WJgglwy0gKitxsXj2qv5gDdEupmkQ4L3RzONsusYrQ6siFAxcE_ZwCBjQi47kG-uyJ04k-cxPKGxF0dmTYfpgLthtzx5KgHBjt3V_73pMiTTXrtgsto_nIEGJoCwFOaKV9Hid8PBKuCM9lUg7uiChFc_O04lLkWRmaUhzKc3IUSuZcP5Y81VNLmetTxmYySdloCXE0E6FEacPMm9s-H_2w3aGR1LbcUywLIsLsSgDFxam7awZWnqXXSFY4dgr9uUAQKYl6SVXEyK5Qd1g87sF24g&h=z1wSaEKJLye3_BhBoS7hE61x3IVkIvTDp9ghxUJW6-w - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:26:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327104175050344&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fRwEVdNZD8CcUYkasxTY5PBB90GIOBqSLuJuP7tKfITIIchfTdDl_ZDGLLlUGJ24CINboMiKYasCYEZ2ks7BdXK8xMiAfVYt4G38SRkSXHOvIVjQlOqLAjTzUBVO7PqWi3UPJwpVJ6vdRzWZWnSJx3pCgRjRQUNWu2oN310gyexPAdulLx30nE-1CcpaOk1tKL_mdLgPlV_U6g0gUkj0PtPDt2MILzv2MsmC0w2klE1hakROMSVzG6QKevxTFOvt2JkOuEgcU08niRiI6nb4QbMPlgrdgLAIf6Ec-u73rYb-1UnJDCSswz0T6fVosNlLxDWrxvArlVkkeRi73JR-AA&h=FPW2CWXotHHWJ2XgxPkSx55MpB41W7XHU2MJokH-T6k - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 88f5c015-e2f1-49a7-8451-18a77db617e9 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327104482553850&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=aTvV7rIhGOdKzFiELQ9ouVLHVoMhQ0yYIWDygf7yaayHYeiMQUNR28YnNnPTzAe4j4St3b7Rj-QxoSF45zQ1QPtcd8AbFQzA1ftZWcdQSKoWZbhVSEAETTxVnNL6Q6IFX6EEkhfnMugMeJAfe34mwoKckiNZDo3chDboV0a3ZUuB07SX6YMK0IbhUiEr5H1jAKUi0oNXLBKplYhwfFkDgiBuQRcvsWuysVm6yenwCVcWN0obt-FhDxQDloNIVWFxwHGIwfPFKb6NoTyhTb1S00R1kKBEpbpDIlxC3ZZWVvdPkupoVBEiKPm-23oQ1s2gWUUCKMM7ABrD72XfIQtVpw&h=TltfROa87eGbpWKOSND88ScGEz2UrmNCcq7d4S27H1M - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:27:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327104482709630&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=b957GnGSjw6_YQN9E0O04Zjfozjy_CJimUIWsz59M_uSO2rPoBE-SQXZjEeiD4Po7tnESwlva9X4nW2NdLD59MzWQ84ZB5hYF2VYrrYC5S3GN1v9G-1iprIUBkb6nUwF1BmKQVvWRFrb_ix-j3jDVMr5hSNp1XR8M07sw49FhUG3IuJboRdJhpc2rpFxyDvckijN10S1hyfUJQttljh_aCDA-8CWpzklSvgMY9_o_fwQHLnxkXtZ5dYDAllZ2i_JFaBRPzeJs2a_ZnsRlsZ6Rp0-lThkFPCXz6RWprZ2ng5LzJ078g9nlDnjRe8uG7z3u6A6_IiXHB7wRke9GPoB_g&h=TFs3hXhvyIJ31V-i-MmaVRmR7wD0VkOV0LkSTb29pgE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 532904e0-4b88-4308-bce2-290f6cf9a0ba - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327097690514022&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Q0OajAJddNNkIHZJMr8d_LOemQullUpz1ic-JXwibjOThENRPh3vLJp1Yn9qcW6DBmS80ZDOgMg4hsJ60o-J4pO74nOLA2VbBAZSo3H9albX--aLEjB3dZPSPj3pOt0-Jr_o7kpcPZsIk_Wimt_bTZFEo-Pzn-FyOrBkibP_pElje6KIp4CHiXSD_l04o7EJRu83Uol3AFh621DY4x_HQ8kcLOrrY9uERA4wmz8zeORcdGEBAkIjlNOuAETlWbt9n1rJMk4NLlph-rwvW--yWV0KXYD_g6trC9zLV26mqsy3TBkqWtu-j8_845DFH8LIgHyCK7OJW6_wbj0tvObWOg&h=Fw-crKEf48oBbMBV4qpmZXVQYofo7PV5Ch-QPySulyU - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n - \ \"name\": \"69592b3a-e91c-4a45-afa0-31e5dc19e950\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 12:16:08 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327104789900085&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Ico2L_iZGf-UFoEalfAyoan-zjkHg74iiTGznMsFYaQPqoYkqi9XLvBDSSLcHctyriMaTEArmkUyqMsYbpY4-E42-MjMkj3tM5cBSbPUWZiqjN1zJjxbQZ-R__1mx6osm2E5-CMsKrnUs3ewzdn61vL8nchsU27yvrKUih0NjlyeEFCAZEQrCIk4gkyqsanNnUEnqrAYkSZ-RZgdUslw_Bceq4ElAUuQevsjB4a_HF6kdajAvtUQwjxdhOB4kN_eYMqMT9_cEqYUM4s_GPHeFYCceQG-JdjFHtXAVTxrkuxCQzWjLoI5gOnjGD3-ozifKtKlsaXN01k7j7WmZjAaEA&h=P9QgADVBF1eQbW6iV1rRSPoehwObAnhZRgVIgpsydxo - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:27:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/69592b3a-e91c-4a45-afa0-31e5dc19e950?api-version=2023-09-15-preview&t=638327104790056358&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=t00Ht_sGUqeygtpvFaqtTxle7lmoK20J_dJF9VSZewaBoZjuKefa-UC-VNi-JmjzXGauXkqGU1elmrYS1EX7xtya0_vdm28z4xVPwD2CiP7k4HGMFb23xHepdtB1IyVZWfAk-3BXhSUhumwGRr5o_QAjS3hR066Gga7V96mNuJ07KU-RoYem-YmSX-792Jr3GIDS0tUL8ejiUqbbu3UcOWo6HSi5TuEhuZ1FduQMFxHfdCR3K40uWLkVV3W53b3j4Qup6wBW62Pp4plcyR8NzQP2aJI3rxPuR17D-O3MwuK2VTP5X3UMA02E-h3cmPoj_N2g2-TQP34YUI7L800AkA&h=sNNnmfGUu_CaQwn75trPgdcxPrHqR86iWGvVPaOUojY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 028248c4-d649-4aed-858f-76a8d7f31aa6 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"clusterStatus\": \"Ready\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M50\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000004.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '893' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:27:58 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 9e1a269d-9d9d-4dd5-9983-1029bb7bee9f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/blah?api-version=2023-09-15-preview - response: - body: - string: '' - headers: - cache-control: - - no-cache - date: - - Thu, 12 Oct 2023 12:28:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001/providers/Microsoft.DocumentDB/mongoClusters/cli000003\",\n - \ \"name\": \"cli000003\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Dropping\",\n \"clusterStatus\": \"Dropping\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000003.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": \"2023-10-12T12:16:57Z\",\n \"privateEndpointConnections\": - [\n\n ]\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - cache-control: - - no-cache - content-length: - - '904' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:28:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836166458&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Rdm9I1RoJ3U6DsS5jUZBIqfj_gU-g6YvxF8Hq_dOyqK_7n_HSOG3VOUTJY0-SftdKBr15ZSW3jkT1hWBOjZa_46EiSTuu-joDnhb59srqzdmVZ4xF6PoTD1CH7_AAEAE9hh-8XE7VCW52W6OiPLQ9NEfIYVZK2RJq5cdUMh8-w0e8o1h1Bx5ti2mnE0aAD2TMhi0yTYJsSajrtYEwCU9sXO4pZwmf8CswyaLSK_RcTIh6f-GZ7U-vC3_0cbZbHkTMMDBUKwS9ln7D74lBEeyQdmoYU58Mn2-pEh1lUwQakcn6DM_eiNysZ7RZnvKsjjwh6G3KcFK-yKsCfCo1Z5Jew&h=A0oZRptuAvkB4y_-YdUTV3ZigCb-aKLyOFPMLqB_3uw - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a97db430-0712-4f6e-9c62-c14ce44724da - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-deletes: - - '14994' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104839760387&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=veXCo97nOC0yvbrlwezDNI6vvGybf7-tGaCSeYfWB-9yyw6mEb_UR3i0N-Milg-CQzd6H63dGSImakJ91ZphP8zldVcj2HQedxnoZu6R_ECClneI-3GL7x3j9aqLqZO9DhGzTQiCaGj2IPYOmJYEqms5dsJ3OCe2Fi5jMmReU__s5yv1Qb_61QeVZLyxp52OEMEQ8PvTJDMxigGkn1k9CZ6-_UzJKPoKamdUhUKW0KWweQOkhbsqwLmBT_0W9enlz1kW0jiZvuEWv35ZRVi-GUKU8JFBM2IlzSAdCVHN3EQPS1nF-6bCHpJKwnpfaZPqkFuSyDggpDVQ4m8d79sQfQ&h=-DRnRm8YBfQGE27CV-Iq6n12uEFeL7NYDKuVCWK3qtA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:28:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104839760387&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=WR6Xqsw41lQafjFKTu_INN07JBMWP7O0MgZCRJ4H6C7FIygAcUUlbH6Nf1rK4vXLiNOCzEBKbxbdjW1LCCDga1oJLKbRHZxF77nKMSZZDVQcx2Aio6M2RoNpdkTtvdAGwdPRES74vLyMD7V_koqRqqJ-tTH6nohnLEOhaO91AxqzsolR1Q9o-5RDl4RBjyXWXPuEAi0N-4UlCfQWwTpQqewH0qiRg3ezaNYq07419WJ2rdIdYRZa0G7eLutrm4_HCLe18JwtEZVdGmljR0HUPEk7V6GG8I3qsZ3YTZ_-5wUJ6sGUxRTDUZUx6X3xR2w7YOPmmiabvvfj73FE3qJJ8w&h=qAC5dFEnIZHPvNyPsQO6aE4ARF7Fvm9cDHTGJXBkc2M - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 11ed08b9-e8c0-4b8d-8f38-6715260a01d7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327105149780147&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ivr97czmcdWdWoyfX43aa0LTCd-ywdL3ZDG-FBnUV7_MlHcs1cZX26msBpjz7wKqatSusvfE9WuNxhcK0-bENP35nEfilw_VfRY-wvbyFPtOdwkI4fYWZseEy9-1Bn0lcFO9LxRR6rEs1A5BQuAt19yU1RPUqB2t1QYjy6efMZ8mW9TADEoXvzacy_B5vOe6szUZgbFF73SwO_nmWV-PI0QFCEJrp-dPPJGRitTRIrjZdU_kawnxh-2Ca2e5XiL9zGLZBR4krpNt_OrtuupuYjBy4iI80obhAk0ooYWJ5JO_kbNl0EPM4ju_kiktBs0UJQn42j3DVfxHZDtqMH_Zew&h=zT_-WZA61NgTSOe17FYoyP9hR70FrF68d-QAi_U9u3s - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:28:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327105149936928&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Plq6b50BsOOPpyNvk28vNZrXPKkhDW0nBTbx6rlB40t1Og62oBv13J0lenIfVvGR4g6IlySSgnQlC0FvtRQLPxYjQKHlME__x8FJ2PnPjXy0ELrJ-ns1W67JMmbkP_1-AcCw-3-pqBJI92W9hdS2ZKjUwWU2luiYVz2ECc8kJEt6c8XIDU-G3Ww9L-k1FGZVrgyLJbR2Zjm43DzbKnuvI3fmcbpIYhpSkzJ3Hrg67mhQjmhersxLI6JP3ISDQ05kVRxga2RCfv-lMN4hMJIKAhrn3M4tcVvxjBwyhLUdDFy3KvH3bu775-_ibjV0Jmsx4CjX6ZHbbY75l3wTgmXkGA&h=IpDWrtfaO258Z0KsKPKwE7nIXFl7GLsbSyHL9sV6ZDc - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 36abcbc1-4982-4063-b0bc-955dd716d4fb - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327105459959812&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=zdufKQCslxMea-ihUzl-rsr904gTP_wrDiMhIu020WTMi6LSNfcPHCrYNo_x1qDF4DDIhWgf-hgSBUyNLIWkdBBSht-_kA6nTK_gu2BKXiY6xK5kT-hrvgikDWkXzb56tnaU7tBPdg6dsbvl5pWdOz9N3WPEvktginyEMwBt0KWJfcXhJpde9qp2UpiXzEkkpwWPuK4GfPvbYoxtC5yuUuaurGqmsUEgrK8kgqKfUNH_lyQM6QIqr81pfughLwoDK7NMVKcvhoiRFRXBwZs9AV2YbD1uW77fmPmLVsUXVW_k0tU0KASvDUwL5eQGqBuekm3--pFf9jrKZBBWKWmltQ&h=PvdrL8RgIT-etwy7MWXUh3bQua38oMau9PjhpV-xowg - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:29:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327105459959812&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ccLunRiqf4j62A6amfHbTi4hyAdVQq8FHLqbH5p1LsaaONvyJcnR6AjCh_l4tpPghQOJ9n9nq4WBOSJ9Xp3fXwRnjhuXQ-Bxg2-FYNBwT4dZ68noG4JtlNzZmfqjIyagh78aJh_LDfHjsx0P88SvopoNMeN5EvOabevQBA33efaxYNG-ikchbnWSrDzYQBcmJAABKWRIyicDfSWgHUTaxcO0CtAbCEwc3Qzjo4vOh1ONEyv96YCLernvxZ_3--o7ECyWGwz6Q4oJo7j_G915M37dApjjJy9HRt6CmdUc5lWIee3WxcDV1fDA8q0MZDbaAr4eWHGWkoOg0HyHNK8SXg&h=bEppVsjD-73uKiTrZYpToQkup2tPPGyBnNW4I6vu7eg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 41aeb6a6-f505-4f89-a657-9e1171a249c3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327105770225285&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=lBeBsdQaF4iSOtJrHX5JNAAA4Ziww0gPH3538xBuC06rxfQL_3zgxV4RcJrSpcjJizx5XU7hJh6ZYY7M7nmxN6clr5oQ1e2__yVYrGUNSzDmJNffkm0z2F2mDqnoS6Ny2yGomGS5oZvdZ1j6HOEwRSjKt4wGxAZxqG7eVUHT8DRyIO6mrkcotadKR_dao02mvMjGA14M2NNM14CzGb5yXIcc-rLp_MrdGgI0EneyY-Qs53okV08YSxqkd365CrpxHLEyzZRoxI488Ibj7-a8eL2GHnJkitkV-4QzWbUI2edH7h9Qv5SKaZ3Rwf4QI5PWmTwoQDRUFs_aXVPsx2UoYQ&h=hJ6upc-IK_orwxjxd1FbkSMTWncEWcHRC-8SLqGNMqI - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:29:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327105770225285&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EElwLK9u0a3y2N9NAcOKIQE4fITYsKbi8z0mNh9HDSV0RYSbFf1v_FVq-bxIPyaxt5sa3D-rnNeeJr34EGOv0zneMhgWhzEVAug0olVmiBVVf1D86TYL2yuGRZ37F_mEX_MwkCVPopci1ax8yBdQarT3PwYcRnsr7Y0n1Bqc_K9-DwwVI083Xhw9Wii0ziGhLchmNUbUqMIphuxbjXw1HB3YdIjvRrJ4SI9zHBwtXls8zqHuaJQvzbsn89yqfSsT96rCGOOfIjjrQEbppZR10SHow-u9L9iNTy46ztwhOJESIdwa0m7Ym-7nMnF5PKVcLJNEDBcPDBiQRytHHUW_8A&h=5EWYloZv4VzLL_UjfBn6fW7lh28sYo1ACWdl6C421L8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 6a9c9bd4-3806-49fb-ad43-afd2e7f23d80 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327106080278671&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=nMUuui_mbiy6Qumuya3bpI7WE4-4alRy_lUNZ-crGX1kE6cm1nAA2HQRC_qjgNz1z7GjTpPCTt_vLD44Zkr8cQBBtT5jgEe-c50Uhh5eBcJB2eb3bnK_wQo7emfqsMQ0ja45uacvHXmmAJc1tBdt9ELgH-FUb7tKhOOCxKn22kY853gF_2R-z4zIr4gTofJJ38OCXMAx4k31y19unu5PE-WV1m_fA0LFYP-AjYqnmSYqo3p-TBP-8l0SwcUe09TNvk0fJ5XARHb1KWuq2BMIHwZEdKNtZWHEHibqBqrLNaMNTRaO-y15XPDFLdLRccrv0NZQg64-EX9YleYIIOxvZg&h=XG016lJJboSkL3Emb-HeBNu_QmD03LEIr0wx5yHDgis - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:30:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327106080278671&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Yej4UQX5Je5sveuOUuOx1df6K6OYagsVc1ZvG4jhIslruiFbsRY5AMQedokB6WJwgbDEhE626Q0tjFRe0chStyBwrGLNBa5bxSz55ZmqRTo53SVWfviISJgeakLB3oFwCXjMAP98PSOp-evrQ9JU4KxRpGypTRDcrf1tWZaJuzWrZraZtd3LllXBLdXul7pu23DzbXnXNNHGKp8lODTY58OKkghmq7D-Q6NOW55A0dIWt2yH2QYduJX1bY_wfGZjYRctucahqTJ1K6qEdh14dq0AEAzdYBh4jRK38Z8oSyI5KLaIZ8XLJBDg015xKy2TrMSxqsd95aPgQYI4S3BKOw&h=XCavExvHzXF1Hu8-F2zMpnZ2Xt3E-brHu-1KZfJrsXw - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - ba40a620-03a5-4590-81d4-a6b2604d58d9 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327106390188180&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hMf5TNoAA-wNTv94gL4ee3J0kdXMzsTn4oT0pW8RyjgKeN2kPURkJM3L1Wh3K1t0LqMpT6MU1-nJLUchLP9D1XBGO62YuMCEkk8sHETCg2LBLcx2X_2QMkZn8JFQf-hG5Bk8ttNgA5zK-mA30Q2nYYcXWqcYZdB9jChULNQH8PHatifPG-4fM2zDPpKYxQ3jy3vhHHO6tHNz_U8aa0FMKpyd0M5_sMKCGYV8ZJEgPDLsFEvto8cIEcorFNBAVhi6J1UIWcg2q2DgoLlSpGPSKP7MmUkinGsnYY-aj0dsZx3TviyYVZnZLBXujzV9cC4wGAnF6pBycJbtwxdNfdTsXQ&h=tf8HSMcLpTSzViAIhSNlo0AlJ4RdhTo_wTOWOGt-3dE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:30:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327106390188180&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JY-L254RD81W1n_iOrf69ockABT5El2OMjRT5KE6iZ-RhY0e3X33blz__PDmnMMLAtOnp46YSUTjidggVD-0NV2Ffr3RSDQukC-QwW3E8-sdczJRDIK5z05LJDVU1q364Q6GcmpfDr5CmD2TGH7yiSCGsEmv7AbSz68A1_QVLC5F9QoWTYUBaqAkxizicXwundRNCrnEZ3FL50lNwAomhBzLDTfPwXdZLE8vsQ_0wVWZC4Ox7v3pv7h9NNJWGa4m_-1RZsAHyP3n1GEcs9v-mJV6XdbtR5Sh-g4x9-bhIPhF1iF5mJs_Jl_hCT2w6ywJkXX3fslTz7l-4oPS_zJogQ&h=tMACOIXhrOSc0Y_NZUDni7pJrKDtmlMDzVTk0INhxNU - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - da8b4d46-bba8-493c-a60a-2b87e5001c79 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327106700364043&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=yMXYBtgYf14bOR4ZICHLowFo4ZEXXHMxxasTmTF4TP42QvUQbhYSaVxFXJnlSgNFt24SO1Q5QC2tnZpcNuRF0OtF2ksBjThlJ1WKrhlkFER9C706uEFt4f-ccpVGFPBee06dbVhDskBYfLP3lKlOdKWxOGz7NzAG3XSkR4Lkwp62s3T4qa22Vy0XhAd-K-X2f8Gqu3Nti9FIy3a3N5ESJm4-2RhN3KexIbg76J67soLstqSJYGGqt3HxSuMJnfFcIR_O6nFCluisyRK-9DTz-s0YbCXtrtYUP8dPoHgggMAxgTDWvPeXT51lEKwjYCvSy3TVQratIvXrkOJHMYOoTw&h=1tbCkc7Q_DIoCEY3boroDIfcktLPA4k2BUAts2jMmn8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:31:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327106700520142&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=QIvrqrzr_JRPAH8AFcI2qU5bVJfj8djL2oLqSMQPsmoLYmrQZjmN-p_t7TWmm3ik94rTVbatbmlhzYApNTF0QTLeYv77aT0y_bTBp8SdjD7QSCKK-TqcsPiNoihp4Wnq9o8F7ka41Y9GfYwbCCGLdt43je24Qe1NTKL00XOwzwG3G2i8t2E6heuaV5hrBm54TvkGtVSaGi-KGe5ieUr2HZVZqwfURHZXdvcuRGwB_YQc14yJiDS2mZ5gA_ZvtNGoCrZR9skwSMbVaqzAveYkzM2DJXFtdvvr_-_uomtdltRe5rw2Zy8TkLkA6eWSU0CsHFP4yPelhVnEz6BdIgJRFw&h=Egx2hdkzqVltScmXX3kbzKKSWxqI3e5dQa3-WGmxOQw - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - afb5669b-fc6e-42e4-bb9f-5ee74936dbc1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327107010539865&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Loow_XqtNoIg9Err1xP_Hs6Sd_XJkli58eD8RWtOuDcOBbmWUf6BQRZhUJndolGuQBj_dSVZ6jTxsm66ttkGfMzWd7-9MZBZvmCrkWY-mfqY0aU8rlIko2GaPsVPvUqgZjvnAf_767v8q980rHLQbwr7UMNB4lH1Sgk1UOZbzTf5A3wCikwKPI-y9WzqWOArnKMxSdsm4kRiylqw0xjJYAzNOlSyyBU67UitReDlyyFl7-QEaivuOe7nIFPQXJwDUMU5F_X6ynPeflkcsZon9DPLYKo5Mu8qKkJDHqvSsZ3cWhvnw2C5tkcfTsQHsFZ_OXhDlHWFcBVo816iWGSDrQ&h=3y-Do6GgMt7Csx8FQSf3-UqpIuD-U9MhhOMpuVUMGyU - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:31:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327107010696141&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G9Jb2MQyhLFgPjNNPfFhCzXZqc6ikNUjIsf26en9-h9qOC5dijUPaxN_eCx50xqEnrrt1b-Y6kuErONc_btSBvxbiCSm8Mp9usnP-CXxRDpEM8eWnwwEhnOv5H7lbUcTgnnAKYPNEglXRC8EYo5i12dCBHw3ym63MlIRcPFRljU4uYB0UFa1xcqjQY72sjNs47skQokBhWekcOW5WBLzev20kk7Y8hK7_vH3OKBDH7i1S6PyKvoJZcG_9BkzHmQAVOVACWzjNPC-s0fZbGKWP3TxDvtI6iGiSjEITrJ3kaE4XOgudySX10tOWkccP0urE0zVXVWZ-ExB7JdOM5o5-w&h=SLuIYOiF8GhEPreocg-o2I9qGKGY6XFPcWurRXrbxpU - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f402858d-cec6-4379-8a32-86aca00ff612 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327107320911395&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=zGsslBEX6bkaQ7-lk7M1-xCJPCSubCj9ny2-iWbyN5_Z8JHPLHqiyhy_s5Q_-gesYMeLv6JkQyD_-GD2USqP5Q7lKImyfCiVhk5taBTFaSpszRxpuH7fdqcFdPhivPwVHY2DMswOgSyLfNmQpj2esE00iE2BrIfSo1xflD08EdSLxA52CKLE1bR_V3wCtFgfrj3IdGtu05PWoIkchxTmhhpNclVXpGFw3JVAYc9954xKGuXpQ2YQzsg9EXZ5nLOo-8k9dQvw87hHJqVJ88ITIVTw3YpgHO-5NinqO08BgjSDFo9lq41gRzzIhjjZI9JHEy9thv3gGmaWf3Ht4Vor4Q&h=h0jpBIxOlFDGS37I482gAoOHErKsb9c9UHEoLU6RYYw - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:32:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327107321067223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UYY-HEjCxb6x3H8jO2v57C67VSJ0qwkEx07aFRkma5NhaUKfJXJW2ZfGdOoCkGlPP0YyLAyvwTAWAROVz9RCDrs3mLgcyh5ZRq6-A720vyT9-zsy23ud3rakn_O729UNacZ5HftZrBhqpBIigoePjJ3IQ1N6BuBPrapdIs3sST0Jjqa9UNWPQNhMeLJC3S80o7sZImoCtVpeZEzNy28uMn7VZALDtNRkkMHG3BKL2N9GCNneqrE7SnU79njBKiT4hODXnYSEi-0mUIVVe6eQEG4K6pOLNT0hM8T5xMPSOwTB_c71rq5j2IFM1gBVEGmFAY5DHr_ilqZB6nuf02Duow&h=gbCzEe9YvTR2cZNwDYotHHFN7FjiSoajs941TFJecEc - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 1d939fb8-5c03-4651-b41d-b1731ac25b49 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327107630949658&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=YLYIdXeSsce0OsM10bVpzi7TozoiKhLyAknq6txdeThKmyg1zXrJ9IPHree1vgF9HBu1zuPn1OGRzsogMV53u03BKwvSykRdFFg9RMxNdvvJdAOj6iNZdt01fd5Wh2d8NO2WpI4XlmED2VDo6_8RtroKdcjTNrZCPYjc6qJxEjCwfgQof-tZaBcG4Z-e5DrJnaRMYmdz5zoXt3MP2FthCII4kRQIaNF40taLfTPgHWGMUpA1KGCPiV4BFdZVfNQ6FwAXVLFanR5YQGOuAqR_5l6ChCYuo25VHimwOync64Tm-oICvMUdSY9nwdStp5j9vj03qfBxucYT8qebvsM9Wg&h=F7N54vjb15hkUibgsJ0-tgjBPd8yfmzEPAvayN-vOEE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:32:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327107631105850&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KcQKqcM8_lOqU9q4SuLuw21EmreipScWZjDX2AfxC1_zsgyxw7yIOXBvRBs7onrsiZfQBUV6I8ymF6_L9g2RDbxF09cypDoEAx3X03s2zLNMMA-t7f7aSwfGD1L1_IH-8oYKDkpAwwALctzt83xn0WLD0hdSjH2DQEaK16ftqFlXis1t7VzSAYSbfnHX6b-uX4t1nufZ_dRkttH3SMfa8SsKoKLJO2EOvgfVA_lhFE53p1E70ak4gEfn-gKMJNgBumw754SOxhbsZzviesHiEhmbdGV2Jn7S-JgqtPubFIFKe8kHgTWzvWc0N2W_-ovqIPf4TIrSkoni6mnOql9uJw&h=nNUbJx8UXQrvvkCb_ABqs-6vRxxGG041AukTYtwdqFI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 54d5ae9d-6b30-4abc-bbd8-911631e58171 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327107941017956&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jnqgtnoVbCOiEqRNCbTbYXQJkAJF1O95QImaSGhvznpPoZ_nudonV9ktq5OSgoFGsSf012lXv0Jj8mC0dew7qqlWURC05nSLqWwwdi6d-C8KBRFitVT1XrhOtwNHXAPShCP-C0JrlbjTK7JXImkB-othBZ8PM1wZsg_176uD22iVFO8J7Nz7eTWTe7KCRk0S0ux1ax1eTfUjnYQUb_DfhBhuEk66jGrLzQvQIN6IUJ__MzwpzgUfVZaAxB0UgabVORcRk2JCHlchspq6mImoo6I-XPO_Lv-0RUbzE8ubq9L9rNJxSQ6Cv6JkBSalsvD9CqcvBMuiWpDeRwoWoIaGlg&h=hHUMBjvEiDWD84VJuKmSNeELJ24fV9GqXS6YY38y4b4 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:33:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327107941174716&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OS5OzutKsd4K228Vq26I8ZUUf-yy5cJc-5So3FBXStRUb2KNQFyVApp6DUm2YY0-yVnMW2Wov57KMABaGsFy6NE6YIF5K5z_SNSs8XynvszDHQQgQ8d5NtY0JNkYXxzh-rP5ZE1xW7hhTer-Gapa-iOo4x3USg6kleC1RFJRhOEsFWsH0ySfsp2pxDvOLTjaD95vSWXDSfQBvHnUu3dqcbJog0-zak2I9232snFEHEI6kxzdQsR8heFy3Cj9ONfLG4djlLF-MgV0sDj41rCzdBoksSQHMPTYyLO_I596f98Kz0itrTrKfDYL5xcmvoV0DdaM_6m5Ea7QEeHligdAkA&h=VjF74CY60ltBiSxcnqoD3s2pWVaSZeOXKb-K2-yZYQ4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 031d1946-cc81-4710-b897-ac1b6cddb6ea - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327108249318722&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=wchkUhLwk9ZNqsnkrrVQaCNYKHl-14G9Fr-7ok0_0V2rb3G7EfeVaMTOiLP9JZv4CyCH6gyzNZfQw2_0XJkf_ZqBw7D7JIQADsmFL5ynaOGDvNanuTk69lqmV1N6vIZGLzEd7nh-OA3dBuxfuDUBMEdS7OpdMgc2x8fuDY_x_xjzPUfx5l823WLWvlbqQyy7H4dlnwtrzUnl2_ANl0LVcEee8zTxvuFyf5qATIqaMBi74uXrUpsu_sIuFWPIogSntixSoPCIEQ50K7eoPgGmKeDhWhW2Zszz-f8kdG11FXnvCcSc-fUHhm2Ebj_cCN5tpXOYCBcgwHMpKN-KkeA8lA&h=cgdDUX3m-W1hI8TfzYtNTI052o22i9U9deItv5HMfjE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:33:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327108249474969&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ZIn3lgA15gykJazeeAquUYE-ZxQpM39smuqHi1MLqTTxe7tadLVfejBp68O3If4wU0gjjjL1HGqHZ2P-B80zeRN4VD5Ck0AZaiUXnj6AcLuNiDHhrHmex6T2K3VkHJe7w-oFY-nGM-0xLW7xQMVxscyHFqpussKPh8NGyG1Kd0YKeVu3c5CXXvUPvcisco3u7tluQseUxYgoPg7hCkwo26yF-VLLHxBUGmvKZjw0SR_qWL96fcwFy453O9yRVhRqzHDt4iQceTRfm_wyJqloeNccyasjMz7jyX_TGjFlTQ3BAvyIUVAK0_zg5yb0VEPjHW03XQjBwMJWnJXKLsnMpA&h=79MocYtFMOynVdD4h1LkmE5OPJI-Rsf_KCtEOgmBqVY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f644a096-b8b5-4fdc-bf94-dd14476e9347 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327108559990275&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uml1507nytGm6HiM907JlrNv3zD3WyJ1jDORDgjLSO07MLYO1VGYMUq53AxAZ5X789otq0aOb1RZGSLBL2TH9z3GRyQ4JEAUe1zCFnPWLIw5IzpTvvZk_twwxPukRswAvU3_TaWRTMM_5kUtkNRixh33eDFXaYYCyp2g79C9zs2lpA3FWsw88Wx_SJP14n6XR-QszwvN8nSIbSdo2En4ojTQFb-XAuaRBMY6wICPmzOZtWYJdM58zrKlMhiYy1DeSna96TlUi4UrXe-zDANt8mdM6UtgqweGFmaOKnUEbkrnc1pGjpRKKVwp78Rth2XKNWBuAgFgVjYKSiJSmGGOAw&h=nNIuNdMnpEQbRpaKzCw-VhoVqVTdyyuGqPE5-a0oqSM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:34:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327108559990275&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JaGg7FnnscFoz-OsgkzUbmzutydwgrMgiLCxS2h505erClLsj8QMGxLgyNhLoZvekmyz-_4yg6CgGU43wR6LX90aRtGURBNUzljlNcxEXKkRsLbdVDJR8HBohjc5kKY0PGIGRP8Ovp8GBJAREUPBcdB9G8S5BrWzqowlFT73OOBxmfIHFnEZZ5Dn8BDdIjE7CDwZ3w_Y7oscHHMpLNlWWMdqMU2ffgrl9ZbwQI2hAThTmaUcPO1jgnC_GWrNQqUd_lwcBmOgtHTLv_4SD0yXYq3uoi68gHiDTUfmKaJlyYNmEoTENnEYlR_dcUfFlbG8tNmfb55BX2rJlSde36jOHg&h=X35pghr9MAInOl6G091Q4TML7GD6RiXsIdMtaA_xxco - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 2cf3fdb2-76a4-42ee-8b57-0e680f2f09a4 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327108870009747&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=K5EHr31eJ6CrIkfAP_CgMGCl9cqkT-5zN-0cXkprpC-6ZB2_h-jWkPss9oPyJB9gxS-aRPDttVuJH_IUSQMGIHvEcl5AomcyvpJTKArtRlp2tRmKvp2PWb1r-eNP5rKGMIm3MClGSIPGz79r8c4jIXbstgFkURXUQVpTPIEy0OKd-leV8n93GYW9ptgABzo0P6HUd3ZxP-PZZ6FsptRCHwU94TmKL-LVK1NVP3WxIi8qaQZnW-XbaRW-PcpM03oSUpM5wWj9ZfHdiDVi_aHMNKP9CuTc1JiV0JLuVjAyDzDwb5Q5wCzFn52cp5w_JV4MSXXKrfcHi7N3cJgMbeNRbw&h=O0GJugaKFz20gHn5-_j9zE_5bSH-EfHDt6TFxuja5FA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:34:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327108870166006&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MA2vwgkmSEcm7Iz-Y66e0QJneUg1_4UwYccfMaTKYD1rHJJF6X2_e32kQ_eeovXbs2quTKzpLzjIHSC0QmeRB8ZXgEOaO4o6sGBQEOieBU1A4Bdu5lCniYqkoSCuNNjzaiS7yXn7-o3lICWMMuibIlicAQn2vc33psrXirNROIopIE6AZG2mlOrjlCPMyohhS6vsQv0yLhUEVPZaOSsnzG8oOWUPjeN7u7r2kYVRmA6lHejPZjCBuhiG_PYcQm6DGnjTS_cRqCdy-hEwdpKg1xVYHLIECShlqJY1GBwhH-2upYHBjiiukOQHIzyyWpbY2m9rndHuU3Skl_CVnVkXFQ&h=eUmCjw7gHzQ3QJFNgdddKmsiKbBPIb9MaB6lo6bTImI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - e6933552-9df8-4499-b92a-de863cfbd671 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327109178116121&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jyLDMTApkqArbAEFJUJw7N36IzF6X8zpzRxCw0UAXLKr0lDi3Fk7GD7WvylpKIRK7-yXC8zk7wYUaWMx3jCFvi7M4QYQaKjzzgN1aM0e9jT7CYdevbg_FCpGFarg6Mhg-EDk4AoDl4nsVDRzEBwuSmyMg3aeUtXOmZXxr2Bwt0TjhcEhMGyoZAhArx4sLvSDWMM-7E-MThjzy_MksHCd180pK9B3n_ZE_kDeVA-Ca_T8ItKAIilkiRznmKHNRaMxB89-Pa2EDLnLT-nuZcxJxaNzrdGeN_xJBU3MW8GjMve89UHk31fLtfql6Z-6HIQjsr7hDgRL3CvbvSHhrrEFQg&h=JO0TIso0xdxpTThvSw8Uqssw7rsDCf01k5ce5d4KRIA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:35:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327109178116121&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PP3JjnCIYKuAjGyNSToCNr_JC_aHZHujE7yPAsEbDEtwgEwz-DF0KwR9NRnyXnANPp2vmILfTGsPY_gulTA2qUbxbSjF4u1GSS_gtcQgNgyQO2204VyTWcaAyiFvIgipNXK7XxbEPImqcWuBQDQ7Zq_8p49FSa-UIk0UgwBspw7uTexhtAEJm3RId2XbPvCQ6jpdz2t_EfVvn3oF7Y8nM7rVfh1miq8CCthfBDKFuMl02_bGQ7kPHg3ptBrWGrJADhNbfCtFQrHaSE6GRdCEUK0jYj5znu1RLMlUwuBYYFTgSzF6Yj4EGCKuwfncka7rMpvVdGkRdbt2l5kqZzdYHA&h=MTp4JRAf_PshRUCiPynKdOhVVWHqyeQ08rETJzhNBSA - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 687c5d34-3908-42f2-ae6f-0370476edfb7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327109488491841&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=0NlPwOwu7QLyJOODIp9ehnsZJWYieFV2WfKWoaHUvt14sEE6m93_r8RD7P6XbTd6pa8-CoEm69sX0TMOAkKUyNznNYl6UaQuEe_fnX3YqPB5sNVlnO33yPM1WeXyYyqs0QNBAWSYZIBJrQUOzvS-9-LSknVmQWcqB3K9NTh1dhh8Uptdiyx2Xfw3ZMPnCPa1k1o6ltq75Klkl-1Mu1UlJXmS4nf2yZVjtauQoE1ZmmDMrFXW832961Br7hm668fwsp0xXTHLZ6ae6KX1X_eRywCZ964g0WCfYovFTLBi-12jOIhcwybtF8YcOz62aafb7W5uN3u9xBBrWw59MkxThA&h=8iR_O-jXG5sy6WzKXDkHBfZcw2_-5mlKX5Oo-3DvtlA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:35:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327109488647963&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Ju85m2AcykEOnslEMFEo4YtT-5195H9qu-m5n6Fy1SZ9lrokxu5fHHMSSEvthkC_-RhVKUxJIKBS8bECT_osqb4eSCZ_SraydHCpPOUPU3G2-t2LaamQG3xfS_erYbjRbYpNNVVxmC4-CJLtAlqvHm8nVSlyU54De0-jrOuhOY7YudezQcAeyZ9oKxo2Re_A25GWIiVXSl0ATutjzzb2q2aI1BYv-v6PqiMjDZQZEfR-Upq-3LjjQfRokvoTM3zjFOaoAO1KkFYpvThP_lwxNmKmv5JgsD5pYF90l_1p1r_PPcSNdEIasziWxx-C0xYXUb7mxwqHUEAezIV-3lqn5A&h=BArxn4wXLcPeT8JdK3nXRfdXb7JwXEXSw89CvVP6EJI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 8ec49197-5525-4f28-9326-7ac56b42279f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327109799135836&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Fn1cjyVHb_ptxxBM6FSIpd8hnQL86Geeay6pKmnmwIpmIp1onlR1yQZu6WztsuRqrK7T-SEHRxPw2PecKYVXZfsTo4jl3-nyA4D4YDIwzri1UIUJGFMERCfKF5AtOffqoFDmvqz6nr0t1thQjsOm-3JXlBqVsa7ONKPTwSKvT1ImONU3a0tfgTS1qXrTU2aS-fPfCUNrywjqLLH3T3Hezo76-9wdAonPipurfSW0FIC6Kl319daJ6EDHIfmwQD7fqUT9o-uE1lS6RQhhYgRdrXG_kg0lL4uh9ic2b2RhLygsUImQ7y12XtYe0dBEf1oO83LgdKZEtQEF1YwJ591pcQ&h=hyduuXpZHPpNCZitbq9pxsYUNaBXwQNLFhxXSfuAfBA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:36:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327109799135836&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sq6BuWEnNBsqGhGV4VuJ1oivBBYV46x7qNxjBWFCp3zLH5ITMSfLEvFL5sLl6jUN5RKunGRlq2Oy9KWlpAgPRs2skOYwBrtNd6tdHb7_K7Yy5RCwWCxtrLCmuldeSDQCw2vDms_Jhtu7hknozyCCxRzxy1z48G6F0ftiu7qnfC5FtK6STDCXju2sXZ4BofGfoP6VjnPYX7EElsqzQt8zjhAfcIktljV6lJ5mD7UsvKIDI3iOKnsw-2qiX6vag0MqJEQ3b4N33OwErElZ2ddp10AYhUBJVj_oztQivBv-Wvx4Y8UXjc6kuMy9hosz5vpDVEcQJZwcz23fOhKDpfTWaQ&h=QUgKdWGmX_br-7MwZWEASIVXIGKaduYMH7SkF52hskQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 2d2533ce-73ec-4111-a45a-adc186e9faad - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327110109000466&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=BPFQuNezr9fNIm_G5fR0cJULr1LALpyejluuhXVCaMP84LtnvvG6Am-z_K634QhJn9G3HHNKFI52TfbSlQQXmoDmmSCkGnyJnrrcnLi9tlfA6KGO1iyC4L08nG6yVX02O_6N73N1S2GnyXkH4MiUzztmfyIMVBzeAyQJ0kHT1oL_CswR73IR3SzUhqarB9TApZlEGEmAFp9BEecjOfJUVP7mB7I4m-dCs3bkl19_g0PJZxPhKRgW6H3l_xWsNateMAgl_jwVJtwtjQvsOLTKQCL__85pz3iNIq1UGxPxSa5pSyVkV0YB5rzTb-uHZfvMHJuW6SvytS0XQ66j-dYdnw&h=pjgV5H3jhPZ4U0J5tVR-jo3Py8ceFMT5lFTTpHJ2DIw - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:36:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327110109156713&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=DR6q69HoTVjPF7jEYj_xDHZq-CHI7zBW5YyzlaJ4T2Hg0HX7HsuS_TeLS1YfRjncu8W1E6Pb4_uteulUVlxFKNaNMEWT5SEkxuhgiiY3xnmAMxJPQpazGXUWYKfAtgl4TeA80fUVqnR06HhVRBUsj_pKzE1zcFLXyA2JJ9NxTxRPZFsOTpOpgeECuNbb65OvuK4xi3xWsMl3N5Tm4vCwiUp6xJR7fGP8uizzomxhk38Dip84QDqP9jh8kGd_ZcEgRwjb5GV0hvsdneHRDzlhdD805UAk8umfj6A6CrQ8PI4EwFkRI5LPaUbDtEFnkWWtqd_LWtCMqeLAaHzM3pot6w&h=gURbCDe3AjwxGjQjyWmcPFFIU1RFjkQc2xMLOpxccTI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 44b495d0-ca92-4e65-9704-a3aa8ea91b35 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836010745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y3J9n2FROxScO-do9hyd9CzdmoRvzW8of6eEVE1iDnJsgEbgXCrhN7To5pJthi6dBrGR7uU3jHmVp9uyxlNfMfHlWTs1CixwaC553dZ7ZJbxxrw3ldYKzNbKf4pUK5oP1keXRGSY_yFM2hJPbdKrzUTKE3pvCKLg3LUcgNxUn1Qf90P0a1iY31z7tKK23eBZx4eaExBIHBsrHaJm7-QGS3m8Y6Lahdni4p0hMIq-2o-5NR925_Nr06rxjNCPT7OwbZnfnC2lqolL8WUaKi2QIZ5EZWcccKDbxzXPh4x5-9_pM1ZKe9zzuKlosOI_zwqYvrxVpJq95f_MqWTwYc4xlA&h=SyxsB52GYH0EpykkMNEssC6Ge7RQDyDhZ5uvtNiMPmI - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n - \ \"name\": \"2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 12:28:03 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327110419179187&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=vCtx616S9ySzVlyqoh5dewiZdTz9AuMSVT1a3BLKulrpHL90ZIlI1ElgS-Gte-T_nMvqEXK35rK6J8S7fF8BK7JmuxVpqtjloP57nEMKTKXVuWAy9TnoD75KCD2Ju08psb1XN6-IAD7eh6i2Qov70eXNVu6d4sehVli2OMdIKLNxp1EpeHIOtSgaWK47mdVzGCUbh9uN8crsblXbftbK7bmHdLotc1IeHDHJimWPQ56pziY_R4e8u7Pb9V7yBFsAPzVXDz9Zth4fEMBr_TrG_O3kxT_kPIQcHLJa8d41cwb6uVdOChJwkVLdQJAw81asiO3geyKIW8lyMtSu5xsQjg&h=ptxNTthgXflI3mBqa7S_KKf6e2Zvx3oB2ErEHQeaOlQ - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:37:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327110419179187&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=BdyDCVgnme0r-_OZK5I2D5iy-r8H_xdpk8Mm8myG81-8C5FOhVScD6EfoaB7mmvQeU_8x6Sd6aDBIC87dy4AxGRnD_0zE9h68TLCpl4Jrdu_6knVZ7r5e-SapousdSv--dIvTyeC5f8AbH-ycVwxWX4BU2R69H5PlaI5AZ_hFueJLnD1S-OK8aWoEgaW7bR9JP5qD_ntcYKKcs7uI8jZyFWrrKDjLgnx79X5CYv_-r4MMek7UlFfW4shiOMH5_rUBsalHSDmD-IRGc8wkkdJk9KAVjPIhwrz4FVzx7Sl6d15bENd33pu9jx705koGbTxQgAAONzepGNYWQ_oQ2apug&h=1D9fy7t8yLMUGgBHjVlT8z6ci2u3OYIGVwyryXmm6pE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - afd9636d-4e4b-402a-bd7c-b3bfffa3fc6b - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327104836166458&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Rdm9I1RoJ3U6DsS5jUZBIqfj_gU-g6YvxF8Hq_dOyqK_7n_HSOG3VOUTJY0-SftdKBr15ZSW3jkT1hWBOjZa_46EiSTuu-joDnhb59srqzdmVZ4xF6PoTD1CH7_AAEAE9hh-8XE7VCW52W6OiPLQ9NEfIYVZK2RJq5cdUMh8-w0e8o1h1Bx5ti2mnE0aAD2TMhi0yTYJsSajrtYEwCU9sXO4pZwmf8CswyaLSK_RcTIh6f-GZ7U-vC3_0cbZbHkTMMDBUKwS9ln7D74lBEeyQdmoYU58Mn2-pEh1lUwQakcn6DM_eiNysZ7RZnvKsjjwh6G3KcFK-yKsCfCo1Z5Jew&h=A0oZRptuAvkB4y_-YdUTV3ZigCb-aKLyOFPMLqB_3uw - response: - body: - string: '{ - - }' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327110422773084&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=RJ8eET0dObtW5yzr22wnEGo1nKRwwVYf8Yab6bhMTNieXO_GOobFjx4Pia5O3jevCkCHNu24fky4TeQgQj1FAtkzOdc8VY3s0cmFWvwf3k5E_cvffqlpGM3ObidMNWbhI8e0NRdIX8ghKtEPafnwGz3Fmck3g4jF6KoDdsPbJzmjOevmErx7wOylTXzYLTC5W_BGLN5n1xknuNHNH56QXjePDDi49g7KoJ7BTYbMRoFTC6oC5X_Yw7v83HKPNxDKmBiqhhej3pSD8jq0XQs88aVck1ScEB-8M20fZu5qRBNrtKjNv2ZIhi9IajQvFqC6BapQASAKXejNmbA0vyDVEw&h=0IR-2vmvGj670hoPv_8pxcMZ02grdcRVZ9UgfYO2v0c - cache-control: - - no-cache - content-length: - - '3' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:37:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/2a2e8d16-55cf-4d2c-960f-1e8f7dc0e8fc?api-version=2023-09-15-preview&t=638327110422773084&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=RZoX73xKYQ_ZDpqF3kvdclvtMj21mAomA961pZZtnFxVTH64ZuJLKKL49FLiTCovppt0aDvelUg8bXhGBJR93R7NFNn1cJo2nVV-56m20AY5tNJ45Kmf0813-xjZqbsutpdthO0ZuUGYck8I0HBTitiQzUEqQvMsGKExFG_5_oPdp33-SX5fhNf8Y0wNrcySlbjEu1FqzMKIzKHkYOKVK3QXXl-WWJGeoT5b22EZDGv2Obhg4eKU7vKc6sUefDapekxOQDtsyPW4LM3MLULn3rTlkGwhn9o-zI7m2s3_A_0VydPy8YqCzTPoaCHb8swI8sIbZme2iceJ_zBlUqu9ig&h=7dexNHlwwAq_MR0ogxioTq9onLZo-sLjk-H5weskF8E - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 3137ec83-a48f-4f05-969b-d4b554175d3c - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_crud000001cli000002/providers/Microsoft.DocumentDB/mongoClusters/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Dropping\",\n \"clusterStatus\": \"Dropping\",\n \"administratorLogin\": - \"cli000005\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M50\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000004.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": \"2023-10-12T12:38:04Z\",\n \"privateEndpointConnections\": - [\n\n ]\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - cache-control: - - no-cache - content-length: - - '913' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:37:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CUgCCBl6rC4WZEnRqTGAyME7on4aKLtRfNbITi_j6dgRPk9jO_UXanai5cKBflW3D5ZIrHEqW7QlfeKsz3fizl9UyIfd7RbjyCQc3DdSlmZie1i3Hk29w3y3jZvcOUUfcSIM58qClOUPQncLetuDbjHw8P9iX9Zz0mhdl_GoqwmqjE6PsxV0wJJdvAA0pvHnXzkDKoojs1LHp9YBnXw9BPFlrrAfdKsSWZG58sSFyIDRe7XjXzzxdCWnhO8xpnSin8nBDT-F7uSvxIYShFThATDjJoVxWO3h9sMHpaGuNddZpe3xTQgSfDQixJzBz0QRzWnAz3xd4yGauIhvFk13Hw&h=2_rcig3Tc0s7hj21Ec0Y7MKpmYzXlyXOcP8cQf_P-D8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 947f76ed-0b4c-444e-b3c1-aa0e666abc00 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110452421786&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OQg0bEaEl3BQBQ0EDaxkOO5Ac4nQzXafj9ENAskCmn1Sqtgneo4DbfkaJNZDwBtEBhvypGNX81TkRJjBCuRdHkeEI_u4jXCm_Z_1OQD_NoDnCeiy8v3KPDpJOeHKS21RIspMMdA-yxLkPTjnqw9d_aTuDmlkb7n4dAQVBhfXRiYDWIo2276VCBeeRLNi9uBvAWPVKi76GBpQnFa5NXor-oWvsY5-uMZfgfwx3oLePMhN7TJKi4Gse3Tpy81KXqA8LDLpXBO1ve4q_g4rikgMkyUuWNymsIJtpKgaMCiLRZJEmB3QmFwyPWbAazn78yQ3bFx6ZQRhLV6z_qQzqRcmwg&h=CXe4EsEvqIM33EADqTQ6wawOMP-cSJJUEmoXTgX_IIg - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:37:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110452578426&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qN9_VmoaGZMzLojCtqMHRA2ypSD7duQKA74nest7Rh3qpnM6NmUl8wi_2qXoo3eTJweR6hdOtEXxk1TrTpQodqcWGfOtmN4IWzFf8-DheHzAcPkEe9WKuFxpEpRMxhFrUvqx1KAW0IIgrcSZkcgW0BRKErjbgHKobEI2HIv12MyVCGl7edwaQmMlhdzTYpu9OzHOseK1z_sNq_B4dPusGunQI-QmG791I3LMxXcB0dQz7tXNbdnvo3Fr5lDUkT9lvd8z9K8ZftKvvsRPt5DnIa8_I4swf0TVDwROcnwVfRndENrgJ4XPbTFrmwBHfwWZ7Y3MvGfs_GmkfjlXwtGxRw&h=HhsU7osO0LozZmBjJU-9NaeIKRtBgTYNu4phEf5N3O4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f47b4561-18be-4e3d-960c-dbd9a76e1c8e - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110762757422&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UdDlJcS9GXnkXyeg_6zMMMCBBk-PeI2aozKZm0NMycefu_pwNS4dzCBsVQUJ5i5A0HsyDQ0SE9LtYd1eMcZmwu4G1ZR9l25sMxuHqxZZLnSwzBawI13g2sj_-KjGVIY9kkK8c5YButwcJOV7GZbaaJ9LBIu3SY33SjJn6pD8XT1FNKVbgoEqvpfNFecqVmNaBwFX_wh4W53KFoX7HLIVsgeXq6Ox_yZAMY5q8Na2_7cEF08zge0HNX9UaLvSWYzE6Kx2UhI0PU76I45pFJnxUJUQLu9Iwg-9sDEnk9Cj2ZXYeFseaT5G0wUEi4v7O7SwMxJg2DSbbTFTBbTGU23qhg&h=KY75pRJCuLfYZBpkCw9lx3nKiODRxqmUFCA4w8ART0I - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:37:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110762757422&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=VNiIf5BBJWyv6XkJh-1pIOCe9I7wYNzJByhRC3LRAOX20z_fBtJHCEMxfjqBXXa1Fwo1vUH0efDwojsbhJjBmZSjtEC8hpRA7vAKr7MifkG65aX1IT6bIVm8eZHaXRtlNWkfOBf8W4HgZy39Ilrgs8lGOVLIQx-mOqLVUSIv4d7XEHqfMAbobzdWGmW7wdFYyvM_1nR509Cg-BBYdosRJE5d4NT72Reh53SPiEz0sLbq-s8M6BlHptVE61uxEqK3Tbf0bKky14xifR0tyvMAJfn_FAr2A9dZh_s1vhSOjn4Zwxqd3E2QRO1GlCUJSAUWD1q9uiT0FJFKXy38cIXyuw&h=9cimrUAIKDltQkW9ml5CsycZofRWoHupYHOsfNhnXQg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - b3ab09e5-0fad-470e-971c-28f9129ba6d3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327111072780567&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=apv9CRiTfDBGT_5NaQW-tgnV1DWBGAGfURBgPoP9MGAYuskCMKZvRbo0RFhexpM-eil1yTfj5f8lu1tcBmCQahLfuIgDUqFmHdKuJ2xfxu6edqpmhvxcZSv-Hc-K9WB07Cy-RDGsI3eqNPviUJO3Dc2uufubOOO1DNJbyAQkyerPATKYGIbC_I17YAQIUdUpSIc93BAw-A2vL01RmRNd7PXF7lxQ-fO6vn-FghkEVdGoOxgLr-4v1_SBdmY7RqDaXC3ySOVjlwRNFguQFZyp_Alb6fYMVORx3crPHT8cGNEREWS87ojcJ1EoVkZIYZao3SwWi9ijEpdaraKn0jCyDQ&h=HuOlQWF5BM4A4Sl0CfFyN3yE5WcgKLSk4i5k1FCokXo - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:38:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327111072780567&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ZYPius3oe45hDfHp698BQa9NdWTiOQCcEOeQPyFKqjGq3d0aGCxDa3fDQ_6F4yjoV5mPTejML0UTcmtydFMf2r7-oNdEuxmRA85U4hh-6WamjYKId6NQsTcdcCgWSfkUCWQ_c3vOY_GLV4NLHs4ry-kPHMlWVPkXMQ3Kx-oDPLoZBMP2gN1CqAbJyd-ifMz3CeoR13R1e3a7uIrQ3iL3_c27ogjMw_aDfiV02XZEMYQllHW28TkSFzO9QOEijtkpM5gqSRi1_4UAoVq-V9IbSXgwRnB1vL4KdORmsZ50Ax8bdChoDroEZmdPUI0957Dedy47nbN0OHoMpKI1GhlMkQ&h=ozj5i15P1iPW472u2b3SoplHFVRl5P1u0HPvpZmSD3o - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - fdbe6c86-0cea-48ca-99a3-5590043a94a1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327111382803606&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qrLEffY88bUwgI85sijKsabJnyoaRUCoaV3cJ4dmIeWHkdmAwLkFG_AgWywllCmjYTGaZVbkCL9OXEliMotzqtCWa4k1VkitjDf8IF8NmEq4aDgDNb-PTQc5FD8qLnet5aJGayak5hoToZ3yRUq6e7gtbauzE52u_BwMDf3V4hsXND41AdNA9AiRHzqXecmljM-vOa1orYLot6skRjrTWfgTcGHVe6n-NBAOQvSLAaoTceX3ob9ANh_fmfLFmT6-0dfCMEEBvNzJV5usy77kjwaOoT0vFrnfsym2bXgHVTEMjtIxi3QR0YvjyueN0AVKU1Glw7SDYzD1YK7vNki82g&h=_HmMVRhyE_DXm_iEwvI0J5dcdFmmEcZ8Q8QY1mJVjXY - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:38:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327111382803606&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fZxnrsOUITA0spdyf7JZ9U0ZDfcp0H--kjzwCjXWiupLMkWIre3Kg9jRYjZhCZl39_Fb57YQhQOfN0JFA4M0O2V9jV3jzqGHBFJVE90MWy48S2E-hgq7nVZ_s1ZH-Spf3nIYznfXa3Y4yZknaJmRl6n1T5veNw3sW6H_nCwnyNEFz_CR5NgvBJ9cRkh42Nz0apnZxJDa93sloFDIeDuvnbRTJ9ZdI-fZ1VOQktmJwEIJn3s5DYxkSCHooMDrEGfmGD2y5RQpLBskHm9DOTddlwLh4jXQ4yULEfsnsEGJJ48fzihOwxOAlqjUTEpEu2tWj0HF30xmMKUZmC-j4fyLKA&h=fu8Kkj6RqyNCQHkVz6cPqQVt9VotzirE3HpTDtkkKqQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 54fea9c1-b697-4159-8ed0-ba5e2d772587 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327111690795205&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Gcf71jwhjLiKzx6nwbsiHYdc8Z7lKjhLpwO1PudYsJVzlq2F87TOcE834L_rCYbpfPEofZSPLu2GcMV7aaMUl_ocxW66ruihUHpAB_BH0BlH1x7l_sR45-XOlLUlfHvXeOSS3B0z6OXrleJOjOfb2uofx9Lv4UJ1fkEdVwXO7K--f5eEzFYLS5rMialotA49pN7q7fHpxvjgm4xNJ1NR9-nJlpxnEz5ig8P2gCdEWk6ZCGH8LGc-n7sMETyHNEz-v-i2flazXyoU_8gNpeESmSkSfAXVfNTIUrXRLRg6RN5POcu6WRtNXg3O6OghUWZBUeWBnp5bTU54oJETJ6z5dA&h=vmw_FlpbnqUzO1IneU3hnmuwf9IQ0ELFh8jp1zQrw2g - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:39:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327111690795205&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KIgkDlePsiIrFGud0kDZAmW9EcAlaJUNMlrEqJSY8gv6JdZne2nCfwoEIEpUlvNW0XsBmrYha83HQLBRTOKFh1wR4exldCN9hU1eHPFQ_WvF-IbhOt2vh5CfjAQR-wFiM1eCPJXIZBW08tk0aHGT4Ks5YFFazBES9SIQJV42AgRHhm4FishdXlEusb1rUDU8EfshC8Wx0qq4mx1GzDLuKG1AQdDIl3EfeEEBbCNMVcAyvLslIhUFpw2rGSZoIzJz5VwJuTCFhda5QgSK1c9F_oROxizor5E12PsirdRyOr-kn2IzcPQxwj8BJ-xsMUX2awb-Jm7VVngCpNTYSYfTQw&h=qoG4ocisaYlpdO_oNxH3QVNIxGN3IJa5QaDSFTf13aE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a82751ed-232d-4e0e-9055-c50601be2124 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327111998631286&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=wJHeeF5hjAYlBQA3wosi_GNy9x99VtmW8wY9ANI6TV_XkcZBwAPB7Fw0TN_zKO5v10u7HzAdMyXqN1U6RFN6LM-QUJf6tlh5-LH0XiDMMxOCmbIzsptsY35aSjnGqd_JxI7cXtBsspGJJLDHJ8z3Gv1IBIPt-MMVjs9vA1xmdyNZdBytwaSz5hW6ECWc88ktmWiHqM2I_O2Fre9UBDAHz-y83pl_ycCoOkJIJ2TUFIclJOUlk_L_cGDwD6NsapsWWPdJ71uuqLj52OI4zdjqUTy0Q1sFm95NbKmHhZQ59CARZvgUQadE3pipkJAgb4pmyx9vuWIVmgWp5Qan-Hvh4w&h=W8wix1vFyx0k46puQ4pKGn9Fod1oWakEHyXhcHwgC7A - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:39:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327111998787318&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dmzj9J6c0rFl0qJinyNL0IpMLQ1j3G8YwmkBaBjOo-8QUIdP_KLMXPK1YcsnlKg2rjBVRfvNKiuWAYoa3CxNPplAyaFnipu84nnUQGRmeBcyCtERIE7thV5sBWUqmqWKJaM5eFDN-kpKt5G6iCikbcYwgbWF7xv0NJc9pKZW6q02FQjfKKrfYYzge36XxRy8KRPzBk6l471FbwDsIaez6OypcXRHLZKpjxYXceozkBoj5_lvReqLRglTou8ineDqD3tlb09Wq9HE3v0nRLKfNtaN8dNxj8X9icwfMAq_M7WT95eRRdTY14WQob5-ITPFJDsmfIs6HvD7YpXO9x9UjA&h=k6nK06xmmrw_R-ecNlCPfVfQT0FiyxABpWv0eMFJwJ8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f1bf989a-974c-49de-8b41-be503342609f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327112308654450&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=lHyKegp4-CzWFdMOu3K8QwGajHM3Jr6xkWT-EbmgYqczcmbGH3WpDHIVG4CXGgfcALrB60JPRcGwNnF7CqdRoWpkHz7W45Yp5mPHUytDKM0JYtxcKFLH6QRV2Y4Pa0WyIHgieTziDvvQK8J1QBkSbDUNrOYTVricCL-8bZprTlDupKGuXkEreMhpy1dtWMT4jtacupsEYFL6alyaSRnxyHxo0paAKI8ElitgOD5XUxo06SjIFTNcLH1QX1Fze0MK3uWMlx7wIWFaf5rz18M2lH27pJ7tM5p3JQh30V_ezWWFxfLjDP6X_4E7EAyLFEROCKenzEb8Hs8W73JbV_q_3A&h=zoBqt6m3XaLXmmHGw-br1-v6Z-BPE7NfzIVj376J4Ns - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:40:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327112308810296&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=RDAiHVDTxq0mnjEwVkIUlf6LQmwTKdQWwn3vRuOQNXkwc87odHSBBKtKjsZaXCCchhyaryLpp5NmhUmPwa9U-lWnPRvfG1wx2gcbmsB296jVZqfpXgp3ICOxs6mXMfYT-FxR5V8Oq-nHp_UffMu6pMyXY_JwOPwnI3xdu6XTDJKN3byNP5Kr8xMTEI_uOzTonkaSr-kMS3y85CVtg162MzvgEYwNT14HRlY6s90xdK_M5vTHcp9Zp0s7y71JhCP1ZvQxd4V3hMwBYb7DlzCn9tu1QkpJzGB5lB_Ax05b7M94_0l-0oqSQSn_adgMhgvobMmpQlAjXb24FWpr0IVpjA&h=EbtO7N5IRslGnWTyMvYmu1Dc0HAqjei9x94QnLM5xRs - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 817088d2-e01c-4a19-a9b4-5316a4a18739 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327112618989547&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jGDUqreFz5F6QmLy58l1JF3h5mUcoXI_IbcqW9sSklWD-YxxzylKDiI5w6mOxW1A8Gm5DNIsoB1lPP2WBSKWLPlku47XNbpHzXTUlw5tYSqzfEB1MPbul-bKSrBJ-szof9P3FgylmMHpjoW575Q64nqwrJSuAPjscCOb-tZUusExZbaDaJGvIZOGCmnHT1iv__oK9GTRQM2PqaE-gMQBDS1m2FftC9s9valK_kovh-2v26aKWuorTCBVMGkGq4vw6hFCDxgWvmFtRidiuxiDMeFuWuA6xdDEsuH046xZsC8G2dOfsDUZvw-A508wsnPX1CvExhvLS7irK3JEiSKRVA&h=0_4jpee1k5tajUy_-gHpv6abJ8WnoIQtekFbitTWc3g - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:41:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327112618989547&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=GHbnoeL8v0lCCdDB_QcX1Egs2gdkE8oRCSIKm0fmSdGUIudexohquxO4Awt8_P8XACbvsFFFojY_6HCn474UXd5B9uE9-kL10ZpCwuu7qQBB04mbwpl0b_EzwYCsElVZmmMztfZ6t3UDOL9w4fLE7zkqftGhnicg-z3lSjrefNTomvbD6fwaEqIYl_DNhkBDwV7SkZANFpoe-G31TdncTMrYzs9b2T8G9nNEaAKxkAwaAktLlXH07Q_kbqX6qadimBUHWxKBiDBLBiLXKOmu-MOwAHpE-aQ2scQunaUVjlII3-eHUQ2lc6qWidoLsvS0my3ozQl7IOekg_jG77r3KQ&h=yTrJEiJhhwLolSUlGMQJZlh_COO9AGODgFoOdfg2C50 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - de3ed931-3e5f-479f-a4f7-bb05d36c4082 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327112929106000&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jfoZM6_aD0Rp1TaOWf-rrVgzrrwK-Ky2_-iutO9eT_XiINQo-xeqWzN3VR0H1IX-fA9NjvD8GO3MCOxub9QOfB8azRpxMnthKyzx_d2hCbihfLnlAontJwnFj62bywMMEo0pZ3NOKO2SQMU1vaOKkQYfOxkNzx3yzCDSp7A4gD88bdMutjLcFZWo_heyPZkF7skSlmGZMYc9Dk0aaGkpRZ6h5AHuCAsODxPWwcJTitvpHmi8rESEfLf0UWmVJeIhiofOY7mvl4MtS_s9G2cLkYqXrc3BHutIXqTQ4MiHKHsBSeCFFOkF19sDsaiCJtkr8KYbfes8rhcF4U_2AYNUZg&h=C2BAbCy2ePKfhpesO7f9H5WZnjZi7r5XkUMSpD_k9_g - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:41:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327112929106000&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=yUtjj-gwX02vRJAgHL88LzR-FbKcFARkW2a0e3H9cO-vV_IIUqzywkp2ooiDzs2sO9xf1tIs88rRSPGNfAq35Iy6P-C41BmQrBtLjO_hFpM0TSIbqVLiAdRS0RQoHoEvLod_7BL6Yoj7Iv3zHD6Nq_SyCirjT_ysByL8aOCV1ia6j608wlXxIC2nA20LLZq0vAXvOJY_BOLUihd93aBdF6zSNouxJnP5esuwgAKt6QLIy8BFT8xoHf4dW_tr9yBjIy6Zuox73UjIclfLsCH_TXdNw7qsyqpRQEEKBW705bTzRbtTEFKtdgs4M89VhndF0is8NB1De909irbjjMmlwA&h=GjwOHqkbE8XYhre5yX6qYaiSqBeIg8s62Tw6W25UDII - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 53c4f605-8913-4b13-8a65-302eef8efb7f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327113239284491&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=zF_tdWHqCnJjlVIrfWmfnLCYGjl9kOxLlMwp-7v71D37jdrmD7yyEILeOaOd9z4K4q0K5VxKgkK6ZFdTYsx_hS7yZfQsrJ82tEI2R5cy74_ap2WjOIsUvohY86h5fqc55KgZQVhYD36sBfNYPCUv-fgIUV2vuYP1SunEsIqG7qM5DZ0-DjcVlxbg0AbK_rdNdpY49sTUT0wCxTpdQg8LAwkov4Xgc0Ol2bgCmLtTBbJ8Acr81vrkoX1StcnmnHH6DJSupmtofn-yfslMZlDux5SXYCzizNxHQJHxfFOb3E41N3veTRVSxqGb67VvF3M1V11iY-kJ1i_X-17bkTxeGA&h=LAicVJiDPrs47kxWha979IrZ5g_gbmyEmFuj195H5Ks - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:42:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327113239284491&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=z4b7xZyRd7GNVjey-CS-wEXbsfl13Ef1O5gPf_EpGqcSMnVBuDbGljYDWe7xgqwuLpuaecTqUJnua-ujDcCsvMD3Faz6zv34_FPSsuQbrzU6_ZydivUP6vUz5hSo3Ut302zW4YKZqQROxA-4Zvk8DOZnST6juOG-6wl9P1zpiLmda-OuuBpFfNoVd1fMW9P11cx6-PgQu_RuK-MeSkKeQM8LUO-nDy_hGF9-7Y0b-D5Wem31d87D3nBQW5VDIIAAFZwB1Zb_fBQD5nhWSewSQN5HFaMYG8-TGC3hRmIm8iuukJ4KriYMSvi5gxL89Rfs9DEEL_tS1vT17v7TCrytVg&h=6FMqLv5K9nOD6FeJTJjm8_PAWxGAefmu7dTdWBsfKQg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f0affd62-fc1b-4193-99f1-1020fb126c90 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327113547211969&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=g3VEqovVsWwTMpRwa8FZMooXm-TjyK1Qexs_cePZTMKKXTT5mGqkInXpl0ub-2N0DzGP9Xwxbt5EhntLu7CH9gdBhsIQzPH-ZSiyaRPvYpbxkOzJN2HLjl8K9mrjuC05EilTjEZ3hvtLF22jp4WtWraviTYr-apcRho-_50HGH7vGIit0q2ylRQ5ajr7aK4y7Vi5kHiI2580dvSJbSFO6zIJobuzgeXzxB99EYIF-osRGjeZiZfnNqaHJ2HAMhGChc23I3FrVv1QRTTnXRgER64iKORto6p6U8BrB0pj8NZbz6bjvR0GffQkeFOj2Xsj70fYDVKa-QzT0lZENDk8Yw&h=3DcrPt-yA7AztQDP1taqAgsUmPq5a7jRUqm2TKWJcBA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:42:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327113547368223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sDDsNBUGbvMCG8B969Y6nqgeXMD11Uw-6d74vufSMOYemKeP6xdXUchDRPlaQGEKv5vLChFdeQfrjcXUWjO5R2GhsJvATO-73crTpC19mzPXtsepI3rKEokndT8ULIIi7fBKj6jaVjYcMsMDrScF6L8Bm-N3x1H499rEnchGm_JW1Cjz_st9pqkdwngpd3einqcMl8pSE1fSK-dOisaFxiLCgWXSCn2I5dKFQefbocnOy5qPw8XLoV799sNQnx7T09AGdhJLsDyGBU7nCnPkx4_YPmskfrkDYFpNxM_7Rk9kWZe25HoR9pidWZZRvJlvo8jfA-jUkl0c4MGzIFZidA&h=gulcyPqwaqMF5halZE0BFVtPx1F_C1tvGPrvktAPNaA - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - c416d262-ef6a-44c7-8f76-45a95e5ff3bb - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327113857885638&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=x-nEQyAWUmUYn6Aqpdx1WgH5IGx8mlbZtPbINY9Fy79iTpZ8S1B1lNUJHebTsxR5SWryvDpnsV4LEk0kvQCT_-ZlZOd7izkTwBPBFqW2rH7nqrTiK9lid-TxsoyJzKiyJ93FM3lS6688BCm5SJCLLE2n-jYBgKiwNJTok34T7EpPd7FkzVLu_lgvmodrHYUuEWx5IwUQ24BSmXSHizswLM_zzc9YnwNtaIJ_63OVjwjR8v0BFCFpT8RWFZ5j08eR-cgzXZa2U3LCv_MJMg2B5LHzCbAOatjM4lgjKXs4pthNonrO9JU5yCcNXgTZhXWuytmMpe8z_aT4TG1qEPjTTQ&h=Dry6lZSmQB6xz16kN39HYr60WacymXyQJCd9WEGuTxs - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:43:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327113857885638&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G3bXWbwlEPR9jv2m81BgDqKsSl6dWG7BrsMvJYmPWIkN07TTNLabcY-U39B0Vg-0Y957LHUPYZsEwnr62HpcjzbxZctV1uXkKcKx4YGV_r5NLWYpcP3MnPxpkOtA_eD6-DU-SFMKqZvLcsX-WpJvRd7IiZQpundvmDWNzQrWg0oAtRW-XhWLoyKNQhDOYLzsUROc8oCdVwEPhddoZozCeTpUVTBx5Xh1czASJUvqLwQ8-XN03VoXNEz3UQJIa9VZ3uzgO8S3mUOjQ4fYZObo2kV3S-6e_vCnloltMV6Ebqa3MuN3pzuFVP7AZtAWVBbskmMvsRBN8aVHozgRVNICzg&h=C7iTiFDPG4vIwp3nBkQsLFPEdsywFtjXco-DsNFFYwY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - b885c593-9717-4de1-9a9e-073e732d8632 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327114168359005&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=M4b2URKC25LZxWihLW8mkRWQiYYn-XgH1FyiMjF3NymkRY-LDH-2FgUGGhMhYVFyq_uvBlqUIaSqiaTTMlll6VFdLn1RjKI8tIW0KWb0PhyIFW9ruS_p3fC7d5oAU5joGIFHSYP6d0P-MzwD6EfvJwmiYPxNK5q8ddsTCChJ2UMTwPlo4ZnegPF4cWJsuUhxA1QPrbzT3wLshCGwSXUPray7x0xcr32I47ilfBbbI_YthXTHAJPSyf9bgryZyzky627OJxw-BGe1sFP1jEClD2J9sGohkkDNgRu2Ipl7u1d0ClaOHIfehBTA-bGP_reCusjvIOYJeyrg_4uMEVcgew&h=DT-6mCipqAZ-gIPM_euMOSxlosphZ_5QW7Ixp4fw0iM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:43:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327114168514577&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KP_dK-8CLBcT4JmpPvqQ-j94QGbl3CpgzoWqaTh66VhHoXSKiXTuWp38401xe7wTLHXmkhWGTm6_IYONIN7mSZDpC4PnEtqgKfh9FEmAtulW9B_1P1QI8iE25mmebYU0WdLOBCB_6MU2xyDPY4uYOnUsGXdikMj7WKZ1mlONMRCa_hVps8-nbfJ_GFawHr1JvfhEVoziCBNbQ5EN3VhCfuKowFDh7ZeH1NWLlUL_-9G5tSd6ojRyi7nWV4y8wVOLUmM-qC4D4KnAIJCQsmawnOT7NSw4HLZQNy3wl3JwqFmUSj_BnOn5XWTJMAZfodVkHM3qAQY98xbuOw64Jfj0kA&h=RRRmCLaXLbdYK2mAXeQcIR5RgZ3kp9SVUOiD72Bra3Q - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - c8fb9cc1-d515-457e-aaa1-f8ac1a842b58 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327114478564036&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MrWZPY1SL_MqcNA_oWbDufhRwgaI4_iPXsU_WdBG34url2zngK8PM8r0feGzPlck56PbM8Ac7OuqIdRhHn6TgaeBt971LsCBeTeFbWY_ZkLZvXIZveZD2uB2KG8ouvZdjGYQn2pxxMwCbLnP0om7a1BUjYsSor7Jp8SEmz1BS7Z2YJPZdkpYLY-J0QUd1u9DDgi-JGGr5cp5Kky4ZVpVAr9MS84ehgv513AiFmXxB4d9SqcCWMaH7703WTTQa7YU6H3eeVUpo_GtuQYTUStAajKygnNwXhbgwRyLq8obSnYSpV2OfB50RHSlPDBT_5z9J8BnUZHLgLAYEZzGP-HJCw&h=uvqMZ8LPCPvOSLStBldha-F6NqYDGKxDZVCYiacaFtI - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:44:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327114478564036&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Wskx9htz46cm_P_AmZrwrnCvLDWeHHUeuHT4pQk5mmoEsW_aA4qXJMFM7axekAUVds6n5-FwBlqhkHh6JQDxcYtp07CKq6uNYDJxsiLQaCl2UVgRbXFEZoKs6VqmABbOUD8vGNO_HgWYCx8_KTrDG-CmwtvbDt8VL1Mv7yUM11MFZ_Dli3VZ95OXQYf2li82p7yjfhs5xKc9gzPqmC5ltNqdNTtaOn_T4wk_XyAwlQ95vheCLj2mACRox66fA87iSmHHsn5dqCdV_SOcj1q1TJkPpg6wORlLxBpNNkF2H3xJiuKchMAb3YhhzQe4dljJGQ_0e49qV6X5mowEPXXlPw&h=Pk7B-tEXq4lS7OLuyLUwHpAFGJ7Uksu4H0UlyA3srcY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a9c9119c-172e-4133-a34c-7eba8cbe2ecb - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327114786399799&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gMbQ_m8xBgIH0VcTR_KUJvM8FZqdJGdGclDsbo903Nq2PT-JaohJRKjGVXyIuMNmZotFEOOJ12x_qcbbCXy3nzIKmQE_eJE3Z4u0NS7Am6GLAFOFcfz6wdOaPof_KMdD1x8GzdGhNdexAqwJhcXhomJLBF-z78x12cQrCFMlA67jbwO3hay1SJP_KZBy7LdAV-KwM21tk93w1GkQqLYPHYELOM6XHwZJ9xoxzrmXX9b8yHqUlgurzUn63b4nEf0RnIXDhDWSitK2LGNHPrXQyt65mXWmQuSrkKvmlqtA7uK7wfoa9sxGb-hiXUUFvUPb3HggriLTQq9tOV73EkRG5Q&h=SGIy39RgHtKW0ZO7rMIB25CwpFC6qNwlz17x0dmpCbA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:44:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327114786555419&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=n37OPPeuUCXulklImOlGrs3Qbu4V9oOom7yIJubhWxQQ2-AkwpzDQq8CdajiURJNBWXK-HYfEBJuOEFMvmC7l3SlN8DLRKoc8zo8UEv5k72w0tFs3MeUR6AXm_KWgzkkDXJhEljhJpq2e6cG6UzmV951f4oVNX-eu_VQEPlgA0jLPMefFHAvlPVU5-B7dGVhzyiGfT4cW3aChSMUofCw8z343EXnAWxJaC7TahHZDsGsjjoYwvHKSmhNW3oQtcQBQ4v7iI2zAxcG2YQTPkyc8NZhbE302fGVYEXj62HanR6dqGcoUUhEMPTsG7JExZpi84bB2E_k4N8R1t9mlZz2QA&h=941uOwt2YmT9vfUUzhtqZMkKjt0SDO_ewqoPWHYuQmY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 80eef08a-7991-49e6-87ed-7855da79c9b1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327115096592019&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L5-gi97y13Bwt-DcnLXDnXuaYl-hxY1MOyfRBUuxwZc9VuEXAcc6_PMt77cNmdWPCTSj1-S1cwWMOPcDBp1VXCoFACRSG0tVtkFnK-hbOj5uizWF9wM1JqNrEohqjLddqCZAWSfAnJy5ZNV2j5vOJyETgqhyRucaQ7e1ovx-1yeMUetygX46tsXr66owm9eibxm7_mK0Y6gSAs3dwOu0n2rZhzskt_xZFltgX0So8Lf2AdoqbkrtOdBnC5Kyj_LTQ15GC95FNZ41EwidWF9cvgUtycv_oDlCYFfN4XeTOZyBvjV1hz7f1FYMB8KJiwb5WMlm-H0BoKclM4p1Dp7MHQ&h=0E0BX1mOb3T2rPX2qEObCAndN-TqoBfP59OA-o3wLso - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:45:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327115096592019&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=wOMh38GFDo3k1N-VYZdbSzTTW24y7Lsr__eSxLb3DI3mKeek6urVMTF0nQX-oLIxL7d_4POxdjnVF53ZvBhiYPKV-4pHTLASS4gMzmRmm4Avxk48DbEzZhDtXg0TQSBqEcrF1HdwOVZ8jOinFpPCIV0NzwEDSOvQ0hwjsyWKDIPXmLBDJkVEa4NIUSel1vn3uCknwBnrlIpvBD3ljiR1WxjkA7CE6p6j_mVyjtBcBtOq-e0mzY-LXguc75YLrjk1RkghCrDF2PwD-hiveZAKFKtKWMKwS0H-R4faBdk68JHUr3QlCwbs7Uv-j6ueZdFUFGXfYUnFduyk3fNb_pwztQ&h=lRo2C95yrSIaREO82M4GsOfNMfjpEM85KAOcipTA-R4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - e177b384-625a-4124-b4c9-71a8d7ed5828 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327115404916994&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ivMwLWjU2-5hP9-iF9SkRMpoxgtjIab6fb0pMwlw72kAdXNnePh5GskUC6CxN3xZ7Ufefd0ZmMoAMfigi5BxTX8v81v8ErVFEyGXYK_Mc3VV7i_-n2zjyzhoZTf8K2FPcHm6ikQhQVeeomLkeq_KtPRT4EIUWlja4StnczEf2yh1FLujTcTcmmbiYdOL1jjwS7RCWLw3_BTdI6cQnSVjsNa3uzsiqJiR7Shio_IvTpeQYc7hNtt0QdknKhkdmYzYLwDAzJyjoosTa9LK7Gj_lL7V9R1hZgysi8jAv7XJ4jOsjE8hG5lBXIRqj2Ai-N73W80NfIwf6FNe6JhtZE1FPQ&h=1PcVt5QpA8yznJ9BszhrXr4SI3z6Dg9qqRCs2yRqrbo - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:45:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327115404916994&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=c08Lx1E-Z4Z8ZVv6okgY-xOclyJxgSoVStnvEegNdIAQO2jDT9JeuYF4xQdiLNznTpqPnAY3sC2-8dJ9UOfCzeE4ojYkLnjDjtK95kok6DMJuz4cypjvOBiuG0_8nRO6QyZmfsBldx9bjHtEa1Kl6pWORkF-lfUYAAMBPajPPg2OvyPneu9bMJxqTUdP60TMtBIirULRbwpHd25MOEBX9Zr3wj6jtH8kHYqLSK316bYI0n01-Oj8ASD_oVppTXfTPvKMBhij4GVH7wSoR9-5IuluwzF7zn8FII2uSgyTHxaP2iG1SFtiRtWaz_zB0Ag-_w1JakEBidwz7xi0rGi5Pg&h=JKjzZdlfT1hOJcahPY8NO2a0ka9H4MT1R9rIAKEvGq8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 632d439a-a742-4e7a-84b7-1cd1b465e8cd - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327115712960951&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sYk6-z5sMsGpGMIcgipvTq6r6eOOgEpAD9_PSpTLXHkDE0q2alY-GKwz_OfKtnRLFlHE3aVjpdUqU7lMLEUW24Sz0_0SB9Jk5cRtjr-0y7kftvUPJx-XT90kpwji9UfC_XogyD6WwxmFHtlZ3_axehu43eGjWnPwGG49jhrV3wzJgu1xMlaOWOtJrPmbSygs9XAKMJhLZVsNoGiblG_IqNG7KZVVyUzQRVTJ2PoH7-9NUQy9bWsUQAdJZiA33XN5s_NkllDb6zXOIMv2r_jbuxVA5IrLaYJdQdEyFqDajWpF9jPuKhFPvObjxNGTbjmW1JBiBi9n6XVmM8KIV5IifQ&h=0W93qc18jOaxsiJ-4ZdIUOH8-XaZxZJcxz8vbJQy-ns - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:46:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327115712960951&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Cv9Dm4R7m826n5NI_NrOKvmcM5syrnpE7GKhDTqTLAjv9jDW7P3nP0tCZ7NTF7rJSQH0Rirt2QSkRVBdZvVB5XcApZ4gMHa7InqD5yBpzYTfKjyLQcJeSFREcs71MIehOxYtfuywFCptBb0oq7aFpx_Rfims8DjepJHJFMBq3lSFULNam5JGTrXM_BiDDcDGwXv4neUK9aoAKsvDEWToZLMYtjB7GdvgCEvPBD0u5wFmEmKOE6QMVG0Nz0CLSDdZiaI2zC1osp2sGGPU3I_9SI2gwaDI906ZHQ6mjCANUlRUkvJyy9ihV5ZW2-nctTQmJlYCSbrvfJm5Sz96ksoHFQ&h=4VpUU1FcdSc4qo9qL1_7uRFumHGPihcgNCZJ6jhzE1s - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 34336708-b083-426c-9ca2-d6df89bac79e - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Zz7EvPk4kq-F2yP3rpSJHbhTtwOwKJ1SBcRRF2yJbI-x_5wQxMoyXMQJnNJr6jzgY4UKY1D9NQYPJFKL7QCtRQn9pIOH1SJ6S95ABjvaIeh_u5ITZguUOG_yJ3LVGQwexmN9CYhr6VdtCxDdjzcEKOYMJU0TA9kYxA8LRGHTBw0K_8l1206vKmMCRyCHNNMM3DtCMYYl3jdIjFt52YXYBCmbz8UrHDn_xchBrwkJ_islQhL8iXpTB382fUozxY5QHH5jeuNB9EFiTZyVHP-i8QniToE9hjRWFEeAR9v9jgAMYz0IOgMmLLxmpc_uWfhlwpIb_YaKpS0qfZyKzau6QQ&h=S-bKB4ssf6pP4JL-jXOF_HiGgkx-s04F5caJgRyDDsE - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6\",\n - \ \"name\": \"71ec8645-77b5-4143-b61b-094669d665d6\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 12:37:24 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327116022984302&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y-jur_96SaJPzbyrhh7wlel8b8q8jATRz8Z3R5AZDTwUb5WI1o1Vywm9UbXYafAcRoblcq0wsVYcPeQtW1Eh-n3j72l496jqyGAUqH-RPbGJV4FpSuDo-u3rmiFYboLmkCY1urRCMy8e3UXWZw1ZZaK-5Qi4sMQzNI5RHYze10qFLii0CZUkM0ioUpf60MPmguRtOVL66RE18ReY3ADR3Xk5tra-LdYj-2s1e4TMHzbWFBXcFS-DSmGjI_pQeaKp_WLMXTeRQBOSn19xVywSv3DwwCgniW1lGiphT8LKePQ4afoGhoQYQfemDJyKbidDGeCCI1gOEfQahQnnJ1e8Gw&h=PezxGEyA8U2XnFWhIQo2miVlvD9SEQostkIDd_DqR2M - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:46:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327116023140559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CicN7MBVLUjc0pKEYllF6NuPRzyH6NvraKWlzeNvZafdWuchwrsIrF215ABzkVLKRAo1yzrCs1Gx7QuNncJp4pAX818BUu3mGukkK5mNY1yBsEDdyYuPsJa5ZXceLMtSoyIW6eDVniRE4yoZGoEEcMDGHfJi6sP_1LTKgC_MN7Hc7BepmV2OviaWLTdOsTI2SetLvNpo1XbOiZFOKClXHzR0-bxEdgKuLEUpLNqoGqgcnEcMXkAKOI2yoXMTVOzOXGF9wB4EJZrkoyWmKyr9RqKKWh0KtT7zAC7i9tMj_IyTSVWL3n8AX_qdqj3PnkYfDSTWRrzeoBk_NnybtWTCEg&h=EMFdZcsxB54mjGzhZj9asL78cnS8A27hvBAgOEQbWmE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a2983a59-bc47-401d-a76f-7228930d5d69 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327110448827813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CUgCCBl6rC4WZEnRqTGAyME7on4aKLtRfNbITi_j6dgRPk9jO_UXanai5cKBflW3D5ZIrHEqW7QlfeKsz3fizl9UyIfd7RbjyCQc3DdSlmZie1i3Hk29w3y3jZvcOUUfcSIM58qClOUPQncLetuDbjHw8P9iX9Zz0mhdl_GoqwmqjE6PsxV0wJJdvAA0pvHnXzkDKoojs1LHp9YBnXw9BPFlrrAfdKsSWZG58sSFyIDRe7XjXzzxdCWnhO8xpnSin8nBDT-F7uSvxIYShFThATDjJoVxWO3h9sMHpaGuNddZpe3xTQgSfDQixJzBz0QRzWnAz3xd4yGauIhvFk13Hw&h=2_rcig3Tc0s7hj21Ec0Y7MKpmYzXlyXOcP8cQf_P-D8 - response: - body: - string: '{ - - }' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327116026734552&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=AupNH3s8ox8uDiAmtygXgGqvNazkqKz3jIYC4haOGh8Xy63XjGjMmxBNo-xEO2Jf2mpFS3Sjz-ioGfrsZGajyiGoo3mTU99DT4FfmuygMdVWmaIhur22V0n82Mddo3I-Us97ySGaYi9is_uEZtqRPQa-bVpSW4s4O_Rte90gfVX-2aJjD0CDwzoUsyIKp7Y_HPPI4P8vjeIda72hIV6cxEZPy2DeaSM2xgmQuwhMH6-_-WMqvoMc7ZJGNF8T5RZuAq3_A423QtdIPTXrsxfWnlemyIBz8gYEJ0U3MVUnaX7SN43q-PkHQQCdDEbFE0iemIHZ9QGKjipa3B5CImIVKg&h=m8nsXvZqB45T3XULtQyIMm4w7gQCXfWTjJKB89etAvM - cache-control: - - no-cache - content-length: - - '3' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:46:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/71ec8645-77b5-4143-b61b-094669d665d6?api-version=2023-09-15-preview&t=638327116026734552&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=OVQLJnEbaQg3IpQOsz5KWZwvZEHGeqs6HQLt-a677DUkixsuPBi9BsrqWFzOw0z5WUDkqXc2kvso7gXLLNhlACd1GIvx8e3a7zNdxj3eYfM12_S6DW4wiHh9CBuir0gcOMrMfwAF4HnmOa4tF7VmAM4dV7hXJec5e3PT3AvM2PSHZD7igtVibrDyOL9zRYKLXHjVW0JrD_VEsPpXxhzxIyHzyHxHN00nxS1NweE4ePWtaPwXTNhybfTCMRgaIWbLLkkK3C-5KM8neu329adU0AkgUghCvZvY0WE0bg3-sVGEKnG2mRdv5hFk2xVTkLLEmBX-PkzRqQkQ44I7JFHuEw&h=4ha0juboiXpCG0_12d5pTDVaC57el9BqxGgWaJ2eJdg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 564d5b91-0f18-4f9f-ac23-f8965c23ef5c - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongocluster_firewall.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongocluster_firewall.yaml deleted file mode 100644 index e504652dbf2..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongocluster_firewall.yaml +++ /dev/null @@ -1,3817 +0,0 @@ -interactions: -- request: - body: '{"location": "eastus", "properties": {"createMode": "Default", "administratorLogin": - "cli000003", "administratorLoginPassword": "Cli1@asvrct", "serverVersion": "5.0", - "nodeGroupSpecs": [{"sku": "M40", "diskSizeGB": 128, "enableHa": true, "kind": - "Shard", "nodeCount": 2}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002\",\n - \ \"name\": \"cli000002\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"InProgress\",\n \"clusterStatus\": \"Provisioning\",\n \"administratorLogin\": - \"cli000003\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000002.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - cache-control: - - no-cache - content-length: - - '896' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:58:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=SyspjF8TditVI3FY8X7reCjO4Plp3pVrq0uQFImqqQwiNMsWnO2xDp6-yHVA2mEsenJ-vBdkYAhiiV2fM0MnFmjhefXGZrrkRpD3P4FHRjvQhOQ3xcbreO_tXp3f0W7mBofiPi0XZwLjVx8R78ctuZItTCnZ4n5ltk_9BrjpXJw8cMHI0_HAJ5c5gWl5NQ6YurXDXiEq3ouZ8M4PeI4_5FJRZAG-9tbtZaHAdilSl6pImaVPSYRzQ9cbCG_eKyCMsN7KuDqZhwo8MhTFWeZId2e94cuyrzibT6EzBQWOeRtdhYPYuHfug3d2MZZabEDvlh-Eq94Ovsr90_-n4ktqKA&h=kLson8OTOnqJlCgAmheU9lpE7ky1tlsJaFIGfgLvzMU - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 5f30e6de-aa80-48ef-9082-f15530f3cc58 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087297260850&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=KM_jgFe0UzvY7Q9F5t5uSj34BWG_7tYQWBl5gTtDaAReGFgtGVTKe0xS54icsAHZP3stYXJMPqEtzHCIeEItzSviH_9PEvVjMl91p0K9kGP8MsTdSwzd06yLFBgYEsQvq0a0wg-0TLSJW3lfxXGrW1sO7h8rFuel2T-DW_Xdpo2qUVzyrbckWfliAkQ-nQ7n5rnmnMQN_LJis4VXVJBePqNG3sst5CkMRid1yvIoTbQ2fyfmluJLHuPBGbeN3sEBW-XBcqLuod4V6YfoX2KertNNIQsfcMX4IZ12KMvTJ00xQLb-78cIqy_LSuNbE8n5lT5mASULMTp285gqyeDGCg&h=T13c5KPCaPoViqR3vhshPQY7-s4ivhL_MCrLMU5Tqvg - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:58:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087297417777&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VnVPjTRHnWZs6jpXpKkyAQHqAnxurHHUw-2EoqHi54lCHj_tl0YfFUA1IFwpmAD-4xEWioZDPK-T-1769x4rX0rdRBbFA01tPgup5KNh6GEvxW3pZPOMZsvm_DkJdursQBGG5wKdMQf-i-WxwwX4iOhoZ7ynuFjQyJTza_u4edKyvWQfWJsADimeUVxy0tMgwwH50vY5c60SHpgnvtVzp-RLuxrwA_4I8J01wepeUEUZNoVr6St8sOSFKmvXlGMHq9wfb2sCIDApRh0OSdSgyQYUl0Pec3hiaG-L_gdJ1Latdq4xYn3ZuJLkoPbAa8MN879ZW2mVwAxbYSTP7GQx9g&h=cReXhFlgosKAbwllDj2LitCkU8MkWms-IyjQnX7OFyI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 435b69b9-f135-4eb6-861e-97308c92623f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087606797562&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=j9kFoVMsMxSY7y47LhMu-zhMw8aHHBenZcOfsnrstlSRuID_JYu605ObIEkZm1Hz_wHy4ppcg_JGZwyP6qiL0J2wV5OWuSnfxlYZ_aF4-JuWXE8gNKAl7nEpSrQDrvka_ya45WQoc6Cj8p-vBsYyhV55udT9wBDeNxu0QCC8l5PI8onU91yFT-qsvAkx0xjbB71PoR4cx8FWOm7eFCk5kfK-YKU0Nl8FQlQ9Y2k9zhDKC35_SiUEwXFTfJwINUdFAfETipHntTz5nxA9DBiNo4CnX94fJvhCNaeLjq1UauR5XbmOXz2gpvIPRzhar11EtypUVAvmZqXy8Di5038jPQ&h=jFqqwPJhR1kzItffFx95OZF-cumF60HV2HoqpesFNBo - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:59:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087606797562&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NbGWXxlfj68ruarhT5ReYLFP0mSZVw54bLDIsgbUfiyU-KuJd8e7AgsbCti2T40i3wHqyvMRdpzwnVeHYYCRXg4qBpugLBmI6EjHEalF8v1V8qwMo8CCIPd4vvhWB1eUPNtZCCRk-18YIb0K2VGbgPiAZAjLgCmKzuYv7X2PYv-c82fDRJK9Z1fF1DLRoinVfxUoqhVVbbUyK1Tz1gPIkXanIuWqqb56aaJxRBGA9x_E3mrTll_3toTIY7DwX2YjhoinXIAHF5r0gV-XgCp-_qs_VG5xrkGbui81fWFLJ2cxhoWTwXPNjl--mMES3r413yIRKdYOgvtbrCVhtOaaAQ&h=p4FX836M0nOBgGtIW6WukaVjvyXNCnQu9aNydAOzDWQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 8d5eca88-d192-4614-8269-fa2c77bf6526 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087913990453&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=qS5ed9oRfiRJ3UmD02Lfzg7SuDfD--HOOYuNrNx30JwNU2XG9VMJC2FjDGi3bag5ncIw65h_JmZ87FJAQ8QSNdZerReF4WcBHSIXeU59zohiruCzP_K5ii5DV2mDYIf8-OYXpmQp5PP5c2PKPsbQmSkq7KyEZhqPxRnb3XUSJENBZINPkROxPzfaGThS7k7i8QnaRFqGee3qu2JPudShWyzRqjVe8O3ypoekxzTAC-E4_zidF71M_yy9FouAmjjHrhZMWqW3URT1RLW5KxR176OrTWY9ngwv75Gfjy-gpx8UdnvAsPEL8lwuxovld8I8rHBzhbhFlTMRtDqq7sRHvA&h=5b1bRFNdzkzYoU5tgAPWOp3y9nLjKeQCY2EGHe9x_q4 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:59:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087913990453&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RaIdTCVv-JRNXf8QBeX3XmIedYX8ZmG6gUrZ1PyBWbjz5k-BwXt-K63TBb_t5YnLIJZeCB0PqtZE0yvrgr-o74Mm1gTJ6e9Z5YwzpWCuMHVRdR15ABhPhR06z27UZU8EkAtrCpiq0IpuTGsd8TxVLowKHgtFi2Ijo7I0MTz_NKNv3kDpXquj5MW9SINuNgbFwgSra4pl4-VyzivxvjcDWQrsw8fL-cu6Sy_mgyxNogeKXlJznHoQ0hp0kJ-XLTjv1MUGCYbLSmDbqwO10nlOTZ8LCFrUnPQZfTkU6_cUIq2r6PZ5W4jHL53k2UJBDMRq45aIBvQKzJXQ5_4WDT4bKg&h=Qoiw9tG1G4KTLqj03-tN_49x1S6KQXxa1unP2eNgCtI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - ae857105-b488-4219-beac-990482f84393 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327088223527082&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kgXGpxSIKFICRAnT-r4Y1DyBd3Y6P4JH1u8A9-tN5MtBmcLmxoeRu-dOOBCA0TITldfZhnjNB6_fXjadn7XcNuPuRzu2s8Un-r2137_Pk953s1qdoU4pBHHaf_t8FdCEvtbsMtRNmBXW9LNE7ZK9OrJW-Pl1PVKUslTxgMuC2bX-2aiR7hgJ5Uoiej435EfPrTbkDAW8d5_E3HDVFRxpqtneeXfGZjl1oxQ3t2Jpu42_vyuurqhpWnzU8MVSbuy5YxsvD89AeaWttuyN1DxoDycvGH_Ury1jJJWqbuEo2DKBYHdu4MQsEL7edhhAYvGj34mNGqI96vbTNBLy_ML-_w&h=syOvQYXEnkaCYm82qN-dsblDa-g_IcQFUJaz488Y3F8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:00:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327088223683841&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=MguLnQB9wvxmTp3FO87G1F20x-u_4waOM_GqAbecvnXEoc05BC6gn11awJh7mjuFiZ6UZPQ77F9t4l3BVEeysCcevqlY0q0BmJj5lC7V0RXBlpJTouVEWfBhsG7Mu7J3Hv4OVCn45V0j_jRQklzI3u39LtYTAkCFcjO8MNZ8EgCJs9e8Q1LVgtRU0IBzLWV-4hCTA8l7oLUsHEMqmGY1AMROAVjrikYw-TyZdnf2usj8q0EAtSYA0cbbyR4ZTvYwOm7mcNypNZi-YvrWQLplCQyMSStwO-PTqclW7r0AC82sw4OcadtYUZ0tZFtO3kANtNP7f5FB8DNNyfnUXlB2ug&h=Ctqwo82Zqes9D32OwyBWwpbpD2YFkVPdqf3hY8N-6lc - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 4b6c1abb-e23c-4d40-b128-cf5e5e938b72 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327088532908059&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=QpOovdB8Bdf61s2ZxTJX7OPAtC6-aSnTQwuYxspIVdBAXs2GHcs1l6j_PQ7cXjiO0BIiLlRLYAhJTzsYJt2b_uPJP-9hysoPSIn256httuU9L_022swa44z233BOak_DvGES5lmRpkcdKQ4rFyjoYL2SE-oOa5IH7v68jdXtDp7PcN7vVsdPpTI7hrx3m6hf9D6Bx0bHbx_RboieUSHkRRmtn8W0dRFMlwQbeauN2lOS3_O24qGtVZF0ek1k3ZDo9afboCnczMv9QZWSigIGEqaj1gzgG1eZ8qxq4t9jfK8rp0VIcA-zIVK_UbDvT_ThJnT-2-Q8097SZ1sprlH4ow&h=2kfq_Q5HD-t51L05wEHwHOCi5Dr40KhbVcY0J58dypA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:00:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327088533064611&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iweSX3i7mt_k4ITYDeiL3yHOFsV63JKmo_FnQCxJ_ZE9UV4BpK0cuzvJojN1A-2OqqDPXWu-_e_kcU_BV8rcJuMlqcF5l0QblyQ8KNv0vvbqREW_wVN5UEawE67MibcQ9PkQTkxo6bLFBtepz8vZbRAFG_FJ-o6JoLc8rGs3XiSvIMwELANFdYReuChLeEe2mPuj1HyYTDidnuBbd6AU5R7E3SKdZuvFt-txFfwKb3GjOntu6Niu4R5JFYM0ZLdfJ9WbSjFYCNkweq7Hrq6vb-Ztsy1RymQF-M_QEHH_v_SxUPUc45PEajt6Le63xNBub76LpL5GN70j2QQGMaP8GQ&h=OcO0mzmVNs1-MrW58RGEe07mW0oEFDoiTHo07nnppJU - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - b37be355-edc1-43c7-a4bf-e17e88000ba8 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327088842288434&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=rWXksNKxmp-EZSjSW3kmTQtACwhNuZFuJIbYa-PgQu2LlBUValLDi50eIrKrlfxw14VUK2YzVNB88URd1GL2fzvF_-v1dNx59UY7Qq4tSzcP3-WUOo_SztucRUQB8QW8IRxqJADkBKaNyRUkBMiP2mcg3wCyzVS2b5sojasO_AUUczKLIGcn6hQQqxgrzWbQS05lqyjJ-J_hHygcnPhZpQetIvUpYpBEYxAWBUHHwxGE3sGwxNsLUJrshlNcw8guHGs0P1ki2Gtv0zExNPrws-alX4YcGpaKn-CRPDK44ANLD3i6yrRV3KxjHZf2fw5og3QQPKC4fVV9H1ZsR_yUhQ&h=q1TKyVSP5beQhOUfNKE4fZzfudKL_b4RtednG9HA3oA - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:01:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327088842288434&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qv_cWTxm1EkozENMNP8WVe4Zs5XIo-nh_Jx9S4Qv__i_1FGDH6BJueKpjBBMAN8fYrBSv1_Jqev_yjzrHzY0u79eWTg47Doca9jbI7ehbqdi_q37d6Fz4sB_0J14noQVehMSNNtjvU-E3QAcI8ouUKdrxgJ9xJJSX3u_oFLHdFIxm31ctm5Zshok3tE8-g_0fK8_aQFeaQPnwWBPQwsOd79InBUv0Q4Sw_jGdDkgF69I3KQ763UEqxst7_QEFFTpgEWdkwK5vlKHSji7crUJjp9p9SnFPtch9McPVMik_IvcsXTWToP7l7ewB_myvLD8vRFEJ1SeElvR3Ox-aGb1uQ&h=o-CnzPISQMg-1gZlLXDdL0ex1GC4nT_DfuYQG6mHlPE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 2c5a9d51-40a0-495f-9920-9993ffa166b2 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327089149480469&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GEUkj2vK3vU_HLRPndjwr0gnIGF1PermBE3hX3CdnBEoLttUv4tQdy7FHVtyw9Nz1qfTfG7Zkd2IRDZj8Ur-nNOtSAPX_K8NWzcxoXj_Hyv2-Brgmxva_-PpapiuAsTwktFaiKQ3zCH0Bq5nIlQtjDYWyr-EXxYu-EvX2-WPaTvVy_1I4cjMYoAxTAobbwSbkFbHNV21NCJVg_SeaJOAjrDNQTASm7RRD3Akx_EYKIyU8H8b1ZsfThfNNtdNPvzl7hUGFFVXPMRVjgIvSkFYWEE2GjHAjvSI1FZ3r16S6i2SrhfdT4THkpROLc4_XTLpvHMo6YpIuMDts40Jyz3cJA&h=09VSkXSMBLeIRwstbuARTNA4XZcbdQHZijxQhHpHX3Y - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:01:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327089149480469&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=U9gUVlHGiPpiPPyBGgoaUfIdcuDwfKFYd1EG8oZtgx2L7MUgF4ZmUKtTikgmMH5EcUjjIWc_rsjhdLPDIikISqBIPymfdwm_G8HlxDdJPGAoKs6nX2Ou4Zk-tYjA56WgfB80_JVWSlmnY3iOeQHKVvhp7_hJ7ozOvEN1he8GsI4v5za0sOYrX_6o7A2bj8pDhHd77LRUWLM7n4aGEeQ9vcWZ6kZbnoMgkTRxJeaeRfvazv0lmDoXPXWB3Dr2cG0vBCsfAdoxiD6LubPea3_KPnEWofhdfII7H6INIscIqLPP5uGOW_eDwXGdrC9ERx0bgmqw_6SA--Yw-egfZqDCJQ&h=zqrtqz-v23JMC01gqa3yEThqrz6hlyT5uNSXtNcS6Xs - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 496d4b29-77b4-4a8a-96ec-82db26b25da3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327089459184020&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hav5LkU2c4eiXLvB71vpnfqymCX_wDF7uwAMu7jZp4vEhaL4v9l1A5hPpaPRDJVLoSFXwRk5SNb6o2KYXze6ahnz6wIaljZTpBJZiI38aSa8St7ihMAp3JcyJ5OWIleQgS-pkYKTgcpIAWKvBEIDG0R0-yBQ-_qIOukipH78ieN5hV_NFQgkmEqMymh2sO5sirsV4FSUtNgwOUcc2nXcFJwMv_4TEjmf4LFQRo4IEshwQrQVVk_9QCsZJCy3K7TCYawwhBMzsZ8nOABc_KW-PATCaMzQJsvSWclIFN8XpjgfPB9PWlzJqNxzggJuZGHfHyu8n4YQDBtJvagUgAIIow&h=_acmadjCTlpR8zB261UyujEpznj9BD02JJFTtCEIMh4 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:02:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327089459184020&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=YW2ejlOuV58UbrrfM2gy2MhnqOb5vB2Lx0Gl8LuoLXAgFNSA6enUxo3IwfCVp4AKtUE16FBJZ8UVGFCgEfB0GPsueC9g14TLLTnLQePLZnrr7e8-0Fb5he_0w5xlSP4puhFZXPmBUdgyV4AMfb_FCZaVSaxc51KZVQ-AoNyDDh7hOadtnoWdHdE3H3q-napx9yj9DQVQZJOvpDh2fSAKrgY4OUuMCnIyJIzSzf-gRuft7-RZHIBhWySldDAH73-l894SAFPuKDJC-DhoEdbZRsOdpGURfW6P3a5-1ZEacMBrkuJccfSnrcBXcAuPNYz7aReRtGW52GspOzlrVmRTMQ&h=hzUVw7PNe5QgzA0uZbZ-rQSjxsmSYMv8XniVJ5mGdZg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 80b2404f-5411-419c-bcb6-6376a45d1ed9 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327089768563701&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mXqCx5jW0GDXb2CUcJgRMzeYtpjj3a5F6aSCktGOs-9LDVf2Ie8iQ2k-HQBuPnGMIRkE653AqaZjcMCBcfUkmnXie5UCwERrOcdSFD8N7Fjij3fBI8iUleYY193QBu0Hb11f1m3X7dFa8JsPxfZGBFoBLqBW1mcXh--qgb8OHzyedPk2TsMm2iQZrjhUsVGlkowjtRbr4DddoS83Xsco8DUhNO686ETSOw6-Oa1j3B21MSWnN_mCcFRleRLFqaerfqqPyqvCi2sISziRahmILZsj15E74kI46e2vXFM_KNMkbX4Y9erM-hKQWVVC_FS2PXw3YGobCZpmY3rh881NFw&h=zQZjxXXFP2G8GcVy9FBMzGu5gYl2umeL5DOGVoztdcU - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:02:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327089768563701&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gEZr7-KjAbV0MkNjAiTzcHFQqnc0wwvaJPB9UeK09390LOHjaQBRBQ4Szt2jHmZU21mE4opo2-ECyNgqQkbwgOFnoqY7FrKpvVb14xebdWEEixVGYSVOAs-q6AeZ9npni16T-PZ4Cx1MFxbDsNMa4PjM6r9Os3vV9zn9SoR_w9o-U4MvZYMthck4hzYnFSIC4qn0Udd0vkKqbBhymSoaZDj9zt6Y7cfBCVzaaLWXSusnciK2Ju7R68L64Rwr5Zc9qwzKsGFU-2pobFudOpwDg9KGi2mERaVYiMhRUfxzm4wgpdChbK8c5mKpA8T_zF8NSOhhczBF2U2kxreQKPQfWA&h=X-pbO4cMGNB2JX260MSNkF__i2J8ViQkqxC-LdNY4C8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 9f89a409-31a2-42d1-b41a-cb9315c92039 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327090077787615&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VoghSiOfzr2P8d2sjpLTFPcwRdh7DhXLt2dPDXfpIR0ktZDWhQNADm8eHrAw5BRt0HmzcM9MI_1mpzJ5gb8KKFifzn35r-nlfghmbukJnxXWZMeHOlO71fCkNCOtZxwvMOm8hBG_EZ8y_2CB9GxyWpPheQoc60u2isFU7vlhnYjoHIkQjCo6NhtoN4J6PxSSdgSLP_8WDMElfPtTD4vHWuAlwdXyDCTFCmvHGokdvra8so87e799yF5hVTzBSYkrR8H62hSLyjkbCTZud6MFXJI2oP_XL8DQ6KXtYMFXWEdIOIRs61QOrbJutnK8ZwpBbuaKa9RvdOwzugh09PCY-g&h=31NwZDQ4NoB8WWrVU8y4CjXsmO8O0E--gPSiNit1yZE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:03:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327090077787615&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=EMs51Nm-XtKVtV0vf6W46uAUUUqHeMK1cX0btXqFJmBP82vgE5aF30l_KtDnORYuUUsmIqo5kQKrruZ10unU-2mnaLLGtpBvVbCPiTXv3ANFFkXF-zJ5__5MTz0wLuyJdVXGPu_5fsiheoQG9waLyUJKJj5F04hQYVcVbOhKSL3iiHvPsmOduSR0WtX47yi5IiODe2P9cc9qZOIzW7ra8HkEE9_Tog57gKupLGbtDIQRtenhk17Hi1GLJXmL61zHRH6RkDE9gW-COO39wC2DFNDIzKN1tixAQVzxtBBMYgdWbaMRrLdG41-4obcOJeutO_NLjA6SE7Cn-ZOkJejIgQ&h=vC4CGqUneMMmyx6z-XLVyiWAucchdLiO806xwZeCCTE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 4bbd412c-3ff8-4833-b455-e1252a5b7bf4 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327090385142649&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VemR4k2qP41I1D24rCw5Qalyd1LEbINk_tewVRw8GkW2PHXM55slrVOQTsl61g3_Ss2lOB3MyMClUbVHOk69TQu5vMRT2R99Uv9isVcX-AwbDrVshvuvOUqGkbEFmN-c2qj9gR58Si8tURut_iec83MaxK5yB-ih1Ii9pBP2aR28qL9tnWgcEza2UIJl48g2AnvyHNgRl1K36gE5HffXAs0PeHM04ZpkLuHUddVW8S0attZodohr-tvYBaCEhaGNjKdpg5zwz6_6V2_7mTazSmePBHbGaCuCO_AcomcPvCcgu7Z5yjHmZcNYX5tc8MqiJmANPKquHEQRU0svvTLsRQ&h=JpDRT8Xt5DexptJIVi2ncadM_Dpjiu_BnPuMlGnADfY - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:03:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327090385142649&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GN8fMHfMljv99tg1qUcZW4M3i-J5ayH2ubl33RLSFuEGaAkACl5vXPsY_MU3aExuTcUYky3lraAKipWz1bCZOwmVjp2SHiPRkooOOWUi1ISUzfbxBucL8NsGepsTqRct0k0tsMYnPpVwjF12uJCoE6k3f_VVcmUCQrliyVbi8GeKz05e0q4YhWphlQgGoaa8izqi8yD6AcHlaFi-UkGNtqb360_BcHaM86p7tu5qCufzKPqrw4XpZHjPYtud6nbkyDfJCGZT5ysj3iNQ23efmo5XfIRq4xus7lNcpcHC-Akbd8QiIl9MUd4EQterEwsgeDMk4OknqEDZpaz9Z6WEJA&h=zeMcbfNSR5o7aeACTgco89NFTvPC5AvFHPBpbfwzneg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - c15d60f8-8502-4251-9640-06ac13d0a9ae - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327090692335297&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gAhFrWJLv5VYBSVBNEZh6_IYKtjaXXdwvqWapcnFFe76YWoT6QMt1MbrWgnruJEPASPMunJGFa9DtGL34oclpHfTeolQqZx0YvldJ49rJmtW-AeI14dAzebXogyxLAvsGOq7qCng_CFJ0hyEr_3y4vQfakRBbXF_E3ylk1p47u6zWdMSRue9f07CEWfb0cZtkSOs_PvlY8WOkcvdf4SFoHQ2kai1t0WMCHQHcpOd6QyDfFFchE63vDOc9_hplCZsOpnf7ubesSKyLToCTP2nrtNFTLuCSTFK-5yIRBbl0YFCNa_LlzrZFhx6iJ7wZsT5gNCFgxGb9588N2J3hnAx9Q&h=IaYKt3qVq5ragxk6I29Hao4kP3ub5YR5WbGvUO3QoEs - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:04:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327090692335297&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=D57ls9LyItbtq8gsUP9mZnP2BRqKWlNrztE0KNAx0tF92BbQL93chW3nGxKsXawLqFnIhUtsKFtuttip99eVBLr0eBPB0ANO8zN_ybBMhEq6AE3L_rUwlWFgp4sll9Sh4vPt9_iDDYydh91y-Lwc19Dgj0lLxQDHibTgv2uUywgxvTwQwnr3KNLyZm98YvA-BJJJLjZqB338Ts26hdMi7pMnisuW_3MmkMkuGPcYeBGr93jtmQjYKV6Vr98UcNpa1DLlgzUryLLCxuGXLc5LetvMTRbGzszV6Aa9pgS11oaBuGvlgR4aedX__Y1wSgqQ82XBZD3ucijOyP-lhLNNgQ&h=SDJ_gblaPYuLWDmywNqm2PQ5kUDhh2WWOVmLdIXcAt8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 17eeffca-7d01-4fe5-a0d3-dc98dc497650 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327090999840430&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=O-y8N6Jfqy2lwfghbcYIw_PdPfIRFyYGTKK3_MZid5ozVUXw-brQaej9QG2wNe5EOLryAULLsU2cnaDmE9puWUFtCl91Q6K96NKx7GiOEihMmX3geTynmcq_ee419Bal-seRDUcoAFBYemiT_lI1QZ7pZ4C-6u8EeHNHWntqiMxuvs915tU5lOyU6Lpcy6pEKezu7n13-tLBRh-58_ks1p3mJIAl1UUuvJbNSgbatFDh3hvsI4-APO3xsoLEjmCe7UKRkuRbyBxx49vrWcHMlD0PKVW7ysgL3f2YtKEksn4zJsPe4fZYJsnFNvbmSXridklzU8cBnwxffaq817WlZg&h=AT_N9qJ_-N32yHHiMBizMSW0K9poCqSbD9A_N3mtU6g - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:04:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327090999840430&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=T_v-14pySCntqsFAOOjiuxNFNVajoTwTbvfj4N4wWQZUACt5mwdu_SSURTK0CPHnj12q7YudEIHh6hdSiJP0dNwbQqTn9BnwH92j7FtVRBLOGR2o_zJfaVsRs2YRkdpGqVBz7ReRgv9CArrJotXrAt66PAHsZCyctBLObeSN7rslGZ8a3Y6RMOAb4qYACo6Sk0kn8Qmy3weF56SvMzh7HiXhX-XS18cVtC6qBUukCFtnSigh8085eQXkqA0lSR3aIgU-NSi-mcALojestiOfvilyVF9J9UlHYeQSii01zsSdLTGA37FEPo9PMIyd5lhn8Yk9auXpmu6qqFB997BTfA&h=0_zfl8BqBwhFZO64BSTa0KLTRZt8G6g-jylHLZWDV9M - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - bbdf21a9-34ed-4175-9008-194d51c269e1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327091309220585&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=aXYYV5QDQ29Nr08hbEV_cSOjM5xjgeo8_-TqvBP6WgOa2hwYRLxB0zW7DNwg2aQQkvfHOWmsxkOORYQG1hMU-Ny67LH4srjUd0J1Knlb0yy698Exe93vHJMNOpN0aAJpiRxCJd-06pvRZsNKoYkkikgwgjiIik3t3lng0FJ2bB-hUkIDf9v97dIv2Cv-h_DkwPg0YRW8-tQ1x64bBScM28xP1Pa6rPm_z3QjqtKSyE-7svbor__lez51yM7kbiUXdB1RonRKqAw28seS7BZ2lgtMmx-JrR6lvMhm8N4P3B5E6HIm9iJD2Q0Kw2AoITi136k-3QVs1Zl4iPl8O-mzVQ&h=N65gbsotH4MGDOzGShJRMzPUfKyXkcQzhB_mNACvRq0 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:05:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327091309377462&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=U4xHAbUA6TVYwsFo2qYrMKSn_yZ_STLBeMo2re1WQPcaO0SODR8bH8TGvoaoyEaejVq39zmfW7whIXmOJdk6Myc1iKIuaHdNbh_90gISRISUii8C0optXENL0CJ3snKszREmrwuXA59UYWaEySk9pnvBBg74QQE4Hgp5u9Fu1yhtuI5oKFLrEBKMK2fmkpBeIJ_HeviyZMQWaT5FkBQvEa93TAtdxpf0MirQ8QLS6GBOzljJcwVNduNMbDw-qFiCPoYHpMEu31B_fwnn2aMPKI3_MC1v_tSkWpCwo3qCCoCIP58OrhwNPKV_2gys2yUKsf6vwkoRoby1CdbdOJYR9Q&h=kxQgdaW0bQxJ4lKyDbepQAX_PqVKphzkUeG67pT7N9w - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 0cd90d9f-8ceb-47a3-91a0-bf66a7e7d0e4 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327091618639124&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=BIFAZ8RKjyJB9CPy9IiE9rFv8jLY0Du1H7hA0Thwag_s-Za6D4S6x6PwnTbygrOEdrE12sieCE2PuNooluvceMMQlapQKciYylqvTU-VhgFC3wmTFIU9sk7RB_Bt2wu1ydkvy0cHxn7oIfOm4nKKIA8Wme6niWrPrNIJhKsztrRfDDJCOeEgdeGzCNuF0K8mTkDhQMD1NWIMGRG6YD3_f9jcmD8sdcI06CMM8b2-X3xDJ0m69MxmR7MUprh-6ksCkepcC_zz0LbdDAM4OOh0P2HCxSvEVN45eF_MQFUwxlFyXla301o-YKYY-Dm99b3Y7SzUkdwMZkLcIaxk3r-VsA&h=EYea4QDvDybbNiOk9vp5Q9XBbWAOU3R_L0hb892XoIs - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:06:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327091618795438&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=dvjeImgmuxmHfBdLlm8Oyelj3VlmwawW5AXR3gexLw3RRO5wLFy3m9_HTvbNAhTpCqoBCIuaxJEv3dfcgX1XtPxmBJSoUv713IL0snqtMyi_YCJctHOX_hbl1RAxeV1NghGvgeS36_C2MCaBuTVOrvyovRLRouSjXQdKRduGZpBhW6qdh6OPHIUJ1pa8mawLNH7rTaYw8JpvPfFdiu2dQlpe13FjsxHV44pL6x3fjrXyqHP5bibTaHN3jxX8WuQ4Z0ga0pZGAvuVOkS6RNLuNMEa2XQfnHi9GM71wlkPO5zk-Pei60j3Jlqm06wijmfm6veYRGs-nnS3UnwyMtKEOQ&h=munF7oQVJOKXKHVx-xxpvxHd-o9bDCTmLLUNJ3FEC9I - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 22c537f6-214e-4141-b8cc-0b009bd196c5 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327087294135789&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=bVYDBWQv7eGY5eTdE9tfdZIncWjTZPJhS6B2mBfAA1a7e0jiR8r_yWbIz0JFNMWKVfSFtiO-GJUgGDNft8sYSg4F5IoEjy_VtQVxVf49hhImtUEkSf3XLMOrXagNX-4Bl2scmjNp9v7R_NCumXymkGyJaebNbMYBQY7qv0b1q_c_so5HOImXuCFLPVKw23_94YelIj7xkU2GtqAty4b8tgySVuIE6uirl5udytKIaeQJOPOx0yCwK0bBj_SPCnfylnIyRm1m_lyzdlOtg1h5C3EjFez_XnBWTN9S2WjvgkfNBhMq14ZOrT9VzI732PEWQUtodZvxShj3D7qKb4eCcg&h=Pbq0Qn73auoEKkrgAete2Z8xEld2jAuxkvJ6usJzbu4 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n - \ \"name\": \"8eb27b92-9bf1-415a-bc43-0337ab1030c2\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 11:58:48 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327091927863494&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=re_p1_i6CrGplOCffqcQJcyzsQWrY2Pk_-0A15KOFk85SGoHLktn6P3lubyBTljPFYm6nykfBrOaqQabsQJS2Ga5PH1Y_EFJkiO6rmbT68kYGdyzb96vLLqvCfCCjUd8wBbiyPy9pqCT0dvGq2cY28R4nZv0s09p2pn4WcYmknN3miXLz4VAjbSxRjD98DktDe71nvB7ZtMf28l3-986VlTqoP45sV9pXA01l6d-Ty-b0AOsUZUhN5S9t9Ou9V_UoHRSj7w-ahM9w9U6ZcGPlyrcinQbJw_TEkmmg0OketNUjT6XRfEZx3FqP0NHGHQeumYf797aysSGOXsA2jBu0g&h=eOaUkP8CGGhwyfS7HpHYxXpJ8bET1e-_IZKAPnipmc8 - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:06:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/8eb27b92-9bf1-415a-bc43-0337ab1030c2?api-version=2023-09-15-preview&t=638327091928019261&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LkmarQSHBQLQKkaHa47o4k5ciu3VNSAMkDH-RfDltMMN5Z8kGY5bY14Q_czRm_-gKqJrGAdS3U1JmYFojMNPYx-ddq_UbOfPRAU856WNIKwiELScpCaf9oNh351P3xkMFCk0y64suBf2nTh2_1SwEqW8BHi6hhSt3r1xF7dnuoRywvir_7a05dSYtRAuMN6nT-VarsGEYuaxOT2XDql_j1lpz80IXQxYAHilMOpjyYpsy0GGWje4oy0tUPSvCNDbrpYp2pNwa1gVtzvWgmG_2oIcleSyMZW7CM8jgk2RifyvSBGuEpSLHiM4WhlVPvF_AUjaoo3WoVwWazclOTdDOg&h=oCMaQ230YAzhJ8ybgrJVWk_iXMf6Syipvx-yDqRKtek - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - cb01bada-c82b-4683-b480-85871eca08a5 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --location --administrator-login --administrator-login-password - --server-version --shard-node-tier --shard-node-ha --shard-node-disk-size-gb - --shard-node-count - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002\",\n - \ \"name\": \"cli000002\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"clusterStatus\": \"Ready\",\n \"administratorLogin\": - \"cli000003\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000002.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '888' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:06:33 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f5fbfbb6-da38-48f2-a57d-27eb27d712ff - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster show - Connection: - - keep-alive - ParameterSetName: - - -c -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002\",\n - \ \"name\": \"cli000002\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"clusterStatus\": \"Ready\",\n \"administratorLogin\": - \"cli000003\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000002.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '888' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:06:34 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - b1a062ca-e150-479d-ae7c-1027fb25c058 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: '{"properties": {"startIpAddress": "10.0.0.120", "endIpAddress": "10.0.0.130"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule create - Connection: - - keep-alive - Content-Length: - - '78' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters/firewallRules\",\n - \ \"properties\": {\n \"provisioningState\": \"InProgress\",\n \"startIpAddress\": - \"10.0.0.120\",\n \"endIpAddress\": \"10.0.0.130\"\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/e4889b95-f690-49c7-83a2-90c767b6cc84?api-version=2023-09-15-preview&t=638327091969934592&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=IJ1lKH2Yns-id26snf23TsqBTZQij8f3IvhqaKILjbOmHl_WEhvrgeKytonY3lYG2HXSiOqEaTql4EY4XxVuOJig-jqNRKTtSjGSY-OwvW7gBw45wEvvW2Kt57MjAK0lOuejkT4lviW7jm26IyFARm1yLh9Apgnt1OOjhdpU2tmBWXhN4RgaXGn-nMZO_r_p1fiuycQfYva4pFhFRrbu18j2kwG_mO761DEDwHHIeq1Lp5kyFAl6m7lTaw6LHrypuzCFg_B0DZgwmDYfr5PATa3lPwqeuEsiu6DWV6elft_Uu1cRz2PCtLxOl-TzG6L_bz5rtksjrrrmkFpoyXiPgQ&h=Sm6GVIqzQ6blseWE4oslHfsxhByzca13qFGc-qB1q54 - cache-control: - - no-cache - content-length: - - '416' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:06:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/e4889b95-f690-49c7-83a2-90c767b6cc84?api-version=2023-09-15-preview&t=638327091970090223&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=A9JFWX0IuYZwTXv1q65hxg5maREW27BB1ZblGEUcXZoXJz5W7lIS2lXgRbVDLZ56qJE5n61R2uveuEPXcWdhKtvtihOtXX3YB-kNwWqqeSfYWlNYo_eeDjQb11nSiqgPwOIoSMg-tZDiP87DZaSdDH5kEV9L3YjBYyFxTeqRKhpbaFwiKRVVKfk95XPyLNGrJX6vEQ0IB0vsqJj8Obpse7iM2NPoLhh4N6dkSB4JEDasA9E5Wv_gSzwPOxH4q0Lhgtq5jeSpD8_pB4l8W9tc4BOnxf9j8EKbwDkjdfaZQtPSkx2yHIlgzY8WKT91AMU2iCy5cPUGSmOv4ohqc8ymBQ&h=Gah-3azw3hOhMsZm45527AwtrF_pb3sqrmiOccqVlEE - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 04e962b7-4fdf-4ee8-a5b1-4a6cf6faca24 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/e4889b95-f690-49c7-83a2-90c767b6cc84?api-version=2023-09-15-preview&t=638327091969934592&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=IJ1lKH2Yns-id26snf23TsqBTZQij8f3IvhqaKILjbOmHl_WEhvrgeKytonY3lYG2HXSiOqEaTql4EY4XxVuOJig-jqNRKTtSjGSY-OwvW7gBw45wEvvW2Kt57MjAK0lOuejkT4lviW7jm26IyFARm1yLh9Apgnt1OOjhdpU2tmBWXhN4RgaXGn-nMZO_r_p1fiuycQfYva4pFhFRrbu18j2kwG_mO761DEDwHHIeq1Lp5kyFAl6m7lTaw6LHrypuzCFg_B0DZgwmDYfr5PATa3lPwqeuEsiu6DWV6elft_Uu1cRz2PCtLxOl-TzG6L_bz5rtksjrrrmkFpoyXiPgQ&h=Sm6GVIqzQ6blseWE4oslHfsxhByzca13qFGc-qB1q54 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/e4889b95-f690-49c7-83a2-90c767b6cc84\",\n - \ \"name\": \"e4889b95-f690-49c7-83a2-90c767b6cc84\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:06:36 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/e4889b95-f690-49c7-83a2-90c767b6cc84?api-version=2023-09-15-preview&t=638327091973372238&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=LhqhXYdaqWSHilPyOdMH-tslbk_qF8Xkr8pnpROwgah4fbZFd3o9uGt3be5GqKXiNE9pah7KinLOszhHSILVUxUcAjg2hwp2u8_pyDiKo4kx2DRuOy6PdoSDh2gSj_oJiYwnjWvNic4M_pONpof4r_fQ8zxuf7e2IRGUFFEK1klu7DHm56cd7ewmpepyxjdSZF_mlpO4lwWYI3vFqBCiW42URdvnunhXnnZnxu-AmuNz6sY5Ukt9Zbg1yaqUb0QEurJ_-i91N7WMlhnaz3-y1_OmHsvFsn7y-nJSlhHe_P9RkUKHODDWbAt60dQ-C10qdJK_1CSo5xmd0BqEtYpGOA&h=Zln_YtkHhjMyoUSmnMIMdvsJ46fL9YsCa0G7WZNDEYg - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:06:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/e4889b95-f690-49c7-83a2-90c767b6cc84?api-version=2023-09-15-preview&t=638327091973840957&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AnCrPgeEA_cGmQnzzDgcVgqlmPEKVtD-jYx061C4hdXW7fEsDQ7UUdmBXxRF-xBKmambZjBtFNFDBsFUasvptiOqjD-V4UNhDbYYm-aRKBGnk7lmcqDNUdk9kWSHCUyR0Jgf_S0rE1D5a_wc8RIh_NnAIEc3GHk3IRb89Uq6XUWt3JLAydXtxu4BeVqE7WIP2oeaLpycbGzfFmCXxWQDtgo-HXip257E85aN_CmPsIFjFlk4FfYxIPK_hAav4TNcQHYvOYcnaMN4_2FuPkk2yFUjxqrQjXHUxqtwuOr0xzOpkCZL77065u4om1r0Axr5igHhZynYxrXxJuqyewKOlg&h=AxJHSxu9CRHAE42vz-XkZakakWWsIjYFzFnzS0ErRuw - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 648a097b-83cd-41a4-9e03-b332bfaca481 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/e4889b95-f690-49c7-83a2-90c767b6cc84?api-version=2023-09-15-preview&t=638327091969934592&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=IJ1lKH2Yns-id26snf23TsqBTZQij8f3IvhqaKILjbOmHl_WEhvrgeKytonY3lYG2HXSiOqEaTql4EY4XxVuOJig-jqNRKTtSjGSY-OwvW7gBw45wEvvW2Kt57MjAK0lOuejkT4lviW7jm26IyFARm1yLh9Apgnt1OOjhdpU2tmBWXhN4RgaXGn-nMZO_r_p1fiuycQfYva4pFhFRrbu18j2kwG_mO761DEDwHHIeq1Lp5kyFAl6m7lTaw6LHrypuzCFg_B0DZgwmDYfr5PATa3lPwqeuEsiu6DWV6elft_Uu1cRz2PCtLxOl-TzG6L_bz5rtksjrrrmkFpoyXiPgQ&h=Sm6GVIqzQ6blseWE4oslHfsxhByzca13qFGc-qB1q54 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/e4889b95-f690-49c7-83a2-90c767b6cc84\",\n - \ \"name\": \"e4889b95-f690-49c7-83a2-90c767b6cc84\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 12:06:36 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/e4889b95-f690-49c7-83a2-90c767b6cc84?api-version=2023-09-15-preview&t=638327092281033418&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ZWS2xGX8ZH71cL25pr-_FaH_P2e8PWrT53X0t3Okt1fHB71u3T7QdveJDWHvcxa9MH3AGqCbgkyNNC74KzDZMIoLQKhefqcZBlaqkH977nQGFML2xmsxr64x6t5BpM0fEU70u-MqAh3jIYfx3Gj2f5I4W0KTeaDqg451A1XFx0wHyduXQsIpyZU07RagmTB3whjYwmmNqDaXvAtJYq4P6PDzcFH7fltZEmqfARpGCas8u3CncvxK2HX5Ec93yUcznwS0d1-cB5FsQmLz1k5bo-DjRXDSMGGwEidSlHXsuHCS_o9NPPibMugYyWViicrXE3I0kGcwEhyAd4J5uGtD7w&h=TBmkSepP6p6J-oPVezyfkMFgXj-v_-ZOKPSP3XE1_-g - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/e4889b95-f690-49c7-83a2-90c767b6cc84?api-version=2023-09-15-preview&t=638327092281188933&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=QN-o5Vlb2P8n-X7xOZ_5RZRbonLEYGvqDSnSrNvOJebR01fOJzINyWAUn8rshPifQB8yT6GAsxJuFEr-NyhoTAuIRll1BmjcJhObDPVPGRE1l-QTeRIUqf9T0LVKX9hYPzKGegz2FxUcpnmFZTiBQ9M8Is4U84iCAfL53GUSwE8TpBkCLqZT18TCPXdF3oDeL551TSIqiFKimNNgE9ikLeAAikQ69q10wIlwpFiI--j74CGP8mjloOXE6aXuuL-t-L6Bd2tEDkhsj1XOfj26SCu__CJI_Hxq7x8TltBBquKqyuDET0T6Eu8-02LOvSF5zhXvEXUZjkK3sfZf3TfGjQ&h=42mRYZiNJDd9oPY0R8nicvzhpq6jaCbB2Ha0PWYGfFs - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 0ff43666-baf9-4203-9339-a2536ad8a3f1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters/firewallRules\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"startIpAddress\": - \"10.0.0.120\",\n \"endIpAddress\": \"10.0.0.130\"\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '415' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:08 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 92a99067-1d4c-4b1e-adb2-39914db9bbb3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters/firewallRules\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"startIpAddress\": - \"10.0.0.120\",\n \"endIpAddress\": \"10.0.0.130\"\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '415' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:09 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - d990141d-c6b9-4477-a6df-f904b55e9b89 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: '{"properties": {"startIpAddress": "10.0.0.120", "endIpAddress": "10.0.0.140"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule update - Connection: - - keep-alive - Content-Length: - - '78' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters/firewallRules\",\n - \ \"properties\": {\n \"provisioningState\": \"InProgress\",\n \"startIpAddress\": - \"10.0.0.120\",\n \"endIpAddress\": \"10.0.0.140\"\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/b40a1129-553d-4b07-aa55-cb54588b0c53?api-version=2023-09-15-preview&t=638327092312244901&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=To0qbMuI2xTOU0QyQ7OR_2WbMFIfk6odD0D1WSPw1GMxN-ebnecl334VKgMHNc3LXCZlj9VqD8GwxGPHxgqugM3ETlkB3VGGG_F4jGtZd1Acqf02DjZc08gvDtnvuU25b1QlH-BtA0aHCXdNiCchqFZKUhZdutGc8urPZFNydtcbbALto-e52-gJ2eOvxdrPI1XRgQHIYX3A5SUuq-8JcURtmi6CT4ViHVxOHDayYp9kAh6LvyrJXWrPJ8g2HOSXvxg0AaDdsSRkwiXW01ryBnYPzd-tT4eAgKabAz64p3-k5edO6eha2DVVXnxfNir8lOtYQnbPtVmAKUp-u7N14Q&h=nIT-8jjQ-QpKIvS254eD7ueS8YqvA0ARq_d_SsJRsAA - cache-control: - - no-cache - content-length: - - '416' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/b40a1129-553d-4b07-aa55-cb54588b0c53?api-version=2023-09-15-preview&t=638327092312556931&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ij7dSM-r1pfOqF4_04geCO-SJJtBo5juYlM9UEevZ3zNSVBIYeyCuUrykFKOzsTxB2tVlaAmBAxohrjNiyDwu2CDnJVtNRnBQ_BOIM9sWRjcxfV85I0IQ48s1gPX_0ay3eBehhTiJ8V2FGIFcuZLdWRSba0fzu3CrbEw6LvRI6ZV8GCXmsxKwGxnYWN5WIhoC1X-WmjSw0SsMJlKKwRTya0CrQIoxBsGB33tWyjCB66P8x-LH_E37zXmUXIhbdf9YDRtz0qQKWA2-O5ruOFOlB8sHb4k9vzLCa16yp-8vlWvrp_YMn8-xM7QaO4ubk_7H_uIllTrUzyeuYLGOLY55A&h=1t7VB_WKye1nmOt1LlsNd-mWaJ4Q1-obb2MT8ZdVXvM - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 03714256-db70-4f69-985f-d6243e20b757 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/b40a1129-553d-4b07-aa55-cb54588b0c53?api-version=2023-09-15-preview&t=638327092312244901&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=To0qbMuI2xTOU0QyQ7OR_2WbMFIfk6odD0D1WSPw1GMxN-ebnecl334VKgMHNc3LXCZlj9VqD8GwxGPHxgqugM3ETlkB3VGGG_F4jGtZd1Acqf02DjZc08gvDtnvuU25b1QlH-BtA0aHCXdNiCchqFZKUhZdutGc8urPZFNydtcbbALto-e52-gJ2eOvxdrPI1XRgQHIYX3A5SUuq-8JcURtmi6CT4ViHVxOHDayYp9kAh6LvyrJXWrPJ8g2HOSXvxg0AaDdsSRkwiXW01ryBnYPzd-tT4eAgKabAz64p3-k5edO6eha2DVVXnxfNir8lOtYQnbPtVmAKUp-u7N14Q&h=nIT-8jjQ-QpKIvS254eD7ueS8YqvA0ARq_d_SsJRsAA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/b40a1129-553d-4b07-aa55-cb54588b0c53\",\n - \ \"name\": \"b40a1129-553d-4b07-aa55-cb54588b0c53\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:07:11 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/b40a1129-553d-4b07-aa55-cb54588b0c53?api-version=2023-09-15-preview&t=638327092315682520&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VQK3c8fBQocqFzq4YlFziFbh6TZNEsHrS2MOQ0aEk3_-XPXDwgKGc-hA4P-RHmkcRxwaVQTpxS9Uf8qzbhqdiY8TnQv251fqBl5gR65p_Gue17loLQShgvdtbh-akc0Uotys6qM6XRB5x_2HPFXPoxkWbO0phyu7KYf4eJOVHSoirNKFGQPIHySVfAT1NfSmzfJRXtGwCI1m4Mysky-QkW2hMbg36a9UDsfc9RBox5svhKZNMSfP2N3MOhk-dMWAIB1CCHQwLnS_Pv1UoIru6HI79HBNvmOrhUS5Lw61dBEydBMzXKIqpkXy_grJjZSfVMs1LxNN9ggE4aqE1E0mtQ&h=mFEbzFrFboCf2GFY646r10HTZOUVvQEb6PceAngm1F0 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/b40a1129-553d-4b07-aa55-cb54588b0c53?api-version=2023-09-15-preview&t=638327092315682520&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mDcegbo5oBprdNjgaR1jivZk2ryalncojACp7Ah-74y6EcewZ6-hsZQOrNT9tNqLiEASlTzibWl8tjTi_rHuJE5U0ugKqKG9IcUZ5IFtkStfwIW7fi_HeXH2BXkrB23_DT12rej5KGVFEWkJG1JQ7lHcbvEZMtT2fzkS8iB6m2iMghyLUtHbZffdFw1cEUHHsVm3is24bWLkccLZBeBHsgUoBo6fwJInn6FbUJLUXc_qH2M3bmvmlT1jMPZ0jp-iS3zQ0gaUl-JviO5ZCNyE_CqiuPvhVK9xTlnX4-dqNLvXutXh4vYE18OiosRpwNGbyP-1CjeVyF0RWFNFx49mfA&h=sLe8LKmYAgrmZHnPzDgiYWDMbELkoc4lWuwmolBUjMQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 82222448-83fe-42eb-b3a6-9a750186dd6f - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/b40a1129-553d-4b07-aa55-cb54588b0c53?api-version=2023-09-15-preview&t=638327092312244901&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=To0qbMuI2xTOU0QyQ7OR_2WbMFIfk6odD0D1WSPw1GMxN-ebnecl334VKgMHNc3LXCZlj9VqD8GwxGPHxgqugM3ETlkB3VGGG_F4jGtZd1Acqf02DjZc08gvDtnvuU25b1QlH-BtA0aHCXdNiCchqFZKUhZdutGc8urPZFNydtcbbALto-e52-gJ2eOvxdrPI1XRgQHIYX3A5SUuq-8JcURtmi6CT4ViHVxOHDayYp9kAh6LvyrJXWrPJ8g2HOSXvxg0AaDdsSRkwiXW01ryBnYPzd-tT4eAgKabAz64p3-k5edO6eha2DVVXnxfNir8lOtYQnbPtVmAKUp-u7N14Q&h=nIT-8jjQ-QpKIvS254eD7ueS8YqvA0ARq_d_SsJRsAA - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/b40a1129-553d-4b07-aa55-cb54588b0c53\",\n - \ \"name\": \"b40a1129-553d-4b07-aa55-cb54588b0c53\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 12:07:11 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/b40a1129-553d-4b07-aa55-cb54588b0c53?api-version=2023-09-15-preview&t=638327092624913930&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ih6FAJj3gRYc9TkDsCVWOYBZhxGXSLAXJ0DKLKPNowpEdRojYmTF8--u0a3wZ_JiZbvfjJv8aVNXLQfnHxHvRnX7wjRt2MWDvhm9zM2mIJGs0GnKpTTeVYr4gSWtXa2QtKxX8OFB4-69UqR6J4nF61O33LFOkVEqT8p-ozUPE9L__D9SG3HFqm5qehjvIdzy5kZlLkCkc55QZ85CJj_DNJzy0bLpjPOX10NyGqoI9Hp6ie0We-RNFIFbtfind1O00S8h40UBK0fb58MjgaJtc3drMYASWj6pI6q14HfSmbub99yZ3jMoOGZHLR2Ndipuznly5pttBUm6Xzv64_ND5A&h=x9qJ2ySE3SmTrfoQkUl_MbA_bQB5Y7kO3qU9N4iqf1o - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/b40a1129-553d-4b07-aa55-cb54588b0c53?api-version=2023-09-15-preview&t=638327092624913930&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XdplqTx-rhvWcGvi7UWjZRBwiR6_qIkJxLON0nasn6n0ZZH1dsBbMTKoZx47yJzMKxVKx-Y3vmMHFteE4CEFWXESIlLCNyUwsfE-QnOem6Xgr9bVx1TxbvvVAte0iXjqH27AkRNz1I87nPpMoT3AnHCygH6T0U9NP4EVOa0hp8AcIVDMzB2Fl5eG766oZtf7dJQlE-Igqls82luFS2jgovwJUcRfdPST0WQln3rM1bU5gJgBgxsEKgyGFrwhqds4QipQIcl5H7fOcphp0xk1H4--RWR3BPJ91PNy3lKiYI8zHySTfpeHUbIPTYBcVqqB3ZzzuXIh93VSj2R-N7xq6Q&h=Nb8DrHFomK0homS0C9s3djAd1Slj771caQ9YdTtP6Hk - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 9231f2a1-9a24-48de-b1bd-31eeecd94078 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --rule-name --start-ip-address --end-ip-address - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters/firewallRules\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"startIpAddress\": - \"10.0.0.120\",\n \"endIpAddress\": \"10.0.0.140\"\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '415' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:42 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - da8f1f03-aa60-4868-936b-41b2caeb5e12 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule show - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --rule-name - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters/firewallRules\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"startIpAddress\": - \"10.0.0.120\",\n \"endIpAddress\": \"10.0.0.140\"\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '415' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:44 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 8de5b3fc-5f5d-465b-bd97-c9837aef9977 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule list - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules?api-version=2023-09-15-preview - response: - body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004\",\n - \ \"name\": \"cli000004\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters/firewallRules\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"startIpAddress\": - \"10.0.0.120\",\n \"endIpAddress\": \"10.0.0.140\"\n }\n }\n - \ ]\n}" - headers: - cache-control: - - no-cache - content-length: - - '476' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:45 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - b9db30ff-e2a8-476d-845f-f7e501040ed5 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -c -g --rule-name --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/blah?api-version=2023-09-15-preview - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - date: - - Thu, 12 Oct 2023 12:07:47 GMT - expires: - - '-1' - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 73b02206-badf-4b31-a20e-e87386e9a9b6 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -c -g --rule-name --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002/firewallRules/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{ - - }' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327092693844923&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=D8XmL0pFscAdackPQSt6GGwNpe-AosCWy-PSD-m8HUEu232DR-S8SEA-CITmIiZqCX-pl91HCmFlfEqVWSCz5TAed68Jt8qZAESslyZdzrlJv1W4De1RTdED3fUodtTO4AxKnjMaiwE4JfbtJ9LdIiLwvpZ7KlpKXVeSypdMKowN1wiU4BpEGwaWBLTkOdvlQtlV9WufvkDdeplUF_1sYkn11bmCe3I8nfDoGw5AVskPzVDxwIO_ZRZ893PQ2xSAnKQ64LgIg-6HbgKf3Sxps8oAnV7hUSfcV6HC6eYT7kpwmP6Jkkm95VatduCRvLGA4ThLpNn11MyT_Z6jHT-udw&h=r8anPOb9yY1mE-pAFSYv-j7k3DTrJ4Xm4DQPyV0K4lc - cache-control: - - no-cache - content-length: - - '3' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327092693844923&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=H6rND317GjzX2ImspZ_TDJ5plcpUm_Hspq1BBBOKHY1zdYN6abE-9KWRxV6negLl2YKO3FESVpV8NQonwTtjwa_JECsQwrDaWg5RUGs_HwDVJYaz9CM2Tns4BJUlBrh-Syfp-Xq1Q1drSQkctT8ndr1P6irqxcrUNYnmCKMZI2xJ8wwa01UseHi8eK8dmp_jcJ05JiSlAiPEWDcuAxJBD9tJnoGSRkWECVtglaatTp9VqkmMxnhPamTL_CVQ-6RABGnJ3Z68pjcg7bD3k9V8-r5Wrxk9Gv38YptaRt3-tSvFxS9LovjGf2xxaNNULNWjoA6y7MYzi-UZV_DD483hIQ&h=mDD3RN3psiA8t9WsV5iP4GrfwzU_ESzA5b-YAx_B88Y - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 57c62c9f-5098-4736-b3cb-f7dd07313a18 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --rule-name --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327092693844923&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=D8XmL0pFscAdackPQSt6GGwNpe-AosCWy-PSD-m8HUEu232DR-S8SEA-CITmIiZqCX-pl91HCmFlfEqVWSCz5TAed68Jt8qZAESslyZdzrlJv1W4De1RTdED3fUodtTO4AxKnjMaiwE4JfbtJ9LdIiLwvpZ7KlpKXVeSypdMKowN1wiU4BpEGwaWBLTkOdvlQtlV9WufvkDdeplUF_1sYkn11bmCe3I8nfDoGw5AVskPzVDxwIO_ZRZ893PQ2xSAnKQ64LgIg-6HbgKf3Sxps8oAnV7hUSfcV6HC6eYT7kpwmP6Jkkm95VatduCRvLGA4ThLpNn11MyT_Z6jHT-udw&h=r8anPOb9yY1mE-pAFSYv-j7k3DTrJ4Xm4DQPyV0K4lc - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/18318aea-0e80-4d3d-a489-313b14bcc844\",\n - \ \"name\": \"18318aea-0e80-4d3d-a489-313b14bcc844\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:07:49 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327092697438884&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=AL2mspde0orC9KHrVfvXNAAkbnMz6mxvBGJwjLjEwM5Sphu5fSx7AswxSnjWpa6Qa2jxoBhr_FeqiQggmmSZVLwHaOieQG9y5NaTHNmIHhME9r_v-l5kkOhSjKTM8VD5pv1bgk4BPxns-dGC-fgowf5fTAVk_H2VSYZwnbuAa7n1Ow1aT2ocXpSJdoPo2E_ufToBwF3apI4NgXHEeq_VdCVEJsSHsEN4jdNEkvL23wv3spnxE4A6jpN7cBmsF5mgJeh6V-FFOmvIfDNznMWYQfNo6FfrWvNoUfu1RatiDTiHfNTfBUyoE8dC5wzh9LKXY8S8ICZsERvtF3OUzNgAMQ&h=MYJgysn7---HN05Aj7AqMsu_APy3K50BwysIiIinlmU - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:07:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327092697438884&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jXqGXoepY_Ml8EFzYLTN0JyeRLnXM6xAzSaJL0fKihS4HacsvEXRSlqLm1RUc6tBo5JdOYe6iMvnvxgn-xNAneeun7Rc-Ksa0T-oxWAS-zVt0ciekMDAO6moK7NrWkxwmEL0g6VwMcxtfmo4AM6OgyRi8fvlT6CJRTe3h-Cx1xdFbUCJ00KvuY46nkfOv76K6tbgfK7DehDDgdcyMQc0Lu48921OTJK4rHdzg9YJx2jn6J2RlRYNGZAjSudbmnnrKyvom96OFcwzmCgPFkMUu5KLJevL0OvZq8VIT9NUV9jObdbE02mdiI7bgDG3AaEGsOVocBOndLLVDg5594tqeg&h=RagW2j3InDlgpi1vGNuPzj-1kWmJ66ElJJY6NM7pxys - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - dbdc857a-7a06-474a-b8bb-5d235eff0218 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --rule-name --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327092693844923&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=D8XmL0pFscAdackPQSt6GGwNpe-AosCWy-PSD-m8HUEu232DR-S8SEA-CITmIiZqCX-pl91HCmFlfEqVWSCz5TAed68Jt8qZAESslyZdzrlJv1W4De1RTdED3fUodtTO4AxKnjMaiwE4JfbtJ9LdIiLwvpZ7KlpKXVeSypdMKowN1wiU4BpEGwaWBLTkOdvlQtlV9WufvkDdeplUF_1sYkn11bmCe3I8nfDoGw5AVskPzVDxwIO_ZRZ893PQ2xSAnKQ64LgIg-6HbgKf3Sxps8oAnV7hUSfcV6HC6eYT7kpwmP6Jkkm95VatduCRvLGA4ThLpNn11MyT_Z6jHT-udw&h=r8anPOb9yY1mE-pAFSYv-j7k3DTrJ4Xm4DQPyV0K4lc - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/18318aea-0e80-4d3d-a489-313b14bcc844\",\n - \ \"name\": \"18318aea-0e80-4d3d-a489-313b14bcc844\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 12:07:49 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327093005426693&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=k2gRnB3L5seoOFOGDttB1Jt_teZ8j5pdzyM1DrJ67hpFg6LHOLnkrvxbHvG__QEm0fFcyVw3f-MNaWMYfKaTKnv0-4IXgSdJ5puAoI0YwthgRbYsUNHxWJQe_FJBnP_OnrwjaVAbBNkR8EjPCEHbQSvbL2wYzMqpYzuZQOK8rGpN-Hu8Lv9iyoX820sGew8JJwBpNPJR9_CZBiw3W3Ihkc1AQnFPFdO_y1Po5Hfr4bYcADjW5b4owYu0rbZyVli6u28HoszSh3sbjFz-0Jmjahvyls7cefOjrNJV7PKuF8OxdIZdW3pYkKerKH623x_TX-zV0557H7wo1TAUkyKPew&h=-2BRtrFz5ZrpUVGMSGp20QoHAAvLM0e4KcIFQMUuR5A - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327093005582432&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=GfDOABZptAHPpTpiHvDa6RsZWSZGIucU-yooB--VTmUdGIQwZyzRWTyIjgg9_dYpWlq71XlpFIfY9UIeKPB7ZWw4DlhAaQUshK6UP5zf7Spv7pY5TfCdHZD5ot4tw3gin5F7bRX2V7_T_OshgtjtRhatuP_XAJ6yn7kLDaRrxemYWerRGL-dTjvVI7bgu79Ql6Z3a-Fe_VdU-wAEWxuyqx8hReMGI9YPbr47KxBE0J-c5mlIv3Zj61wo1BiLfz_mvyVsjXEVl-0xTH1QfpU8-UxLC--mPXtPkw1h_zpRBHEfW519eEAOXKDy6liDb4GFZpAAfjAzfDqnBfjSvA6wOQ&h=a5yOuS2gKd2m0KIzuTI1IzEN-thSwsRWUOGpqxNFT7M - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 2b3b84e3-095f-4121-a0c9-947383b1f633 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster firewall rule delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --rule-name --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327092693844923&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=H6rND317GjzX2ImspZ_TDJ5plcpUm_Hspq1BBBOKHY1zdYN6abE-9KWRxV6negLl2YKO3FESVpV8NQonwTtjwa_JECsQwrDaWg5RUGs_HwDVJYaz9CM2Tns4BJUlBrh-Syfp-Xq1Q1drSQkctT8ndr1P6irqxcrUNYnmCKMZI2xJ8wwa01UseHi8eK8dmp_jcJ05JiSlAiPEWDcuAxJBD9tJnoGSRkWECVtglaatTp9VqkmMxnhPamTL_CVQ-6RABGnJ3Z68pjcg7bD3k9V8-r5Wrxk9Gv38YptaRt3-tSvFxS9LovjGf2xxaNNULNWjoA6y7MYzi-UZV_DD483hIQ&h=mDD3RN3psiA8t9WsV5iP4GrfwzU_ESzA5b-YAx_B88Y - response: - body: - string: '{ - - }' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327093008864211&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eRwgM6D2AXvY0QSm-aVh1coeswmzgw_oL6R1rERwS3kGl6c_ZKC0FtNx1UX1pS7kUBcqZ8xrDUYBmMEGYecQ2rC36FgUVyHbQXFgMujcxIXoVH8WysoKRf-2RUUfIyCLM6hOo5yd7RPJ1J35-ZiyVxjmZYRqAk-JR3EQWKGjxkSb-JnZZyHwePJF4A_ZzYA_Qmxs5fNkDcHchbP07AovHeKQVuXwGrz9QgWuoQFNsONBmq6e7ETtJQ_2yQ49dxRMORFdZvIQGHOo0SMrIrK3MxMhSxcNrKPf0u95MpHoKhp_rsr7eFewpeBeTxn3rUfeXJcWGn9DpdJCyifblFGvKg&h=HO4sVC4Pd-FBLjtth6gUoeRxSXDRN_V85eqwQBlm7Uw - cache-control: - - no-cache - content-length: - - '3' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/18318aea-0e80-4d3d-a489-313b14bcc844?api-version=2023-09-15-preview&t=638327093009020722&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=nls4B6vg8Z6_ufrKKKLXWCQMEtRkLx2CRmM5EAjzUUSAkhZUWV2wwLy9aNeUuB2qMF4pcqn8AZkrAzKn03juTQX76QcGNtpdXfQ42K_FcsHSUZLzv0c-hUq0Z9GLo_HGgFNhGeL9FMpl5lr2uooD_7dRrACpPtZM5uJJKMTM7vVEqPLziqpuOSJlqZ7z76d6mSsLxJ-S8g7qz29zVDyWRIHz4R06pdgiQM8xCLvKUf2t3rdldLJT26j-r46ZXdYog-pjYTdA2RtQ-Q4sT-fjC2zdBHNBl4F_ld5nTRUTO8S4ySWDX4f3aqvMFW6oUMzxZtCem9kHDQKADOMlkydYhg&h=XVDJUA0-H9tv155y5IuogpimKqBYimZ3hvmNZCdoJDk - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 0bc5fbd7-dcb7-4fe2-82f0-fff48fd46f35 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_cosmosdb_mongocluster_firewall000001/providers/Microsoft.DocumentDB/mongoClusters/cli000002\",\n - \ \"name\": \"cli000002\",\n \"type\": \"Microsoft.DocumentDB/mongoClusters\",\n - \ \"tags\": {\n },\n \"location\": \"eastus\",\n \"properties\": {\n \"provisioningState\": - \"Dropping\",\n \"clusterStatus\": \"Dropping\",\n \"administratorLogin\": - \"cli000003\",\n \"serverVersion\": \"5.0\",\n \"nodeGroupSpecs\": [\n - \ {\n \"name\": \"\",\n \"kind\": \"Shard\",\n \"sku\": - \"M40\",\n \"diskSizeGB\": 128,\n \"enableHa\": true,\n \"nodeCount\": - 2\n }\n ],\n \"connectionString\": \"mongodb+srv://:@cli000002.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000\",\n - \ \"earliestRestoreTime\": null,\n \"privateEndpointConnections\": [\n\n - \ ]\n }\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - cache-control: - - no-cache - content-length: - - '890' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028588803&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gKl0MwoUTiVtwgxuymqSHPU8P15xB74lh4fowLUU6ocPV8FTdoMXnQTVZtRv4tWc7YdxF-unuvSha1KSy7q93ItIFtRSj4z3oiotAswINdOahu3gnWiJ2QD0XJYHbIePh4Ql4Sckz-ho9hTbuWt0ofskrDsOP4MiqlxkrZqkUIw5R5uF4WYlpPPyhSiKZRG9IcqycwixImsnOsFvDh70at8qxQXIzlgkhMFw9qWH0z6GPu7RJpA_nZ5ME5WY8o6__anetp7aHs_PNpQqSOuSh8pBh6kOV2I2BrMA2VKq6v3pM20HQqKE2O0LCtfKi31p_8e2WZ7Rbkurn9sDTAMVDg&h=wFcKZHscCpWAXDpH0oROG4-EmkY_Yj2F_V1BLe5GCZo - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f2924ab4-469b-4768-a562-be1e6a708ee9 - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093032182611&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=WeQXbPD1R7oJPS71YI6COPpBa3VTxDaEd5Gg4pKaenQ42d3i_QE6TuNmlcwki7AebONAdhfWbKtZUS1OvbpcpzOru_LfXJYFdsgOWQaLqUMwhEYY-n-QicOM3z1LmZDnUE2rrCK2gu5BXn2bowK3Ylgfn4UAQL-QWILAejTm-0XYxWFGBv9U8IRDw3ZVAJs8VQlIWojjJsdV1_EqdQtKRONWkmB9vB95__Um6IpBQgOeNCHN6_chprQXid6dcYOU09RUwoPpe03z4bHfizUmKPScifIKNDdukMm8UhcyqN3GqMaa3g8fX22x7wGg1uBPAmpVVNQeyRgPkWvP8ozIDw&h=iILe_0QeXWQAnqBH6XzthRp5GSqq-X68Ymwn4kx3RLE - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093032182611&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=XjBg5Vi0JQusuymsqD0V2QnETBzJbHOwGyyzTaaL6lZHPzFJFY2LOq4zQZ2p-xzsE3jmr-oRGObAn88DgURGJkRgKj9-7AbaFRnWb1OPW1MkLwVQspAtOno339RanWycTFUskomBVAUjTccOVgILFT1y9wH1q03a-f_3ihr5a1sBKTYxc65vdd47o0fQDG2qDNrikrLLQ5-_FSG1-X0JsKaRdDxK_XtwMvjQlu2RnFf8srt1AwdxYvJaR7BYegS2sNAh5tV9aLLYgG2JgAdwMNKA10nxtORGjqpoCGIC_3Bf11j4BV7Hyb_UTg0hZgPZhj669Yv1ujRnVMWeAAV_ow&h=uBYwwGxvrQdIJO2kuHKJ0JJdvJ9-TAU0gjz7bo5cgZI - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 2d85bffa-b77e-4585-a5f1-7069ddf85638 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093342228721&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Ryln0OXs5ZejBrdBTH1FqOm8ccT6WXTK1Ibjw9f_JAUrLOx29vRUniz32NcfMZqLxL2Z3JQn4kC4xFI8ECzbC3BFL_5gRmhD32-8iJz9OcTfTH1_4F3CsxQNpRPqYykfVcJJdEBnDz7Mtnwz-9paJ6HMEXVl0JfyGd0UXw_0v6Yly4B-KXzXKQbRpWWOoEYTyQC5AIOiC-FegcBdcu_h-nR5hVWXbY69qw027628wNREVxc0r70zGg5aAYqJutMrblMLPS2skM3xY_cBoz5d_SzpRF30_FFkg5wToYZvRLSIwqucSK52epelI41zoYP7FKm39603KqeXIjWN7Bdw_Q&h=91AKVHTTaF_EXf4F9KAmbPeXuRQex9WVTDBWViMQ37A - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:08:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093342228721&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=0SZDUsQfcLTQV-fMg7PTyDS1iBrpM930cSMYu_Awr0NGddX34lOGaC5iK0B2BwUyFftG_Wz7I8Mleby10tNxnivQ3-4s7Ijh8zv8Rnz3nvRmBvucyS_Vit3bCt5uysxjM-Xy-i5zlkSdEVuwiNCXc1OtJgj9Ii47C5wFBHEKTlZ0G7p0I5pLPLeQQSJv6y7KTmb4PQ-n_vieKCs67wf0cWFne8r-xIVjksobvt76aOczUVuELQV1wrUAZPp78QQZFGEP7deViX18zng44FJGxdtnun1vRQUUeasShOVw-rRl76UyOBw7VjMJxlkLBUPaboQg5CDx5M5eSQR45hDhnA&h=uNqM0VzwZ9U2sfjA-pd1lvUtPrezeU_8woJCccSa6lg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a98cac53-4222-49c8-b385-c3c35aaab076 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093650085484&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=tGmiFTMtRnhr6cAg5WxPBBQyEgektFhGShVbDAI0rL7m6hK-Oz2hFOuBybdqdnAuW6tNSnpe4Lyr5jVolhz-7RDD0cIz_1ySUgWjF16ue_bIBLfhEgHeWN3IJQWSz4dTOa_DD8MWY-ugV6JCnWfYVmNyMvIrh4-MQVFwW3tUiDBn7rj-rrN0Ti5uCCxY6aT8D4m_L1DZ8opA3M43v10S1rfJZJRIBrzTqqNSipYFZHNDuewquRpaA58Ws0L6h5nMlH8TdBEO4tbezRkY5QFNFeblaEz65y_E0eWkaLWv0j8LIzfIylO5WwzzFN0buplFSKIBWe5Yd95puF7qs1Kdnw&h=Jc0-LvcKamDF4S1fiof35IVNumD11p-8CFdS7JFvGG8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:09:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093650085484&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=BHkUI3zDrdc5f-mJBz4BiYxBu8-MqNY31U9qpnl6KgavVqQTws1vbpJ6S1NfANseOC5TRwkSQFY_2XzFW3SezpBF0BMYl9XJP8dP6Hb2J4FvnCtA4R_TK9nNdhj21bRg-0ovEMsoq5i-6cEK6a4lEFJQlSsvWNbtlYrwPVDjNnTYoCdwmVBwYBh6tzp66gTEDhjZsdz-1yP71_5iup-52cOXB6nsBtBIcKL_bn2eOfSb7bi3AqDDEMGkWtm9Q3C4tCFCBTmuLhpovnAJF3oeCl93t-Be8e4T5CYObHOIncMcp91JDY_IyCV6W1snEsFEBZNBHLQEkw9DFvXzbnDLoA&h=RGbmp5QIEjultIN3QjXgxSGu13_fjCU9oEQDvBut310 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 023272b9-6d90-4feb-be51-54f08942a1ee - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093959987778&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Ze2ufbmyr5jsje7z-lUYloVDFFMx1EoLBx87Krspi_PkewR5zM92AS8K3-BR0s5Cf9447Fok3SOBute72l9uLV584yiV44RhOakxqt5NWVB9DVslIfsk6bzEr0skT3V6uY3S4HSR3-SvCH8FfVI_8mnbOAIlXCISLerXu1TwamZWDZLa8QBqO1_PkTnBWAgXWla2F97KnUndhJQUUqn75BzFHnarda8SrXJSt8ux-eMdQqBLwWv-wAUg8KBu2Serh7PtCcHM_wXKLkC-814MpdgqXxGz3RchCIqaDxOcDxPnCupX9ijT8MUUvLVq6vwmxXjelS6fF6C768daXyVaVA&h=PjiImqFgepThu-pZDmeQ3EpcS_CcTK10bVmub8pE7j8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:09:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093959987778&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=NNwEt0gGthXNy0cd89Y_DQdPwoqkqSriSOXuvfMIiAhk-XkEEEFDknXj5y0SinGGKl29RxgQg48pelanwHej0i6kC4I9UniPQIas51oKef3b15f2-jzz__6fH7Y70kksFG_uhBtQt9L37ULVFHv7uk2bfDCp887JaZ2PlLfZ9qSH7_5nxKY6VaW8LKy2hp-4URUqUlJnW9-fxXqKBpFWXSTxALoKRhdTt5OFXqAsQwYLaXbgqfZANaeNLzDVPKHkwNKnkRTCW0slD-WNJ_m8gIm-BEBvWD__hT_s2ucuaKaXcAy2bXJiw539_tsEwhMmWULt8POVuACzXCI1QdwQvw&h=29t0F7Vd8ochj6kSSDTNlBxkQzyw-CP4x-y62Xn0bhQ - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 4c3672bb-c057-4c32-9232-78f5a51d30d7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327094268034337&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CqxVojr48iKr3LrzeMuole9xipkw4M89C05LO2em5nKVj994-YwsMnDtxpEdKW2-RCszwjMIVfhtEUwYS-Mmb_JuCdK5ybW27R9V-Bl8uMvVA6cnIexRtFLmr0kS8ZBzeNTuHMDcskXrQl_y_pChksgOEGMYE7yOyv9AiR1zoamPRraInqDt13Jk-gKAlkxNZpZUMyTf3CuTbHmp9pMUjUPOW835ltRVPllhdXSWF0_enOaa3MUsoPyS3zyB0J1wnmRrC-SCHzW2SQAslppEaPUTaBwfZtg_gDM_0EqxXYcf0_rXbNNg1z_WYhLYAyqH1GyMEP08DdLGM2SADnX5Vg&h=LRddYMzf9qEd1LNepzJN8K3YAfXtnhHrqIRo64-aHeM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:10:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327094268034337&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qUNo3HBVvmcXlhnZsOaNTfdA1w3waaEYpqdwoeGCG3j7wy1wIXb1K5ge1oFeed5d_H3p_VYK7wu9uxGRAbuWP4NP7EOnOXDIm372GG_JXnzuiMssp2GDRCjbOzj3cnjiZgwlIdOiJsYgdal-s3yO6HxtB2XPoAlqs5d42j6mAOgO1jnZgAaXht0LlFyAnjAruk6EFgIPqRnmx4TZ_7obnMlJZAjk5jOTtj9SO89yjob31CPH2t8T7q3lU9PLfVy7s2WnP3_lMUXWUxVp-wifGgKjsZ3ktMpOijUtlJcUHb6jizbWDB1CQFeiYh9NrUkVRw0kKD_OQBxX7JT_-GAAyw&h=nO0-Y4AAIWGO8sZBChv5cGtcfKRrfFMpv_ef0P-SqIY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 61c8cc39-27d3-48f5-9822-624b80c5b2d0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327094577995656&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=lCR7kChYr0ay__NX4iecNMkoyoqD_LxbsIiTho9h1mpCQtj8WZMG1kLgqRUHlT1eGY4Tf8FODfrsUz_t6_pvToIQdPkkFrvgyN5hdCXE7zCtwIKfB9Lz9IOSUaTdJOHpxPJPX_HWRZp07wDujRJl2VmI1D2vAvMdGpAfOnF0IKNc831OJaLUjucSLqRvvg2Y6-VWWMeCC2E8fseAPgbN0OV7aQRnD2_3cPDFsgnNeJcDj8rHOJg5Oy4ZzHItp5XEX-IrGwkSJ8Nz9_RIQ_cLDDkCE9e_J2tPi3A4U3aONf8WMI16K_yCMnOFcrUHhx715rTZ4-76NjmGRtDNinUN-w&h=pn0IjtYJyIbRlBNqa17E_aAAwi8-lLH7Wsh1MV8vumQ - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:10:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327094577995656&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CfvcvKIjkHfOFqF9eJCk3PjfC7P9FDaoHhHH9U_tUPGFQIt_82BDLTgBBSh183r-nNIIbME1H0yFxPB7vLEikep25xvuRLCm6sWEjP7-RROlTMml6ZdZObiA6r98cSZu_8yOjLcFgz4oI7Mmad8gQ544M0uTwGtoQrEz-sh6wpXg4loTxD_CXuVOxpgLwd9_a0obFGCPCJLL8AG3-aNfcInbbkbjeL-ehETDYTNGsGhIpqGvwbFEuPrCHBxRs1sl3rJgdgbDQiL6TY5153LkTY0BXv-yjhA2vA7A9HbAaWphOgpUahnT_eX2B2ju-Xk8Mvld43DACbNV7N8zkcqdAw&h=MNAFvglwEVtiBg2ReZYWZtx5nQdcqwb7j1F57CB7bQs - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f5a34b21-b91e-43b5-96b8-839ba38f0737 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327094888157847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jOoDJpk4bzgu1qP6Hh6NgOTdVaoRB2VkIc-nekb_kgULtUnYNARYefkcReX60Im3Y9Cpy_9aT9vdjp_yyUf0ci45DXRDWg2F2clRjjIp6C7V83jKMvHa4MoQhQ1UxiMLwFtm7BceTtZYcyi589Cp--hLIuwu43N_kHGiRPkVw04pwsaWUvR7-HcEQLLouh3PLt432GKFgXFctLbN4hKKUfxsjX3BudFbDZ55lhzv1G79OFs4NDqdLvqKRw2q2yQSRiJzy_EHjHXVh4d0elLUXBOddvfGU5Y0qoN56bDmoJykSsJqjxWhkWneEXvhI3wqxYrTEqJJVvOVp6pt5z_-CQ&h=ds_LG4m4K8N8oc09Rx1Ek9rHVlHQIuvQHcwwVtlxpi8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:11:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327094888157847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iW72HZrSFTwtJJjiIVJepHX6wL2RGxjUFd0lwFyY6b0pHk73tdwFNAwWWlMgHlM-Zzk9Vr1T42WqBUhRdMWSR0Fv_yHvrTGBQoR4DSbU6IjKs55UDgAKkB8DZiQXeikM-dmFXFCLhWF9lAwF2ssF4BNumljH3ftUVxJRkYtzmavtafCoMBoD5GUpVt1vGBQB3keEK2zC4-t5zPmkC8siGyhQ6GuJgRhlXSCC6g8bh0Ny0VlgV9koM7WY5kvxyy_aeMkXjgD2bxV0XF8IeaaDm4pLP2Ri1jQWCVgfprsTnJGKGDfJjLksHE88rJl4s1Fuj-cRs7dvexcYt9Y4Y8O7bg&h=ECor0RtNggig3fQMdU1HZS7OR6l0HJ0rbXnDAYVl8t4 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 0425760f-584c-4c9a-9d9c-ff44543708ca - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327095198523426&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ddZeUmKBLy5LIcfHXbCLKqp8osDOwNexhLombKmQ9N9viUJ5BJDJKcBgPk7Zt3qyAxN7pbYKUjok97aHBXVIYU_lQnxDdKG3hDD3Oy_ugEVXFWxTcRs3o7yrmM1NwuDT4DG40E0nZjtqz9tgD9bX2uEhvjORWqy5Tnp9q_h2LmRsy470Iii_F9TA9tyOxWzV1d8fG3kV7tnSx08t_uxaX49BaIQVchLAq1rKfyDbH0ir3Aiiw-yMD4GOpQI8UAWpjw0OmrCKes_jrwz1SSB2fjSsi_coYlXyA1I6buZomTkKC2GzMLCERezWqHJYBtfL_CISIzo6yOtbp67bdGg5gQ&h=XQHBYE7TuI2k3h1HdK1Cs49ylySvDZ6sInUMsPJsilY - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:11:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327095198523426&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Jxsy5aK_S8SxsbiF7f4g0csUaKITmz1UcTQncopI5HQ5AwTaWPkAxsrhBCZnWzU8wcK9ZAbCm4k5lmOcJ45_p4gTR7WKPsyk2ase3K6HUhq2_aKYZ0soabdnmjIkD9AjxGMATsvAefRrG55_ozSKA5OFySb5W1d92jWlaUAqbV8Q4A0OdCqM-dfJLRA8WLhH5FL8o4Mw8Tfe8prcN26RKeXCBAXycghYFrVyKyAHnGqKiXymFe-Co0ncqj2msbO3mK2Z9v3VXbBuXK2AAlmAjIgSjCyiSbxacO7BuhQADN1qg4nuszqh4sPXy78ca-ckh6rQiiLCN9Iruqo7Qak2lQ&h=wsMWYjC7n6EUykSvWVIXdXZx3vhU6IJRbcMBaxeeVPY - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 528987db-fb89-4814-80ec-a24d6966e8a7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327095508528598&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=zwIBmfvWd6V2DOUMoOG9BR5DwJrV5W88QFWsyfzJoROCF-gLZlGHs6VHI6bdxPp1yytZ38nCxulbmbkFcn20BsH0vf9SoQxRd14g7IjRFelAT6HILkIaIs0FsUdzuuAoi6QeyDFBGj3Hxly_wZxduYi-RdS6Yj2WNn3JjbIpo0tcDX9z-KguZjfh0bgnkvjDQAeC5CKiyLwar6wIqB3yBaMIpK_QY0oH7EHyNHuLzRKltMyoTcVjybJjPYgc2P6E0zrRvq7i1U9Uw1syf-fByJqz1xcjdUYbmmurD2YR58-jpP7gwyKx1D3zu01N0VHgTNNepSOqBMmcYDSXbT5hhw&h=hFn1usi17b_tmxI4JOTrub18BSLSOqFdAcyV8jo6jkQ - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:12:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327095508684906&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=waoEYZ4kEggG0eEdKjseEaBOdV59WDrVYRUpgPkM1T9vq8F0qt_nJVcMet9BQ6HOUewrUm9Fq0yeMSQtn7OSf_fNahSuhAaAua7yLmy3K90YCrab92ait9N3lSFOMaXozF0TKJhof8vzDZV0CRfAn9U1asjohJYrupytC-Y0xfr0EuGl82JO5F89CMBtQKopR-WObXm3BnDreya1SVV59xKld3TcfA9rLX2eeih-tTfMEX3ygwuUHEwtT64wFKDPDx_ZKOpAJ4Y4q-8sHCsb-guBzylv0Q-SiM8bqSqherSZYlXFs6pIDmA0TMxdt9Z-HMvOkqcUAw4yW_90Ac1RMQ&h=8bnq_ewNFP7VWTdmMqkmDTqYfStl-00-g5BIc2t5Eg0 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 352ac362-802d-4598-9651-3f9bcbe77c68 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327095819003038&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=X5SLEYak00G1TQEL6e0Bl5CC9q3jWkXQIZa5IORZRS4q_BAy0qNgn1EHXqQpyFLkBvM2RS8itqweH8eLpzmcPSRXQ3Mv5TwrpA5W57u9gKkaRT0upbkY82wyLB_Ek-5EKsOffBqg-lGtKMg-JFiJJGRQEfZzlhT7cdGmc3hzx3CUFzt-pii5JDSBpYufuuM10zNaFsstvjtYvHzqgyggKE0SL-RwSaQ5xyLhyuPtzCgVEoTCJrrgtLs6ZhTuAQuwlF907ftqe7wv_LoUiHnK34erfjof8HwPg11XiO1KXr5tNQlgU4amwdXQLrnQebPyv8mPyBLzL8pBlaQ2cvFEYQ&h=vxWRNi5JBKncYGOlIRgOfUWJa-wcGXORLjlpdN6OiIM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:13:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327095819003038&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I1dlDSF1o7N82ILXmNJLSzBGBAPSm1KggScOLvzuir_qvnhfe4I7iIid5iZazhWdOdOFAoKnmVqUedxu932cUmi9FxGrs7za9XJF7tr5HpbWSz7MbndsWTT1GIuXO8_kcguSS-iPjr_Uqgy774cldFOkcLy8jdrO6rNhrjA6-6Nvf2QJbdTZA_tO5_L0NUP-DdRPU_7WC2EfWpGD6chqBWi5jnmlBzdm27wN71zeXveDUiTCRHrpIKPuui3sbzNJ65cW3oKIFnbsaon3EkNo5YzZ2geCsMfhU2OMFSNRmuA4x3zF5qG45jYK0DgVl2cUcxI_JmowfXKvKk7OCSmhdw&h=Kv8Ws3huijiFLVtyRElfXliU4ChaMtonsw3Dysu4Cvg - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 8acc1db8-1abd-4084-8c5f-d3c77edd541e - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327096126975774&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=xibjf4jspeXq1F5MJNx6ifZDypSlEGuZwYRDJ1vQv1dkIulnBv2a1kHNWqlC0dlptVzSnR3PI2NT7fBIxZlgcaHuKVDcPHzzPWIOVq6pX-SrLNjfkgHUUAmtIp6xKfVG8resxKVOHCVGZwWqaX4LkPr7E04VGr0UH5bMnRtC0kdmtjSRW6Y6UerVGeHKxflbLi6xHx4d1CxyBZu5nI4gZad7gDZbqi2Z10QYdUmY--YI6JhkCkNjG0rVl52ptEzp_owBKaEtDbg0AJtYRwsYIJyL6JSkxq0pYMe1CYvCyjPLvWyR5MqWa5HoFKJPhqlIB_X4d6NvVhOGg2JPcm6OwQ&h=7uUBaT_bJmM4QdnN5aupJontl2LRVeI3jPvydq0FFtg - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:13:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327096126975774&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=audxO-SfOxrGgJwBcLad2DnRFT1oAHCXkbDX5JA5_oZYPbKfmvozXHLi0tf1NaI3YrvwzGH3vB5Xxe5Mr4RhgAPXw00Txs8JOohRdiokocMQ7pnsXY_Td9ymtE0hwOM4rHMXsxfCAg1aPWX0VYSDC7meclPLeC9ULdeo_bp8FUYs4Z-ehMP8bAdXfDrohHoHCOooVUWee-eDsFXuezn4czMamTaHrRN26k5PaJqt-svxNDYlNsy7d2BczxzKnof_PVY1QE59jeQX-buFAyUBuW_vpXRA7GAjuHbVhw5IlJtlJvQQ_231n3xI77560i8DBX8Y4qBlxQ2RDGXg1UPMrA&h=i2G5JUNkTNM3JBi4QRRlDNc7CUy66EZP-m_uexQYNoo - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 89d1ae26-0273-40ef-bc52-ba1bec9638b2 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327096436994864&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jiFR1-DsA95o8jMUdyel0KV2cDVUU3U0ZNZl98nfPfHYx08AwSQWjTwrgx3WhP4wWOkdRwpNXL-JpQhqKMnKnIYoVUaLXsvCsDbuOb6yHgq-bvLuDUUvCWGgPBDPjoUQUF5Plc-SKuOtpDbsTsjyhttGhWrkDh-zVIq-6ycZTLYXTz_5X-ye6bzw2d7ArU6AwtZweRLGAQudyBl4HPmXM5ThQvkZd0O2xWCkCnAlWpkf3jRIVYK9ycfaotMZ7h3X-MOYCxqd-FAZNpH8iV4JxKjT-CCzOOH6L3eNThlV6aDKhkutFufe-ZodgTn81mba6muRHpiVZK9E4J4F7hWxHg&h=DmIQUQvUdZ6QOpE48-bCwB5dKR2kOV52eMyH2ZdiFX8 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:14:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327096436994864&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=K38UrQGxKvSQ9TLTWCbqT8anbghjVLazU3RDkRqbkpK3UCd6mhEctH7SHMSKmh7a_21csldPmyISjIPiArLcxHmwBJ3nk-abhSWC1ike45FoIu_O1wxQHIEmIBwYgowShSqSgqAGrgdIFL3193MBsuTEzis6_ilIlA13iXHmdiUyrUx3ZhCuE9YUnygRQqnuWKPu_4tGVmWqaCUZTA5j5XQzJ0qnXLaf46gE8-tunURuL8F5jRJi2ttsRkV5cX2YWX-0-RcRC6cV4wA5V7qLHG2q00NXvpktsuBjefps1XqtrsB38uzA1yqa3ScmrujaOjnWUkRPfMQbuZO22C1rLA&h=vV_Sr46mUGShLOXcySDLjoIjDdOr3z3FsWsoYniJXbU - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 4e11ba72-879d-4f22-8bba-26ebafd43666 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327096746858358&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=id4lGTRpHdKFwwLni5s3V0GvrYAAvpkwzst5zYOn-YlVH9J_RgcTX_FcNUdb79IJa1k9yovYHXHHalpWAoLEVkfRO1NPPMb86NVc7IXeSIJLn7aStRMRkgMTjT639_zoJw2wjfuIgPlHKnBSqzug1P0qyPHjLEkOzx_2cxsn8Rhy9vPbNNhHErV3zT_5AnHThPip8ClGhclfPdK01W7yaM8xg7STqzM3bTJvDUtEAPLo0dOdy8i2od7MA2okDkV5EmgnlRTdVB3qsavVH_TwyqBF3TKKKU9PXJQ3pJsjyITn_JM5R1Tgju2Lc_tw2HD7hCnUYkrAbRsnHa68uQpSLA&h=drvmEX0g759hGAe1aJSOlml_U72HXY_8YZ1gOlP3MW4 - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:14:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327096747014634&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=p57NpkbVd8kdmG43mfW9pajj8unraKp7V5GsOfDhnF4p70nE-t0OXl-NyqwJVRA7ewWOiELQOLuaiSYhdY8nLflAXuXSZxFs_LdMdfu3q-iNffOLXoLr0CH2tBKuqw_VDnmGiRUGmkX-4-7EdlsHp2BLYuELncp77RrJ82xNZPpejE4vZlbfYTi4qdfk0d5GvQ-U5uGIxK2Ej44VmrewRkCtXqgtHCWuVe3-ZA-O4mA9CmOas-DTxeeYjHSdac0J-FEVlbs9MrXcZTqyr72qhczaexRjf-RSZT_iyoz8ZYAIWrDGI0Crd8q5yif8ZMvCpr_r2nlpVsW54aZ7cIoZFQ&h=6XBFqGRB3AmT9M50ObllpV7fCv5-eQ51lTVbkzQr8EM - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 1f871e01-3979-4d96-ac66-4373a2477f1e - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327097055005047&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=C7hEKcCw_xHbtxq6bC3pkG07-uMHQRylrxrtKttNowBonHVC7UVhJxKUjqEApTXDkpTr6X52i6P0Ke8fJB5mCN5l98Wtmv44cKSQRfyqXnsx9L4rMwlXQkWrl0Gqe2IKNIWULnPD0CKATUUA_ii9EcdiJMEi1NRwWjIlo_tU1ItpXjTTbQHSBHp_Fdx7jJ8da_6L_OS8o45KMBcDClLLhr1Lqwxuo6I1g-YePn0pmQmqdy5pNJkm_TxHpmYnOPjUnFNaOaGtMNMxMfO2pnwWRWitRmYKz3vXAqIFT_M-mM40e_8rPHWyi17qXgZLQxZMY67fPwI__fCkiiDPy5lh7A&h=ougs-eMWzgDiKF8CpIafqDXFui4d8UENIxlQivUyiyw - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:15:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327097055005047&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=vMg4UUxLpqad4cWRIUA5MRkiMs9OV7C93oFmfPOpSSERPWJcNHjAIf57qndDRM37YF_lsqPmlLiWKOCP1WX2bvZSo8EARjEGp5tdM0Sthv3Ah8GDQjyt8JGkVIaILkQ8K5_TtFFPOHS-WsabrkvsreASrG84oEBxmVdwyPioFtKZHNTsg2dMBx6skLzXPZOTr41ldqXgiiJNxNAgMp08sGa-SR7La4Kz-C0TnmYP--mAA91N4-wo7Zs77BH5ZfatluHQpCz0h0DNOEZKqkaf0CRyqWmCb6uOwagB0RrkoSc8IohPesR7jnZJh6Y3Ou_uL_gYU2MigFMIib_T2IE8aQ&h=ssD1Eay7s2B45jP92VnYvHV-bkU7Xir0jfT717dKBQs - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 9b908444-6b84-4e6a-abfb-849122e82e4c - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327097362867539&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KR86tQdjCSztWietC3lSFiYlIQqk-JwVMKxuCh3Y9bnA7r_L7YlpjQAXQiNXD6eDMx0GmG6JcmuRfO2F5oLmVBbiBnOGb-v-O-P3GKJG7Vk5u1eRN1Oy2BBHLMT01fCx5ag3u6DZDqAjCLdOikFeMFYKVawn_dJjmmRkzim7g3ARSElPUGy5FR4U-u1Hk6UTOmhJ8xjy6Mz0uyjdIS97RZpCLNA7tv7cSvo1Ex84U4EWpGfjpWmCFv6P5NXMEQy9qmCRIZ02CFjW2-5R1L72B5qquKYnkodO29iH1Ou77uyN4GA4D7MufPlagi84Sg8Essa0aCqmwpF61mmESKcpag&h=4Eb-H2_ca2JX4dzASoX1v4HyNW-_uCETyceY-5zDO8I - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:15:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327097362867539&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iuucbU9eWRy1dNisTHsSgxC-7z3UtCbCXnS-2fxPbKYRWw1j6gMorQt0BNSpWWHiEBQVCrkdBI16aE_S3W1cToCSvg6OpSlm3maWROcg8lAwqIaxLL0riTkzeyrD0dJ22cAeQbBOpcHV9aYT_SM1pTb3xqRyRsi6gW0Ze9BjURMuZLuqM3eZGvR0bRTqaun6p7R66Av6Xe6_LhkHH60-4wEfof5Wb1D1VULub7SPMWp2XCi5USaH5pOzGwSv0DYCrtW3lddUIh6uSdaejfBQQEaZUjZ1DCqE7rPlW8SJM3hGDmVGlaX8YGIrGnjyR_u9Woamil3ycfYpmVepnc1aEg&h=NsElZuZnPvswZOAvhmJtWQCD9xy7CzkAkio7EFKzpDM - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 4563bf17-13ed-44de-a2f9-cf45adb57b0a - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327097673240343&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FbgjDCav-BoM6xXrL7mbfv-EbDCdnMEOrz3Uoc5ItD09ZuD_yN77dSVw6yQuJIKpOWNaL_53RxLPWvvunbi_IyIAeuzXTH9Fr22h7s_e0g38czrZGmj2LzDWxKe0zYXCSOdyG_wV7pkD7jLiN98Kshsy0fKxt3Ym6psBzdRd2zNpIMfJPuQMKhnYno3lCRMN9DWqh-xieUjjpIn42p3DylW5k2SFl8dTYE30WCMttKrhWwV6ebazzWjoaNwbIKLZcP7Z0P2wVxxXWY5Tsv1g1xF2nFNOANoVBJ_t9IZCQ8tp8zKacpBfGwaMtRS1MNfbLF2aEI3dZ0bWRaPzQ2ZLKQ&h=s-ArxdKi3_ozN4U1lxDY9rCc14fDuCpsa75mIUEGiuc - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327097673240343&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uTnRVDmb6cgoSV-jEcxdFg9x2eRlmIj4QGe4JCe24g7MUDVLrozoVLfut5V3CW5C9JQ-kyPtIttaJA7pE8dOy7Gvuhh3Z2L-sz5yHlbdNpSEEnu-J0KYlHiZtRxbPs-bQortyo39TyIFehAbwBZi0G-ahqBIVXUWG5i67BpSDQAX3ICL0enM2YIFVQ_LgLWylgMTvRz6o4g-3IT4qTl-gDaTHLOndurTN0XdaZIbXC3bZyXLz7u4RPeUKYkU1Uaec4ZpHkIHGB0JS0BZKrZBEWEXMl_4MjHCY00E-ZaPTPWj2Nxtr96WiICq18lvEuEzcmYMFZUr2HLrZ7TyFN2Zmg&h=nHjopQjFQnXNpUbKvcdaliQiq7oM0zBEn-6t06Pac0A - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 5177b0e1-c42f-4146-89bb-c0dce39363a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327097983597725&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=QDzAolLiswGYiIx5MkWcGKMhNFB29N3ajoheo5T73j0o-pzokG2Qnrebu5XhqZiiNvL2ttZem1byB36D-3eRQ5mF8evbguUwv8qZ-lhEbhKNATp8Qi2XLokhCwzAPkFbAaTSpGCOJI_2FCsvJsQyZSUs6koYRMCJ6iW5hOu74t3gqkjXVkT2cuN-thqsw-FN2-al7vwJWTtMRmK9AvKrrbui_xk9B_-Gni6d7JkS1bJXRuty_Iyn2ryHiTeSV-cimF2n2EBXJXAEe-v--vVi5WQONh3Qg3GVolzLHCNvTHwdwz9fqyXrtyZkNVMrLspBRY_gxXK8m_jq1ZipSTgDwQ&h=WgM2cJh7yCE4kkZNrZwMAwJhSXMF0p_06_DSkWDaDpM - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:16:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327097983597725&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dvbA6uDey0-8ts7xpTTDgAsl-SF97tBeGmsCgSU76EJuqp0bZAr29zGqiLoatGBD-VQPVAZeXKoQEHAu_ML7q0ZrwAShqgISsuYdhinaPl8Y8VfuC74HT8LQakisDyWoMz9FfpTijwCxK7UOnVFgvnaVQrzWD16cslK9WnIIWxp3_TCCFlzoGZu0oEcNAfo3DIc2RIHaL5Q4Uk_i55c2WZNQA11QYr1GquPuadDgIxHi3z2Fp7r72IcR-dtUi3trjW8OLP9gbE-PVTRgXoGKustDfvxVyA1PUoLVHl6ssexbOT4ZwKMd_2FoYiIJN2SHunWaEG26bQk8R9FwqBg47w&h=q5cQk2IIgRoHLMTSkhc17lLi2VFqh5i8lnSRnzMOCeA - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - a82aab7d-e41a-4a8b-99bd-e5299c852271 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327098291354847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y4XJ57FwWHDe97o04sY6DwiDex9D_5S4IK09nbp3UmVIX3V2sGfQ6uiQfzA3CW-AEgMlZXAJQN5zzLYvMWBmq08qPmVJzqK9RIwKTfdmNmqGjJcWqdGkwqP1yzQu-Dsdo5iIfvNzFNPOTWqDun-6zhUz4-qlmkx4njeEfAD1UQTYGFtDFmKwHAaBXiKtDIdIg1MjT40-lOUf1vXNZxfltHwo6fel8yzbmtFqs3qpxZvjcYXeFirQBMAkQRjNk_3qM2EJ9T1isLcjX9qKzaDQoikQrz6dovsOZXeb46FH3m2U6BgVGwzJSOPW-xqJyzdggVX-RkJzDegf4BE05ha7zA&h=qs2nWAltRXNXVsYlokKseJRIn8LBQU_KQSRsd7A-01M - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:17:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327098291510663&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=0q1yvwzkam3ugruyoKUpquwwfHtiTlEsJ7V-yw1LW11pOC9PQJa4CX_3dEIJ2f0ka0525Bl3qo96mMMPHD-rzi_cMfd01UQMBN0r8TKs30s0PUeoKZbAAg2XX1Bm8tq7x6kKNjnZlwcjRbIxoKpXOcuDt9qF9u-3eTyM0ETOKZkSFu6oW2F_Bknb6LWD3ETNVpp60qR1jWdo9F_ibkjztZ_sMi0-QZ8PSq3_p0Ghf6poJBVppThryS4vS8aIERVsFd__yz7cV_XjeqHQWj3jlb8jini3SC16-NGgz6bOIMS6lSRyLY83TnRiZCH_5VWhZZ1KG-XJgkLa_oCc9C-JNg&h=ENCDAo1w8sNVfGiCzfqM3-S9UqWdLWv9pk4mcoVSNLM - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 8709af39-57cf-4e84-94dd-dd61032ed960 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"InProgress\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327098601515017&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sbjsBvHloxvmI9IGmagfpR7Tj6QSSQ3NjYKF4cDHXoFoyIA4aKam8M6bL3abjEXuduD2KJfjCAO01Q0Bxx4T8x7LK0FLrBmgsRxT2j3TxeO69mRIJBln3SWNt942azlC-mDZCSjROX6mQOpfZfxiSK2IhbhJ2bG1O9t_PJbpi5qL9i9ho2fFbB6tvA_RIdkS8s4_nxvmLce_wLaNefAGO2VGHHxqpPFFwr-3GhNyNNVd3leOv5Nlo7UzkKKuHUfYwKnWjQ49catuNW3aZIRAtWNM48wdHAiRuyS-UIFE3YQyXGlWk2xN2mwJQUOyw4R4-n7W2wqmca5ZyxIuuqKr1w&h=AfgctjAIj66RiNhWPUuphGJEVJ75-N0kbC9GBki8Ghc - cache-control: - - no-cache - content-length: - - '302' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:17:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327098601515017&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iQOaynkk2VNTIVPxsHzRrfuemeyIsr-DCAjAC9x3tPDUMAE3F54wLu-f-wx8ZiE0mHuEqTpk283AvmXhShk8GKjNuKPWXCI75lCCoBJ-9Qt2_MEFyuxZTX8UxyIZHbWFFw0vsfjaa6haoGrsr6CsZ5H2BLYSEgmZ98J1Z0QURcohUnjwKVwMT1ZuSjncieoMYCcYpqNy_PHvO0N6R78Fmk_cqupUjKMlqcFWlVjV8NZx0WNDpGYjZIIJ0HwFhCJIwUrxVJGs-ACYjlw9KD_HpsOC12y-2DffFYUPaew6nOoMMDKSAnfo6wz47Pq5rDpWettdxKsldtetgnqIz0yhrA&h=YFrtxQ11oDuP7-BsNMojxL1CkSAlW4SLK6VfUdLybJ8 - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - d5636495-fe36-417a-af15-e0ca54f70b3b - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028433093&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hdNhyWz3DCIDhL6CMQS9Uuxz8W-rLi8eNXwAeZHKaAS1V7mlkYYj1l33a8OkN2zp61XKUpNK7uSfR-b3xlswApsINo3nde9E5BBNu5dmf6QTWXwyLUZFEBmf63kFy0mtbvnBKGVV0KYQBCGBTVXS3D3PsoIPv9ONS8beR3zvx3VJ2W2Ro2KUviUdcG4w7LLKJPj33JWiB0fCASIo6NkPbktpboXtRVv0cJ-YGNWVXdHtAUJnqPzPHeaUVJYvXVlabjKSf-PqBQ4DuTyXNg6D_fLTIG9ji77wzDK_xtPSoYwWCi-bIvxZ2GJtWw0mQpKX-kf4q-du74X-bOT59le2gQ&h=PV8XjnLRO2gDJtwUbD89iF01Ve_BNMbfb6OaoFX3qyQ - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af\",\n - \ \"name\": \"17266263-89bf-4314-8844-273508e7f4af\",\n \"status\": \"Succeeded\",\n - \ \"startTime\": \"2023-10-12 12:08:22 +0000\"\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327098912006143&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hkT1C5fQ27x13D0wNo4b-Ukx1dXaFiBsOn4bXKDjaKipUHZ2cawzD5hHMmw2BmkkGQ_JQoCr4VLHQsZqBb2--8Infmf4Xjcs6vWjqnVqUPv6AMefmpiYgWLrBqrQX7m9YJ-ZXZah1WB-pspXgfQttgy4GEWYe-wzOXgOLrr29qfEJjeQkTkCVpKlw8NwGtS9gHvvNPSx0757IXLFnGuJn5aqoFRGEHDySV6ZuP-BeZGqIFHRH4JxOrz2z76j3tUgoaloAQ3CBop-xhOQ3SvbUn0RtlSFAxLEQzjjLjY-FEQgiHVOrVxAfZ3XXbObcaf_Wz6184VAPzIpaSy3sTK3gg&h=0QBrHqV2S_an7T-24ehfOeEzsb3R6iSyb20xBwMe0mA - cache-control: - - no-cache - content-length: - - '301' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:18:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327098912162463&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=lMe9Nz80nq7Iqpq466ByxhODF8XLxVuvxqwlPnUIZxjrkuOTLkmMG9XfZc6GUGOvRFvk0u7JfJd5sT7LyBGciiDAVGfFI9bh7_m3CIuZiV1KBQwCbP3rSp7ZFsW4IMvDYIJoLM5NdIWq1wu-S1bQgYRTtttutIa684ucvZIVa65C-ocET1De9RCPAzrspLrjkgTh2GkVFc3JEsmWVodhFb2WU5OkpXiHpBileVoHVFpnnRKTCBQ0KhxJGu1sqHKSfvEnd33MTvIaCOBPZrLdTAFTNY3dj_TldMzqxlxBwnBRwU-ox5IfYds-CElxFNLjLBZFuwVAVkXCPJXc-vqfLw&h=T1UxE8zxRX_OqlifUMnrr-5vI1IVCPfiAonDe4b_xuk - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - f4549fbc-a24c-4a40-bb99-e00846384607 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongocluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327093028588803&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gKl0MwoUTiVtwgxuymqSHPU8P15xB74lh4fowLUU6ocPV8FTdoMXnQTVZtRv4tWc7YdxF-unuvSha1KSy7q93ItIFtRSj4z3oiotAswINdOahu3gnWiJ2QD0XJYHbIePh4Ql4Sckz-ho9hTbuWt0ofskrDsOP4MiqlxkrZqkUIw5R5uF4WYlpPPyhSiKZRG9IcqycwixImsnOsFvDh70at8qxQXIzlgkhMFw9qWH0z6GPu7RJpA_nZ5ME5WY8o6__anetp7aHs_PNpQqSOuSh8pBh6kOV2I2BrMA2VKq6v3pM20HQqKE2O0LCtfKi31p_8e2WZ7Rbkurn9sDTAMVDg&h=wFcKZHscCpWAXDpH0oROG4-EmkY_Yj2F_V1BLe5GCZo - response: - body: - string: '{ - - }' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterAzureAsyncOperation/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327098915600838&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I06aA1tpNqsbU9GWL4QOCbm-cMYaRWovwZkS8yq7cEX68kfoPLfcGmpVcs8ltzdGkHPZGvqIC6IE_UfUPitLsRorduSBXOhG2f8Ok-ny7i2K6wi8dvqJAZGzZ59jHEk4c2VjE_9t5Py4eQEIvNWJlmeGbrKOR9V_R3gH8jcRw-YFPVEWl_0SNudFQQta5tFja0Dt9PNm54jAgug_4VFqp6KpHKE7pPpaTi4kCelYB3MI4rZmkv89ipTSSgOzsyLfGxFKxM_xQG7D2V17wcP4KPMRaB3tx6UM09RW8IGJlkhpWZK5WSUQ6d0P6BWEw--KFbqIILkMj7QRuBjBGb9gfA&h=2BugTWkD43_MosbC18vdXAnDvSDFWNqMMzEuZulGGW4 - cache-control: - - no-cache - content-length: - - '3' - content-security-policy: - - default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src - 'self'; font-src 'self'; form-action 'self'; img-src 'self'; script-src 'self'; - style-src 'self'; upgrade-insecure-requests - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:18:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/mongoClusterOperationResults/17266263-89bf-4314-8844-273508e7f4af?api-version=2023-09-15-preview&t=638327098915600838&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=RbcEzpUgT69IoGuJBGlvMM9EeW41SxVxNcbupIMfKo0UYNehaGoFa5R4J0VzQuZZ8ArSvE0VfHDNowkAAoo1iQGNBGEHvK3aBA-vqjhTCiGiKT8An3gUGxsutRrD3p0FQWOmB_zDycH_ypnansc9MJ_m2jdBvTsISqN3TOEsKvHtSzyt_Xd-V4sBF_4seV7gI0sBPAN2leaNrT_naIgJ1fV_I7c_CUGS0t9e-gGhmmx67T1JhIjCdME3nGiS8bgywpPVbF2q9K2RYHYUBNd8b_Y6MT8xt0I_Cl9h-Bj0qGvvc93-xZ0HCwgsVDu4eo9ACz00ANpR5YXZ8V5AG448mA&h=8FVJsici3_sY0N6gomYo4jk3RyEAXDAFgihFCrlGe4A - pragma: - - no-cache - referrer-policy: - - same-origin - request-id: - - 759d21be-0303-41e1-a36a-d4c7999e0180 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-download-options: - - noopen - x-frame-options: - - DENY - x-permitted-cross-domain-policies: - - none - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml deleted file mode 100644 index 576f3018bf4..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml +++ /dev/null @@ -1,1236 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_collection000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001","name":"cli_test_cosmosdb_mongodb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_collection","date":"2023-10-12T10:52:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '432' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:52:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": - "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '355' - Content-Type: - - application/json - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:52:27.8500288Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:52:27.8500288Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:52:27.8500288Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.8500288Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.8500288Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview&t=638327047499358171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uIN_vXrZ2FqbH_OJhwwqpW3LtwnV54fEDL6Qi0DRV_mbz_ud_y2gJRUdmdq-zO2jVCHacdzEV6JueLyAO7ET2IE2yU3t2WZDNAlW_Dq9zJ-Iafxcn036oK560YZUuSbzGu2Iu3AF5SQ7ma6o5qXhtaavE9ab9XFZ9PiBo3uHBFBy3O2FKTmhPiEv6NyiHum5I9FuiTOkXfzAvqMPkV5yO7it5ZAA0_bzdDNw29Qr_goZVE3X36UGU2DXHgx6ZxK5us0fNonpCyZR5aVxg-irtTev2XxbXnI2mxCjMDsg22UxQRdoaBShloGNysQXlBGOPln-Fd5sp3NlrB_V-x8p6g&h=evAD50FLolKMrtVUdE9ihQeoaFHHubFkwxLr6dOjPCA - cache-control: - - no-store, no-cache - content-length: - - '2487' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview&t=638327047499358171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uIN_vXrZ2FqbH_OJhwwqpW3LtwnV54fEDL6Qi0DRV_mbz_ud_y2gJRUdmdq-zO2jVCHacdzEV6JueLyAO7ET2IE2yU3t2WZDNAlW_Dq9zJ-Iafxcn036oK560YZUuSbzGu2Iu3AF5SQ7ma6o5qXhtaavE9ab9XFZ9PiBo3uHBFBy3O2FKTmhPiEv6NyiHum5I9FuiTOkXfzAvqMPkV5yO7it5ZAA0_bzdDNw29Qr_goZVE3X36UGU2DXHgx6ZxK5us0fNonpCyZR5aVxg-irtTev2XxbXnI2mxCjMDsg22UxQRdoaBShloGNysQXlBGOPln-Fd5sp3NlrB_V-x8p6g&h=evAD50FLolKMrtVUdE9ihQeoaFHHubFkwxLr6dOjPCA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview&t=638327047499358171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uIN_vXrZ2FqbH_OJhwwqpW3LtwnV54fEDL6Qi0DRV_mbz_ud_y2gJRUdmdq-zO2jVCHacdzEV6JueLyAO7ET2IE2yU3t2WZDNAlW_Dq9zJ-Iafxcn036oK560YZUuSbzGu2Iu3AF5SQ7ma6o5qXhtaavE9ab9XFZ9PiBo3uHBFBy3O2FKTmhPiEv6NyiHum5I9FuiTOkXfzAvqMPkV5yO7it5ZAA0_bzdDNw29Qr_goZVE3X36UGU2DXHgx6ZxK5us0fNonpCyZR5aVxg-irtTev2XxbXnI2mxCjMDsg22UxQRdoaBShloGNysQXlBGOPln-Fd5sp3NlrB_V-x8p6g&h=evAD50FLolKMrtVUdE9ihQeoaFHHubFkwxLr6dOjPCA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview&t=638327047499358171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uIN_vXrZ2FqbH_OJhwwqpW3LtwnV54fEDL6Qi0DRV_mbz_ud_y2gJRUdmdq-zO2jVCHacdzEV6JueLyAO7ET2IE2yU3t2WZDNAlW_Dq9zJ-Iafxcn036oK560YZUuSbzGu2Iu3AF5SQ7ma6o5qXhtaavE9ab9XFZ9PiBo3uHBFBy3O2FKTmhPiEv6NyiHum5I9FuiTOkXfzAvqMPkV5yO7it5ZAA0_bzdDNw29Qr_goZVE3X36UGU2DXHgx6ZxK5us0fNonpCyZR5aVxg-irtTev2XxbXnI2mxCjMDsg22UxQRdoaBShloGNysQXlBGOPln-Fd5sp3NlrB_V-x8p6g&h=evAD50FLolKMrtVUdE9ihQeoaFHHubFkwxLr6dOjPCA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview&t=638327047499358171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uIN_vXrZ2FqbH_OJhwwqpW3LtwnV54fEDL6Qi0DRV_mbz_ud_y2gJRUdmdq-zO2jVCHacdzEV6JueLyAO7ET2IE2yU3t2WZDNAlW_Dq9zJ-Iafxcn036oK560YZUuSbzGu2Iu3AF5SQ7ma6o5qXhtaavE9ab9XFZ9PiBo3uHBFBy3O2FKTmhPiEv6NyiHum5I9FuiTOkXfzAvqMPkV5yO7it5ZAA0_bzdDNw29Qr_goZVE3X36UGU2DXHgx6ZxK5us0fNonpCyZR5aVxg-irtTev2XxbXnI2mxCjMDsg22UxQRdoaBShloGNysQXlBGOPln-Fd5sp3NlrB_V-x8p6g&h=evAD50FLolKMrtVUdE9ihQeoaFHHubFkwxLr6dOjPCA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview&t=638327047499358171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uIN_vXrZ2FqbH_OJhwwqpW3LtwnV54fEDL6Qi0DRV_mbz_ud_y2gJRUdmdq-zO2jVCHacdzEV6JueLyAO7ET2IE2yU3t2WZDNAlW_Dq9zJ-Iafxcn036oK560YZUuSbzGu2Iu3AF5SQ7ma6o5qXhtaavE9ab9XFZ9PiBo3uHBFBy3O2FKTmhPiEv6NyiHum5I9FuiTOkXfzAvqMPkV5yO7it5ZAA0_bzdDNw29Qr_goZVE3X36UGU2DXHgx6ZxK5us0fNonpCyZR5aVxg-irtTev2XxbXnI2mxCjMDsg22UxQRdoaBShloGNysQXlBGOPln-Fd5sp3NlrB_V-x8p6g&h=evAD50FLolKMrtVUdE9ihQeoaFHHubFkwxLr6dOjPCA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview&t=638327047499358171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uIN_vXrZ2FqbH_OJhwwqpW3LtwnV54fEDL6Qi0DRV_mbz_ud_y2gJRUdmdq-zO2jVCHacdzEV6JueLyAO7ET2IE2yU3t2WZDNAlW_Dq9zJ-Iafxcn036oK560YZUuSbzGu2Iu3AF5SQ7ma6o5qXhtaavE9ab9XFZ9PiBo3uHBFBy3O2FKTmhPiEv6NyiHum5I9FuiTOkXfzAvqMPkV5yO7it5ZAA0_bzdDNw29Qr_goZVE3X36UGU2DXHgx6ZxK5us0fNonpCyZR5aVxg-irtTev2XxbXnI2mxCjMDsg22UxQRdoaBShloGNysQXlBGOPln-Fd5sp3NlrB_V-x8p6g&h=evAD50FLolKMrtVUdE9ihQeoaFHHubFkwxLr6dOjPCA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8ad30e9-41ae-4704-b693-c8cd9a110f4b?api-version=2023-09-15-preview&t=638327047499358171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=uIN_vXrZ2FqbH_OJhwwqpW3LtwnV54fEDL6Qi0DRV_mbz_ud_y2gJRUdmdq-zO2jVCHacdzEV6JueLyAO7ET2IE2yU3t2WZDNAlW_Dq9zJ-Iafxcn036oK560YZUuSbzGu2Iu3AF5SQ7ma6o5qXhtaavE9ab9XFZ9PiBo3uHBFBy3O2FKTmhPiEv6NyiHum5I9FuiTOkXfzAvqMPkV5yO7it5ZAA0_bzdDNw29Qr_goZVE3X36UGU2DXHgx6ZxK5us0fNonpCyZR5aVxg-irtTev2XxbXnI2mxCjMDsg22UxQRdoaBShloGNysQXlBGOPln-Fd5sp3NlrB_V-x8p6g&h=evAD50FLolKMrtVUdE9ihQeoaFHHubFkwxLr6dOjPCA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:28.6978979Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:28.6978979Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:28.6978979Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:28.6978979Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:28.6978979Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2934' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:28.6978979Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:28.6978979Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:28.6978979Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:28.6978979Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:28.6978979Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2934' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000004"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8acbce6e-3975-4011-92d4-7901f42af006?api-version=2023-09-15&t=638327049361074676&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fsAX1jlN7EFMV6AEC6N3RaP-WArCncrHTthQGoRT_bu8glrhDmvxglSQVBZ5jUFwVPzQlAh5SQ02IvUviBNMdkrdgFfqZa6JTqbxbZJTHb-CDXSH0hsyWajYO_hOnHLLwer5sSgV9zqHb-sywdLQ2xwaxvcFKvVOcWbBY-eEuoruloKuaSdgZokUOAdsE3ojv4AyfIHuCHSW0Vzhy-X1P5jyQ6Aeemvhl-GNTI2FNval5r28ORlLhSQ-hZq8HkPC4ECU3QMmsbDWD-LnYnil3AEi1O6Uk3yEKLWX09BLD4qOjpJxPivGODctediQMpn7pkQ34xqQLtRKlXGIxmWiSQ&h=NIt9gzIK4I5Yz5DfzLpD8MzBqlLMMgh7-TAU575w1dM - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/8acbce6e-3975-4011-92d4-7901f42af006?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8acbce6e-3975-4011-92d4-7901f42af006?api-version=2023-09-15&t=638327049361074676&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fsAX1jlN7EFMV6AEC6N3RaP-WArCncrHTthQGoRT_bu8glrhDmvxglSQVBZ5jUFwVPzQlAh5SQ02IvUviBNMdkrdgFfqZa6JTqbxbZJTHb-CDXSH0hsyWajYO_hOnHLLwer5sSgV9zqHb-sywdLQ2xwaxvcFKvVOcWbBY-eEuoruloKuaSdgZokUOAdsE3ojv4AyfIHuCHSW0Vzhy-X1P5jyQ6Aeemvhl-GNTI2FNval5r28ORlLhSQ-hZq8HkPC4ECU3QMmsbDWD-LnYnil3AEi1O6Uk3yEKLWX09BLD4qOjpJxPivGODctediQMpn7pkQ34xqQLtRKlXGIxmWiSQ&h=NIt9gzIK4I5Yz5DfzLpD8MzBqlLMMgh7-TAU575w1dM - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8acbce6e-3975-4011-92d4-7901f42af006?api-version=2023-09-15&t=638327049361074676&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fsAX1jlN7EFMV6AEC6N3RaP-WArCncrHTthQGoRT_bu8glrhDmvxglSQVBZ5jUFwVPzQlAh5SQ02IvUviBNMdkrdgFfqZa6JTqbxbZJTHb-CDXSH0hsyWajYO_hOnHLLwer5sSgV9zqHb-sywdLQ2xwaxvcFKvVOcWbBY-eEuoruloKuaSdgZokUOAdsE3ojv4AyfIHuCHSW0Vzhy-X1P5jyQ6Aeemvhl-GNTI2FNval5r28ORlLhSQ-hZq8HkPC4ECU3QMmsbDWD-LnYnil3AEi1O6Uk3yEKLWX09BLD4qOjpJxPivGODctediQMpn7pkQ34xqQLtRKlXGIxmWiSQ&h=NIt9gzIK4I5Yz5DfzLpD8MzBqlLMMgh7-TAU575w1dM - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '331' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a6eec044-4c1a-425f-a520-22125a2341f1?api-version=2023-09-15&t=638327049704527434&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=e3AEqMAKcsLeh801zA1EUuipSo7yvFT4reeFdwp3byJrS-GUJz8BIzeEiHUFr-Qr_DriwxHmmqj_xO139Y_XPqqf4h7QO9KN3rLAH6Pzeb_45qhfGH6bLMTRHHHWX3ZfDtUPKbnwTXXPIxI1s96OkOb-H88V98g8rqWPdmFUAoDMvC1f2-mzi0K6IsXpOlprZf3ff1E3As5a_6OpuSpcbmfQ4KnjI3VZUwQapWzR4wb6RsJwxci_8cYGo9mZXkxA_K-3tkmzvFpZIDC6ttpABEV7hp4r5HGD3dV-SDHRlsUxhPtvkI3LriIpbZMnEshTQXv7sc3wb0xyd192I35I7A&h=NXc0EDDWILn-ctaM4ewv-ohysTFzxNDjh3LOaPq2wEw - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:10 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/a6eec044-4c1a-425f-a520-22125a2341f1?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a6eec044-4c1a-425f-a520-22125a2341f1?api-version=2023-09-15&t=638327049704527434&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=e3AEqMAKcsLeh801zA1EUuipSo7yvFT4reeFdwp3byJrS-GUJz8BIzeEiHUFr-Qr_DriwxHmmqj_xO139Y_XPqqf4h7QO9KN3rLAH6Pzeb_45qhfGH6bLMTRHHHWX3ZfDtUPKbnwTXXPIxI1s96OkOb-H88V98g8rqWPdmFUAoDMvC1f2-mzi0K6IsXpOlprZf3ff1E3As5a_6OpuSpcbmfQ4KnjI3VZUwQapWzR4wb6RsJwxci_8cYGo9mZXkxA_K-3tkmzvFpZIDC6ttpABEV7hp4r5HGD3dV-SDHRlsUxhPtvkI3LriIpbZMnEshTQXv7sc3wb0xyd192I35I7A&h=NXc0EDDWILn-ctaM4ewv-ohysTFzxNDjh3LOaPq2wEw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a6eec044-4c1a-425f-a520-22125a2341f1?api-version=2023-09-15&t=638327049704527434&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=e3AEqMAKcsLeh801zA1EUuipSo7yvFT4reeFdwp3byJrS-GUJz8BIzeEiHUFr-Qr_DriwxHmmqj_xO139Y_XPqqf4h7QO9KN3rLAH6Pzeb_45qhfGH6bLMTRHHHWX3ZfDtUPKbnwTXXPIxI1s96OkOb-H88V98g8rqWPdmFUAoDMvC1f2-mzi0K6IsXpOlprZf3ff1E3As5a_6OpuSpcbmfQ4KnjI3VZUwQapWzR4wb6RsJwxci_8cYGo9mZXkxA_K-3tkmzvFpZIDC6ttpABEV7hp4r5HGD3dV-SDHRlsUxhPtvkI3LriIpbZMnEshTQXv7sc3wb0xyd192I35I7A&h=NXc0EDDWILn-ctaM4ewv-ohysTFzxNDjh3LOaPq2wEw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '402' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '402' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '402' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/invalid?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"The collection ''cli000004''.''invalid'' - doesn''t exist.\r\nActivityId: 092e97fb-68ee-11ee-983e-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '176' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","indexes":[{"key":{"keys":["_id"]}}]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '414' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/05f03b4c-88eb-429c-8f20-a1874e83dbdd?api-version=2023-09-15&t=638327050107395205&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Z9Uidr8VKv591qfcxBz-Pq7903mAaXXm7njEHRRm_-mKc4KGW1FKhQ20ilAFVZ_viZaXX70g15NyYOPBHmnRAma4fuJE3OEk2yPCwzAK1ke_qe3jwHpFBkrPOaUbKc4Qu437C_I3hr9wheCCgU1qXDKIsmSwEOGWdpSESiqNuEqVVDZXnzTC4El-ZDaJpklKmczXpd8cYwghCD8DwJpuBQRYCgFtbhV1-keS5GauAAPIiPyrDW0sQz1qocrgrhJtPjevpGbW9lLDP0qTjMHvlUheUe_dWsKWAKXVoQeJdBzevwLjUb2_uL6UOSa9t-O_1v-kBZWon_qKOwTT-TiqwQ&h=wlgU7e1WuicfAyE8Tnnoeq1kwx_MJiNvoV2M1_mQHqU - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:50 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/05f03b4c-88eb-429c-8f20-a1874e83dbdd?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/05f03b4c-88eb-429c-8f20-a1874e83dbdd?api-version=2023-09-15&t=638327050107395205&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Z9Uidr8VKv591qfcxBz-Pq7903mAaXXm7njEHRRm_-mKc4KGW1FKhQ20ilAFVZ_viZaXX70g15NyYOPBHmnRAma4fuJE3OEk2yPCwzAK1ke_qe3jwHpFBkrPOaUbKc4Qu437C_I3hr9wheCCgU1qXDKIsmSwEOGWdpSESiqNuEqVVDZXnzTC4El-ZDaJpklKmczXpd8cYwghCD8DwJpuBQRYCgFtbhV1-keS5GauAAPIiPyrDW0sQz1qocrgrhJtPjevpGbW9lLDP0qTjMHvlUheUe_dWsKWAKXVoQeJdBzevwLjUb2_uL6UOSa9t-O_1v-kBZWon_qKOwTT-TiqwQ&h=wlgU7e1WuicfAyE8Tnnoeq1kwx_MJiNvoV2M1_mQHqU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/05f03b4c-88eb-429c-8f20-a1874e83dbdd?api-version=2023-09-15&t=638327050107395205&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Z9Uidr8VKv591qfcxBz-Pq7903mAaXXm7njEHRRm_-mKc4KGW1FKhQ20ilAFVZ_viZaXX70g15NyYOPBHmnRAma4fuJE3OEk2yPCwzAK1ke_qe3jwHpFBkrPOaUbKc4Qu437C_I3hr9wheCCgU1qXDKIsmSwEOGWdpSESiqNuEqVVDZXnzTC4El-ZDaJpklKmczXpd8cYwghCD8DwJpuBQRYCgFtbhV1-keS5GauAAPIiPyrDW0sQz1qocrgrhJtPjevpGbW9lLDP0qTjMHvlUheUe_dWsKWAKXVoQeJdBzevwLjUb2_uL6UOSa9t-O_1v-kBZWon_qKOwTT-TiqwQ&h=wlgU7e1WuicfAyE8Tnnoeq1kwx_MJiNvoV2M1_mQHqU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_adaptiveru.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_adaptiveru.yaml deleted file mode 100644 index a3f5804f141..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_adaptiveru.yaml +++ /dev/null @@ -1,1526 +0,0 @@ -interactions: -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/88c0dd9c-26a0-41fb-b304-ed718a8819a0?api-version=2023-09-15&t=638327090257160682&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=psTICpBQhzFOtH9kEv9OAqyF5HqRHcuptgp0TzoI7tps3TGEdlz__Dg052i7Wc87IMOU2a4kXl898d6gJobBGc26yQj3rYykQnl6k2D9JSs7mQfyc2FXEdIBEz047jHhrW4pwBuflkbR6AAemfa_vh0Jk4Qifvab_Ie9kXwY9cf6hB6643D6-VNt85Amx-rq2dYV3SV9bRm2DmZ0V2ramntMpBkoxJV0v_r9pPBqzFREJRnIMBQx_wmvv42FcARByivzCFVyx0rzfNvmCwr1uNsMp5ssNZQs4hDfARIup-1Cv1zYbpP3Jug9xTs2QjTecqiQlQCMWUFBTz6pHr5LMw&h=4cV0qvBljbt-m3_HLYRjJ6OVtTDJJaGstbSzQ1go_58 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:45 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/operationResults/88c0dd9c-26a0-41fb-b304-ed718a8819a0?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/88c0dd9c-26a0-41fb-b304-ed718a8819a0?api-version=2023-09-15&t=638327090257160682&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=psTICpBQhzFOtH9kEv9OAqyF5HqRHcuptgp0TzoI7tps3TGEdlz__Dg052i7Wc87IMOU2a4kXl898d6gJobBGc26yQj3rYykQnl6k2D9JSs7mQfyc2FXEdIBEz047jHhrW4pwBuflkbR6AAemfa_vh0Jk4Qifvab_Ie9kXwY9cf6hB6643D6-VNt85Amx-rq2dYV3SV9bRm2DmZ0V2ramntMpBkoxJV0v_r9pPBqzFREJRnIMBQx_wmvv42FcARByivzCFVyx0rzfNvmCwr1uNsMp5ssNZQs4hDfARIup-1Cv1zYbpP3Jug9xTs2QjTecqiQlQCMWUFBTz6pHr5LMw&h=4cV0qvBljbt-m3_HLYRjJ6OVtTDJJaGstbSzQ1go_58 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/88c0dd9c-26a0-41fb-b304-ed718a8819a0?api-version=2023-09-15&t=638327090257160682&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=psTICpBQhzFOtH9kEv9OAqyF5HqRHcuptgp0TzoI7tps3TGEdlz__Dg052i7Wc87IMOU2a4kXl898d6gJobBGc26yQj3rYykQnl6k2D9JSs7mQfyc2FXEdIBEz047jHhrW4pwBuflkbR6AAemfa_vh0Jk4Qifvab_Ie9kXwY9cf6hB6643D6-VNt85Amx-rq2dYV3SV9bRm2DmZ0V2ramntMpBkoxJV0v_r9pPBqzFREJRnIMBQx_wmvv42FcARByivzCFVyx0rzfNvmCwr1uNsMp5ssNZQs4hDfARIup-1Cv1zYbpP3Jug9xTs2QjTecqiQlQCMWUFBTz6pHr5LMw&h=4cV0qvBljbt-m3_HLYRjJ6OVtTDJJaGstbSzQ1go_58 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '299' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}}, "options": {"throughput": 18000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '120' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/f36244f3-17b4-42a8-838a-6659bba7bd3a?api-version=2023-09-15&t=638327090588174991&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Ai220ECi04zxeCagm8aIY-Q5hoBkc7hpnu_vE1Xlv7Mi_mPU4gWy-0THBqJytLEAF9Wr6hCfJV7WGXufhornqSAm3L-ESTR0fKzcfhCtWq-AEBBME3I7UwrqyKpfzxF1-BsDhcU9NyfPfVWz1igAt_YUr8GzocEl-QXEfz1G0OZvkZvR25RhL6HT3nWO8VGXR_HOJb7JgQSm-er6H8V7WxHV3bcqO3WcyJxnjgniMcK8eA7ZGrXRNVunpeWosMYaXzwM_xaaYZqfSuC18k9muJSiewSGYrXQsvPBjdUtMH76xzs0zNE1xZjoUVMpIlAbs5eDxaSBWzBZIFBS5ozyJA&h=b19sm_Amfx25ljV3RJmpN2kCQkdfM5gg6_kr8vgnF9A - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/operationResults/f36244f3-17b4-42a8-838a-6659bba7bd3a?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/f36244f3-17b4-42a8-838a-6659bba7bd3a?api-version=2023-09-15&t=638327090588174991&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Ai220ECi04zxeCagm8aIY-Q5hoBkc7hpnu_vE1Xlv7Mi_mPU4gWy-0THBqJytLEAF9Wr6hCfJV7WGXufhornqSAm3L-ESTR0fKzcfhCtWq-AEBBME3I7UwrqyKpfzxF1-BsDhcU9NyfPfVWz1igAt_YUr8GzocEl-QXEfz1G0OZvkZvR25RhL6HT3nWO8VGXR_HOJb7JgQSm-er6H8V7WxHV3bcqO3WcyJxnjgniMcK8eA7ZGrXRNVunpeWosMYaXzwM_xaaYZqfSuC18k9muJSiewSGYrXQsvPBjdUtMH76xzs0zNE1xZjoUVMpIlAbs5eDxaSBWzBZIFBS5ozyJA&h=b19sm_Amfx25ljV3RJmpN2kCQkdfM5gg6_kr8vgnF9A - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/f36244f3-17b4-42a8-838a-6659bba7bd3a?api-version=2023-09-15&t=638327090588174991&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Ai220ECi04zxeCagm8aIY-Q5hoBkc7hpnu_vE1Xlv7Mi_mPU4gWy-0THBqJytLEAF9Wr6hCfJV7WGXufhornqSAm3L-ESTR0fKzcfhCtWq-AEBBME3I7UwrqyKpfzxF1-BsDhcU9NyfPfVWz1igAt_YUr8GzocEl-QXEfz1G0OZvkZvR25RhL6HT3nWO8VGXR_HOJb7JgQSm-er6H8V7WxHV3bcqO3WcyJxnjgniMcK8eA7ZGrXRNVunpeWosMYaXzwM_xaaYZqfSuC18k9muJSiewSGYrXQsvPBjdUtMH76xzs0zNE1xZjoUVMpIlAbs5eDxaSBWzBZIFBS5ozyJA&h=b19sm_Amfx25ljV3RJmpN2kCQkdfM5gg6_kr8vgnF9A - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '404' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughput": 3000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection throughput update - Connection: - - keep-alive - Content-Length: - - '50' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/bb797ff5-ad6f-472d-b85a-7369c4bdef28?api-version=2023-09-15&t=638327090919527433&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=J8ewg76RJfFrfkw_JCbB12sZmnpHLk2IyqGJYSkAz-_zggNrZpoM0jlJdx6aYaq30Q2561fhw8YMN8zon2Uxj3JJOxBpCydDAm3jscL_s4hokKdi9_KrrUTCbOnDuUn2PBNNgc1IKwfqR1qvY_mioPsiR-_5uKCAXfN826jL-xf3upCvRf4YFMQnZPKKSC1_wqZtvg6KOHor5eR2xbq13s9ci8vtkuLqnMwnbcVicT2lUYOBPAd8ec5iqAbqm7wcSMrYDaxesLgE3jG9uuuLOtD_qzMOXYLne9Yqp5PM_ZCKaS3b_PbA7umiZtphs3jj0ok3ImFIR3gjd3pWcl8NpA&h=kxad_DV2mjMerhWN2zRncwHJF8QSt2hQFDjkfWDwANU - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:51 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/operationResults/bb797ff5-ad6f-472d-b85a-7369c4bdef28?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/bb797ff5-ad6f-472d-b85a-7369c4bdef28?api-version=2023-09-15&t=638327090919527433&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=J8ewg76RJfFrfkw_JCbB12sZmnpHLk2IyqGJYSkAz-_zggNrZpoM0jlJdx6aYaq30Q2561fhw8YMN8zon2Uxj3JJOxBpCydDAm3jscL_s4hokKdi9_KrrUTCbOnDuUn2PBNNgc1IKwfqR1qvY_mioPsiR-_5uKCAXfN826jL-xf3upCvRf4YFMQnZPKKSC1_wqZtvg6KOHor5eR2xbq13s9ci8vtkuLqnMwnbcVicT2lUYOBPAd8ec5iqAbqm7wcSMrYDaxesLgE3jG9uuuLOtD_qzMOXYLne9Yqp5PM_ZCKaS3b_PbA7umiZtphs3jj0ok3ImFIR3gjd3pWcl8NpA&h=kxad_DV2mjMerhWN2zRncwHJF8QSt2hQFDjkfWDwANU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/bb797ff5-ad6f-472d-b85a-7369c4bdef28?api-version=2023-09-15&t=638327090919527433&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=J8ewg76RJfFrfkw_JCbB12sZmnpHLk2IyqGJYSkAz-_zggNrZpoM0jlJdx6aYaq30Q2561fhw8YMN8zon2Uxj3JJOxBpCydDAm3jscL_s4hokKdi9_KrrUTCbOnDuUn2PBNNgc1IKwfqR1qvY_mioPsiR-_5uKCAXfN826jL-xf3upCvRf4YFMQnZPKKSC1_wqZtvg6KOHor5eR2xbq13s9ci8vtkuLqnMwnbcVicT2lUYOBPAd8ec5iqAbqm7wcSMrYDaxesLgE3jG9uuuLOtD_qzMOXYLne9Yqp5PM_ZCKaS3b_PbA7umiZtphs3jj0ok3ImFIR3gjd3pWcl8NpA&h=kxad_DV2mjMerhWN2zRncwHJF8QSt2hQFDjkfWDwANU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings","name":"dYl5","properties":{"resource":{"throughput":3000,"minimumThroughput":"400","instantMaximumThroughput":"30000","softAllowedMaximumThroughput":"100000"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '476' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '404' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"physicalPartitionIds": [{"id": "-1"}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - Content-Length: - - '70' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/retrieveThroughputDistribution?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/39bb8840-c8a3-40a1-b52d-00752286f409?api-version=2023-09-15-preview&t=638327091260934661&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=L5Gj0shRUb3NCLQhPLRzqKMhNQpWerkBrCv8I6ao3qeEci7Yq21NPqo3boxsemT46K1wKR-518nOUtpTqyLSIfGALSiMLojgPbBXCsSi_0G6FvrgqhYrJmdSs-ZXYSqVDYfxdiSwB8SNxhrH0zeYitUw5HmiMi1pbhWvOgfgT4NZAgTnz8Q3EI5MjuyTO3_olslzuQWIwYYe7fw-L_bDaJrxB7FcJzNCCLyWVtAauNbQR9AKqb5wnC0bfbFNo0pTHZPOAqGeEFozDv6aYv6B3yL_S_VFUkiWpKJfpi_JTqS99_dzM_XAYp_C2A5tIhY4Ifk-U4o9O0D1J4gnABCEfA&h=1CopiKJSR-kUhj7qLmNssmyvQ3CWvqOmMcRkHT0VBlc - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:25 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/retrieveThroughputDistribution/operationResults/39bb8840-c8a3-40a1-b52d-00752286f409?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/39bb8840-c8a3-40a1-b52d-00752286f409?api-version=2023-09-15-preview&t=638327091260934661&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=L5Gj0shRUb3NCLQhPLRzqKMhNQpWerkBrCv8I6ao3qeEci7Yq21NPqo3boxsemT46K1wKR-518nOUtpTqyLSIfGALSiMLojgPbBXCsSi_0G6FvrgqhYrJmdSs-ZXYSqVDYfxdiSwB8SNxhrH0zeYitUw5HmiMi1pbhWvOgfgT4NZAgTnz8Q3EI5MjuyTO3_olslzuQWIwYYe7fw-L_bDaJrxB7FcJzNCCLyWVtAauNbQR9AKqb5wnC0bfbFNo0pTHZPOAqGeEFozDv6aYv6B3yL_S_VFUkiWpKJfpi_JTqS99_dzM_XAYp_C2A5tIhY4Ifk-U4o9O0D1J4gnABCEfA&h=1CopiKJSR-kUhj7qLmNssmyvQ3CWvqOmMcRkHT0VBlc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/39bb8840-c8a3-40a1-b52d-00752286f409?api-version=2023-09-15-preview&t=638327091260934661&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=L5Gj0shRUb3NCLQhPLRzqKMhNQpWerkBrCv8I6ao3qeEci7Yq21NPqo3boxsemT46K1wKR-518nOUtpTqyLSIfGALSiMLojgPbBXCsSi_0G6FvrgqhYrJmdSs-ZXYSqVDYfxdiSwB8SNxhrH0zeYitUw5HmiMi1pbhWvOgfgT4NZAgTnz8Q3EI5MjuyTO3_olslzuQWIwYYe7fw-L_bDaJrxB7FcJzNCCLyWVtAauNbQR9AKqb5wnC0bfbFNo0pTHZPOAqGeEFozDv6aYv6B3yL_S_VFUkiWpKJfpi_JTqS99_dzM_XAYp_C2A5tIhY4Ifk-U4o9O0D1J4gnABCEfA&h=1CopiKJSR-kUhj7qLmNssmyvQ3CWvqOmMcRkHT0VBlc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/retrieveThroughputDistribution/operationResults/39bb8840-c8a3-40a1-b52d-00752286f409?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/retrieveThroughputDistribution","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/retrieveThroughputDistribution","name":"dYl5","properties":{"resource":{"physicalPartitionThroughputInfo":[{"throughput":1000.0,"id":"0"},{"throughput":1000.0,"id":"1"},{"throughput":1000.0,"id":"2"}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '548' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '404' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"physicalPartitionIds": [{"id": "0"}, {"id": - "1"}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/retrieveThroughputDistribution?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/39451f47-7fa9-41fa-9268-6dae727c145b?api-version=2023-09-15-preview&t=638327091602213538&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NBv8yktTh3eo6d-daWBkdbVKIf88e3fMUdTLBIglXl3oIbd4AaSK_M0H5XhgGEI5XroEqHs0hIQ1E-dX2i4sfsanHeq4qMyuJKBNFVZnh3brIdEiz5TgL1-i9148FRlonNIhJ0--wtEPI8-rMvmtOiLFZ5Bm3HZ7Pq65aXh6s-8PaWDD3fsFDGNIqUwSpIN8FKaj412B6DWi70yVLFxHJuscGMuSRZiw9cPWIp5RH0peLb87R6YeTJwXa94MQ6O2XUmTiIZGCjHNlR8YhzKO_JUdlzd7z-GjoxR1Sw0JnzcBTajg-O75vZ7htFV8H0i3pLUgetwDNA5iekTysfAydw&h=JHlkj2WZQPVU_Qbj96kKJiHdP7njS5CUEp41TQ-pWMQ - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:00 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/retrieveThroughputDistribution/operationResults/39451f47-7fa9-41fa-9268-6dae727c145b?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/39451f47-7fa9-41fa-9268-6dae727c145b?api-version=2023-09-15-preview&t=638327091602213538&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NBv8yktTh3eo6d-daWBkdbVKIf88e3fMUdTLBIglXl3oIbd4AaSK_M0H5XhgGEI5XroEqHs0hIQ1E-dX2i4sfsanHeq4qMyuJKBNFVZnh3brIdEiz5TgL1-i9148FRlonNIhJ0--wtEPI8-rMvmtOiLFZ5Bm3HZ7Pq65aXh6s-8PaWDD3fsFDGNIqUwSpIN8FKaj412B6DWi70yVLFxHJuscGMuSRZiw9cPWIp5RH0peLb87R6YeTJwXa94MQ6O2XUmTiIZGCjHNlR8YhzKO_JUdlzd7z-GjoxR1Sw0JnzcBTajg-O75vZ7htFV8H0i3pLUgetwDNA5iekTysfAydw&h=JHlkj2WZQPVU_Qbj96kKJiHdP7njS5CUEp41TQ-pWMQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/39451f47-7fa9-41fa-9268-6dae727c145b?api-version=2023-09-15-preview&t=638327091602213538&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NBv8yktTh3eo6d-daWBkdbVKIf88e3fMUdTLBIglXl3oIbd4AaSK_M0H5XhgGEI5XroEqHs0hIQ1E-dX2i4sfsanHeq4qMyuJKBNFVZnh3brIdEiz5TgL1-i9148FRlonNIhJ0--wtEPI8-rMvmtOiLFZ5Bm3HZ7Pq65aXh6s-8PaWDD3fsFDGNIqUwSpIN8FKaj412B6DWi70yVLFxHJuscGMuSRZiw9cPWIp5RH0peLb87R6YeTJwXa94MQ6O2XUmTiIZGCjHNlR8YhzKO_JUdlzd7z-GjoxR1Sw0JnzcBTajg-O75vZ7htFV8H0i3pLUgetwDNA5iekTysfAydw&h=JHlkj2WZQPVU_Qbj96kKJiHdP7njS5CUEp41TQ-pWMQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/retrieveThroughputDistribution/operationResults/39451f47-7fa9-41fa-9268-6dae727c145b?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/retrieveThroughputDistribution","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/retrieveThroughputDistribution","name":"dYl5","properties":{"resource":{"physicalPartitionThroughputInfo":[{"throughput":1000.0,"id":"0"},{"throughput":1000.0,"id":"1"}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '517' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '404' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughputPolicy": "custom", "targetPhysicalPartitionThroughputInfo": - [{"id": "0", "throughput": 1200.0}, {"id": "1", "throughput": 1200.0}], "sourcePhysicalPartitionThroughputInfo": - [{"id": "2", "throughput": 0.0}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - Content-Length: - - '248' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/redistributeThroughput?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/046bd11f-8af9-4268-810c-c01aec97f486?api-version=2023-09-15-preview&t=638327091940930944&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mfYHYmPw9HXDR2VcQERbtkBSUVOhkNUT9WSDG1PmVQVDXbt4JtveUNV8R--OmZKOQdZKTGPCHc8BmRQ10Pbq_LnRa_MUSbEClM-jqjfw317-uxd_eXyUvVSeBqifVP33rA9bvqwZZCtsLqmltrLmOeiwf6_dirswJkY4uAfvoiNcYLxhHL0ufPzkllhCmrEcFpMMorGagMJC7kCwsbM6DexIbzU1u7gv15H0HFoVd7vuZ4-i6CWHSKvEMNc0fjebMFUTYe6z7_FIt46Sz3L-sMBTsuT1VlQ5CHWVSOmKJIyaVMvf2uaQn_F0hzTOF3kO5JtzGfI-BCkX6C5tOTzvtA&h=27e2TkFubSaJELoxnjBiAMkZ9qR2mddZCeb8juw4OTo - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:33 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/redistributeThroughput/operationResults/046bd11f-8af9-4268-810c-c01aec97f486?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/046bd11f-8af9-4268-810c-c01aec97f486?api-version=2023-09-15-preview&t=638327091940930944&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mfYHYmPw9HXDR2VcQERbtkBSUVOhkNUT9WSDG1PmVQVDXbt4JtveUNV8R--OmZKOQdZKTGPCHc8BmRQ10Pbq_LnRa_MUSbEClM-jqjfw317-uxd_eXyUvVSeBqifVP33rA9bvqwZZCtsLqmltrLmOeiwf6_dirswJkY4uAfvoiNcYLxhHL0ufPzkllhCmrEcFpMMorGagMJC7kCwsbM6DexIbzU1u7gv15H0HFoVd7vuZ4-i6CWHSKvEMNc0fjebMFUTYe6z7_FIt46Sz3L-sMBTsuT1VlQ5CHWVSOmKJIyaVMvf2uaQn_F0hzTOF3kO5JtzGfI-BCkX6C5tOTzvtA&h=27e2TkFubSaJELoxnjBiAMkZ9qR2mddZCeb8juw4OTo - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/046bd11f-8af9-4268-810c-c01aec97f486?api-version=2023-09-15-preview&t=638327091940930944&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mfYHYmPw9HXDR2VcQERbtkBSUVOhkNUT9WSDG1PmVQVDXbt4JtveUNV8R--OmZKOQdZKTGPCHc8BmRQ10Pbq_LnRa_MUSbEClM-jqjfw317-uxd_eXyUvVSeBqifVP33rA9bvqwZZCtsLqmltrLmOeiwf6_dirswJkY4uAfvoiNcYLxhHL0ufPzkllhCmrEcFpMMorGagMJC7kCwsbM6DexIbzU1u7gv15H0HFoVd7vuZ4-i6CWHSKvEMNc0fjebMFUTYe6z7_FIt46Sz3L-sMBTsuT1VlQ5CHWVSOmKJIyaVMvf2uaQn_F0hzTOF3kO5JtzGfI-BCkX6C5tOTzvtA&h=27e2TkFubSaJELoxnjBiAMkZ9qR2mddZCeb8juw4OTo - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/redistributeThroughput/operationResults/046bd11f-8af9-4268-810c-c01aec97f486?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/redistributeThroughput","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/redistributeThroughput","name":"dYl5","properties":{"resource":{"physicalPartitionThroughputInfo":[{"throughput":1200.0,"id":"0"},{"throughput":1200.0,"id":"1"},{"throughput":599.99999999999966,"id":"2"}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '544' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '404' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughputPolicy": "equal", "targetPhysicalPartitionThroughputInfo": - [], "sourcePhysicalPartitionThroughputInfo": []}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - Content-Length: - - '149' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/redistributeThroughput?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/ecdf8beb-21dc-4193-8985-09317a61fb85?api-version=2023-09-15-preview&t=638327092276648122&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Bvxckz_7n-CB-a0OYuMc_pcoJFXeu6in7LmwfDguvSu-lv8Np8e6qsFU_8AhrR9e1prxW_U5zrk2eN7mhi8d_Wp1DUupjI13SxYcOQbuOV9TTfwUgQ5zotgOGRGVjLu3hr76tbET2cdubLrZwA4Iqo6F4YvuxxcLLAeKwH2cnUqAVHAnJCR2HroVqioNzbBrgel5oYOoPo8Xl3uuMsURq3IfWRUTgty5H-Zt2GusFZIDah2uJCmPpt7anT8YfuqLC1EMLuRL2BlmYCuscTbsBJC296Kusw5iBVrDT8R92PUMwd39zckGDaS8DB5NhZKO6vS4_81e3XLGf-QmDRmaJA&h=HCjDQr6YT7R87tf5ATHG7Q2mIELxkresXOjeiUUPlmI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:07 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/redistributeThroughput/operationResults/ecdf8beb-21dc-4193-8985-09317a61fb85?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/ecdf8beb-21dc-4193-8985-09317a61fb85?api-version=2023-09-15-preview&t=638327092276648122&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Bvxckz_7n-CB-a0OYuMc_pcoJFXeu6in7LmwfDguvSu-lv8Np8e6qsFU_8AhrR9e1prxW_U5zrk2eN7mhi8d_Wp1DUupjI13SxYcOQbuOV9TTfwUgQ5zotgOGRGVjLu3hr76tbET2cdubLrZwA4Iqo6F4YvuxxcLLAeKwH2cnUqAVHAnJCR2HroVqioNzbBrgel5oYOoPo8Xl3uuMsURq3IfWRUTgty5H-Zt2GusFZIDah2uJCmPpt7anT8YfuqLC1EMLuRL2BlmYCuscTbsBJC296Kusw5iBVrDT8R92PUMwd39zckGDaS8DB5NhZKO6vS4_81e3XLGf-QmDRmaJA&h=HCjDQr6YT7R87tf5ATHG7Q2mIELxkresXOjeiUUPlmI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/ecdf8beb-21dc-4193-8985-09317a61fb85?api-version=2023-09-15-preview&t=638327092276648122&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Bvxckz_7n-CB-a0OYuMc_pcoJFXeu6in7LmwfDguvSu-lv8Np8e6qsFU_8AhrR9e1prxW_U5zrk2eN7mhi8d_Wp1DUupjI13SxYcOQbuOV9TTfwUgQ5zotgOGRGVjLu3hr76tbET2cdubLrZwA4Iqo6F4YvuxxcLLAeKwH2cnUqAVHAnJCR2HroVqioNzbBrgel5oYOoPo8Xl3uuMsURq3IfWRUTgty5H-Zt2GusFZIDah2uJCmPpt7anT8YfuqLC1EMLuRL2BlmYCuscTbsBJC296Kusw5iBVrDT8R92PUMwd39zckGDaS8DB5NhZKO6vS4_81e3XLGf-QmDRmaJA&h=HCjDQr6YT7R87tf5ATHG7Q2mIELxkresXOjeiUUPlmI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/redistributeThroughput/operationResults/ecdf8beb-21dc-4193-8985-09317a61fb85?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest3/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/redistributeThroughput","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/redistributeThroughput","name":"dYl5","properties":{"resource":{"physicalPartitionThroughputInfo":[{"throughput":1000.0,"id":"0"},{"throughput":1000.0,"id":"1"},{"throughput":1000.0,"id":"2"}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '532' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_backupinfo.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_backupinfo.yaml deleted file mode 100644 index 35fe4b2390e..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_backupinfo.yaml +++ /dev/null @@ -1,1794 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DocumentDB/databaseAccounts/cli000004'' - under resource group ''cli_test_cosmosdb_mongodb_collection_backupinfo000001'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '272' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:23:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001","name":"cli_test_cosmosdb_mongodb_collection_backupinfo000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_collection_backupinfo","date":"2023-10-12T11:23:51Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '466' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:23:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "MongoDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '335' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:23:58.5036971Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"f482c138-b289-4c6f-be08-c6714a15de54","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:23:58.5036971Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:23:58.5036971Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:23:58.5036971Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:23:58.5036971Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/dbd2b2f6-6327-4c9f-bdb6-4d5f10d02be9?api-version=2023-09-15-preview&t=638327066401604340&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HSy01vFNLmJ8S8uPPKyKNrVUOcaZks32VwbN5pXRBkv6XQNEeXKw1jyDed3efWRRwEt8g0oDR-lTnto2cGTwAFxRYOh_pk1bW7c8vuDc22y5gsdoxdxrHt1GK-dhLlTTqeZJs8XRKS5RdgygIU78AkcsUn-ETGe0mbuJPKp9_u_UbPkYkMhEda0HC8AptxYkonGDTFPQvDR67Ocped-TEaiRGYUqPfz5EL1Uxt7J4tAKU72OdGEB4x_Z7ra9ZQ3vJZKzGK2fPvJvBNsH2gYkjHdMYQeQIx-igU209PirIadSjWh0zi-VEl3eEO4EyXynnMBURPTPsfeY2Vt9As-S5A&h=-Qq1dxJ2SenK2cgbWTO8Z2AsYQdjebrccPsmJZ_EMuE - cache-control: - - no-store, no-cache - content-length: - - '2512' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:59 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/dbd2b2f6-6327-4c9f-bdb6-4d5f10d02be9?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/dbd2b2f6-6327-4c9f-bdb6-4d5f10d02be9?api-version=2023-09-15-preview&t=638327066401604340&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HSy01vFNLmJ8S8uPPKyKNrVUOcaZks32VwbN5pXRBkv6XQNEeXKw1jyDed3efWRRwEt8g0oDR-lTnto2cGTwAFxRYOh_pk1bW7c8vuDc22y5gsdoxdxrHt1GK-dhLlTTqeZJs8XRKS5RdgygIU78AkcsUn-ETGe0mbuJPKp9_u_UbPkYkMhEda0HC8AptxYkonGDTFPQvDR67Ocped-TEaiRGYUqPfz5EL1Uxt7J4tAKU72OdGEB4x_Z7ra9ZQ3vJZKzGK2fPvJvBNsH2gYkjHdMYQeQIx-igU209PirIadSjWh0zi-VEl3eEO4EyXynnMBURPTPsfeY2Vt9As-S5A&h=-Qq1dxJ2SenK2cgbWTO8Z2AsYQdjebrccPsmJZ_EMuE - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/dbd2b2f6-6327-4c9f-bdb6-4d5f10d02be9?api-version=2023-09-15-preview&t=638327066401604340&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HSy01vFNLmJ8S8uPPKyKNrVUOcaZks32VwbN5pXRBkv6XQNEeXKw1jyDed3efWRRwEt8g0oDR-lTnto2cGTwAFxRYOh_pk1bW7c8vuDc22y5gsdoxdxrHt1GK-dhLlTTqeZJs8XRKS5RdgygIU78AkcsUn-ETGe0mbuJPKp9_u_UbPkYkMhEda0HC8AptxYkonGDTFPQvDR67Ocped-TEaiRGYUqPfz5EL1Uxt7J4tAKU72OdGEB4x_Z7ra9ZQ3vJZKzGK2fPvJvBNsH2gYkjHdMYQeQIx-igU209PirIadSjWh0zi-VEl3eEO4EyXynnMBURPTPsfeY2Vt9As-S5A&h=-Qq1dxJ2SenK2cgbWTO8Z2AsYQdjebrccPsmJZ_EMuE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/dbd2b2f6-6327-4c9f-bdb6-4d5f10d02be9?api-version=2023-09-15-preview&t=638327066401604340&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HSy01vFNLmJ8S8uPPKyKNrVUOcaZks32VwbN5pXRBkv6XQNEeXKw1jyDed3efWRRwEt8g0oDR-lTnto2cGTwAFxRYOh_pk1bW7c8vuDc22y5gsdoxdxrHt1GK-dhLlTTqeZJs8XRKS5RdgygIU78AkcsUn-ETGe0mbuJPKp9_u_UbPkYkMhEda0HC8AptxYkonGDTFPQvDR67Ocped-TEaiRGYUqPfz5EL1Uxt7J4tAKU72OdGEB4x_Z7ra9ZQ3vJZKzGK2fPvJvBNsH2gYkjHdMYQeQIx-igU209PirIadSjWh0zi-VEl3eEO4EyXynnMBURPTPsfeY2Vt9As-S5A&h=-Qq1dxJ2SenK2cgbWTO8Z2AsYQdjebrccPsmJZ_EMuE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/dbd2b2f6-6327-4c9f-bdb6-4d5f10d02be9?api-version=2023-09-15-preview&t=638327066401604340&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HSy01vFNLmJ8S8uPPKyKNrVUOcaZks32VwbN5pXRBkv6XQNEeXKw1jyDed3efWRRwEt8g0oDR-lTnto2cGTwAFxRYOh_pk1bW7c8vuDc22y5gsdoxdxrHt1GK-dhLlTTqeZJs8XRKS5RdgygIU78AkcsUn-ETGe0mbuJPKp9_u_UbPkYkMhEda0HC8AptxYkonGDTFPQvDR67Ocped-TEaiRGYUqPfz5EL1Uxt7J4tAKU72OdGEB4x_Z7ra9ZQ3vJZKzGK2fPvJvBNsH2gYkjHdMYQeQIx-igU209PirIadSjWh0zi-VEl3eEO4EyXynnMBURPTPsfeY2Vt9As-S5A&h=-Qq1dxJ2SenK2cgbWTO8Z2AsYQdjebrccPsmJZ_EMuE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/dbd2b2f6-6327-4c9f-bdb6-4d5f10d02be9?api-version=2023-09-15-preview&t=638327066401604340&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HSy01vFNLmJ8S8uPPKyKNrVUOcaZks32VwbN5pXRBkv6XQNEeXKw1jyDed3efWRRwEt8g0oDR-lTnto2cGTwAFxRYOh_pk1bW7c8vuDc22y5gsdoxdxrHt1GK-dhLlTTqeZJs8XRKS5RdgygIU78AkcsUn-ETGe0mbuJPKp9_u_UbPkYkMhEda0HC8AptxYkonGDTFPQvDR67Ocped-TEaiRGYUqPfz5EL1Uxt7J4tAKU72OdGEB4x_Z7ra9ZQ3vJZKzGK2fPvJvBNsH2gYkjHdMYQeQIx-igU209PirIadSjWh0zi-VEl3eEO4EyXynnMBURPTPsfeY2Vt9As-S5A&h=-Qq1dxJ2SenK2cgbWTO8Z2AsYQdjebrccPsmJZ_EMuE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/dbd2b2f6-6327-4c9f-bdb6-4d5f10d02be9?api-version=2023-09-15-preview&t=638327066401604340&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HSy01vFNLmJ8S8uPPKyKNrVUOcaZks32VwbN5pXRBkv6XQNEeXKw1jyDed3efWRRwEt8g0oDR-lTnto2cGTwAFxRYOh_pk1bW7c8vuDc22y5gsdoxdxrHt1GK-dhLlTTqeZJs8XRKS5RdgygIU78AkcsUn-ETGe0mbuJPKp9_u_UbPkYkMhEda0HC8AptxYkonGDTFPQvDR67Ocped-TEaiRGYUqPfz5EL1Uxt7J4tAKU72OdGEB4x_Z7ra9ZQ3vJZKzGK2fPvJvBNsH2gYkjHdMYQeQIx-igU209PirIadSjWh0zi-VEl3eEO4EyXynnMBURPTPsfeY2Vt9As-S5A&h=-Qq1dxJ2SenK2cgbWTO8Z2AsYQdjebrccPsmJZ_EMuE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:25:52.6731826Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","mongoEndpoint":"https://cli000004.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"f482c138-b289-4c6f-be08-c6714a15de54","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2962' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:25:52.6731826Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","mongoEndpoint":"https://cli000004.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"f482c138-b289-4c6f-be08-c6714a15de54","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2962' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:25:52.6731826Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","mongoEndpoint":"https://cli000004.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"f482c138-b289-4c6f-be08-c6714a15de54","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:25:52.6731826Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2962' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"the database cli000003 doesn''t exist.\r\nActivityId: - 32dec5ed-68f2-11ee-8991-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '162' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/27bbc317-87b6-4b5f-a977-47f12f1fd57f?api-version=2023-09-15&t=638327067980702929&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Puw3TayFl1m_o6E3AsAT0IK8oXPhm6Aqr-cHRjOc84OBxz7DRBnQeCNBhr0iR6eFcJ0vSHm_srGNFDW3pGWJilgnCgOcTqUc8eBtoSdvbknEQeRDqx11iqAraZij3g32q_7PvYv0WiNmxh90JVTQR2BFDeRvo3yynHG9hi98csOHFihQmpykqghUcba_LPC6ZwE_sc9oRA-bEAwxi7vqwshqEdhD0NdrIyGb1Ro_VmkaIeWawO_4ULlwGn5Z0lE_Tk10MWO_9xOIGmWQVnEUkPswkVrAkTmevLkxvxbk4-H8udWMbNa4ZR_rGGxWcjge9MD_Rcq-WcIEO5LYkZGaiQ&h=Lnzf_sb0x0-Dz2YJhW_dKX4JqKJQq3l1sBftUkIJjsY - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:37 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/operationResults/27bbc317-87b6-4b5f-a977-47f12f1fd57f?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/27bbc317-87b6-4b5f-a977-47f12f1fd57f?api-version=2023-09-15&t=638327067980702929&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Puw3TayFl1m_o6E3AsAT0IK8oXPhm6Aqr-cHRjOc84OBxz7DRBnQeCNBhr0iR6eFcJ0vSHm_srGNFDW3pGWJilgnCgOcTqUc8eBtoSdvbknEQeRDqx11iqAraZij3g32q_7PvYv0WiNmxh90JVTQR2BFDeRvo3yynHG9hi98csOHFihQmpykqghUcba_LPC6ZwE_sc9oRA-bEAwxi7vqwshqEdhD0NdrIyGb1Ro_VmkaIeWawO_4ULlwGn5Z0lE_Tk10MWO_9xOIGmWQVnEUkPswkVrAkTmevLkxvxbk4-H8udWMbNa4ZR_rGGxWcjge9MD_Rcq-WcIEO5LYkZGaiQ&h=Lnzf_sb0x0-Dz2YJhW_dKX4JqKJQq3l1sBftUkIJjsY - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/27bbc317-87b6-4b5f-a977-47f12f1fd57f?api-version=2023-09-15&t=638327067980702929&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Puw3TayFl1m_o6E3AsAT0IK8oXPhm6Aqr-cHRjOc84OBxz7DRBnQeCNBhr0iR6eFcJ0vSHm_srGNFDW3pGWJilgnCgOcTqUc8eBtoSdvbknEQeRDqx11iqAraZij3g32q_7PvYv0WiNmxh90JVTQR2BFDeRvo3yynHG9hi98csOHFihQmpykqghUcba_LPC6ZwE_sc9oRA-bEAwxi7vqwshqEdhD0NdrIyGb1Ro_VmkaIeWawO_4ULlwGn5Z0lE_Tk10MWO_9xOIGmWQVnEUkPswkVrAkTmevLkxvxbk4-H8udWMbNa4ZR_rGGxWcjge9MD_Rcq-WcIEO5LYkZGaiQ&h=Lnzf_sb0x0-Dz2YJhW_dKX4JqKJQq3l1sBftUkIJjsY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '342' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '342' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"The collection ''cli000003''.''cli000002'' - doesn''t exist.\r\nActivityId: 4863a9fd-68f2-11ee-9837-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '178' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}}, "options": {"throughput": 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '119' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/5e12912a-f013-46b8-87ed-fbb5e5f1fc23?api-version=2023-09-15&t=638327068342753206&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=XPBXI9-lip22inO7c1uR5CXZSugmDw41hI_-zeh3gv-sG7qGHsPBVERL1-eaDZbAEDKrgrDMDF7QZOZnvRksYm19YNbmhio4eGiKxyw7bCos7p29q4tIA2jMvVg7bWC_hQauaha3Fs6_vUMDj6SAuCf4djP6aJI8gO4MmdH_X3N0NkQnH-R3n3wNGpEr9-0HY2IxP4QM6GnP7ehdilWS_sfbjzv_aRCn6IL5kTNKeHgxo2YwjOqrDp6Ik_ShvcxMI_cOPgnm1ny9GwM6ovm6dynIouhbnCadhcV0s50l73EwgAeZUgnd21pd42xLP5KqoFGBV-B_sbZvvvHBrHSFCA&h=IiMciuj0i25R5YnYSM7RZWXd5nQGl7ZqGWkH2a3bHio - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:14 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/operationResults/5e12912a-f013-46b8-87ed-fbb5e5f1fc23?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/5e12912a-f013-46b8-87ed-fbb5e5f1fc23?api-version=2023-09-15&t=638327068342753206&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=XPBXI9-lip22inO7c1uR5CXZSugmDw41hI_-zeh3gv-sG7qGHsPBVERL1-eaDZbAEDKrgrDMDF7QZOZnvRksYm19YNbmhio4eGiKxyw7bCos7p29q4tIA2jMvVg7bWC_hQauaha3Fs6_vUMDj6SAuCf4djP6aJI8gO4MmdH_X3N0NkQnH-R3n3wNGpEr9-0HY2IxP4QM6GnP7ehdilWS_sfbjzv_aRCn6IL5kTNKeHgxo2YwjOqrDp6Ik_ShvcxMI_cOPgnm1ny9GwM6ovm6dynIouhbnCadhcV0s50l73EwgAeZUgnd21pd42xLP5KqoFGBV-B_sbZvvvHBrHSFCA&h=IiMciuj0i25R5YnYSM7RZWXd5nQGl7ZqGWkH2a3bHio - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/5e12912a-f013-46b8-87ed-fbb5e5f1fc23?api-version=2023-09-15&t=638327068342753206&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=XPBXI9-lip22inO7c1uR5CXZSugmDw41hI_-zeh3gv-sG7qGHsPBVERL1-eaDZbAEDKrgrDMDF7QZOZnvRksYm19YNbmhio4eGiKxyw7bCos7p29q4tIA2jMvVg7bWC_hQauaha3Fs6_vUMDj6SAuCf4djP6aJI8gO4MmdH_X3N0NkQnH-R3n3wNGpEr9-0HY2IxP4QM6GnP7ehdilWS_sfbjzv_aRCn6IL5kTNKeHgxo2YwjOqrDp6Ik_ShvcxMI_cOPgnm1ny9GwM6ovm6dynIouhbnCadhcV0s50l73EwgAeZUgnd21pd42xLP5KqoFGBV-B_sbZvvvHBrHSFCA&h=IiMciuj0i25R5YnYSM7RZWXd5nQGl7ZqGWkH2a3bHio - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '447' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '342' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '447' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:48 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/229feddc-b851-4c0c-9c30-60b480f62452?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/229feddc-b851-4c0c-9c30-60b480f62452?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:49 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/229feddc-b851-4c0c-9c30-60b480f62452?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/229feddc-b851-4c0c-9c30-60b480f62452?api-version=2023-09-15 - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:27:54 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '342' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '447' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:23 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/e2b53130-6461-4bbd-a542-bdf3d109f683?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/e2b53130-6461-4bbd-a542-bdf3d109f683?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:24 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/e2b53130-6461-4bbd-a542-bdf3d109f683?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/e2b53130-6461-4bbd-a542-bdf3d109f683?api-version=2023-09-15 - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:28:30 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '342' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '447' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:57 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/b7b5fafb-4619-42f8-8a42-2266add351ab?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/b7b5fafb-4619-42f8-8a42-2266add351ab?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:58 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/b7b5fafb-4619-42f8-8a42-2266add351ab?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000003/collections/cli000002/retrieveContinuousBackupInformation/operationResults/b7b5fafb-4619-42f8-8a42-2266add351ab?api-version=2023-09-15 - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:29:03 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_merge.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_merge.yaml deleted file mode 100644 index 61dc7ffa295..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection_merge.yaml +++ /dev/null @@ -1,1111 +0,0 @@ -interactions: -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/987d5dc6-daf6-4220-b0ad-118cbb3e5c83?api-version=2023-09-15&t=638327054721344866&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HS2-ziKz2mgWutswwxqjHcz4juVIw8aB_9qlyjGGP7EE1ZOtwc570f0WjnpD4YPMPJdDe63XfX91W6oH7-GtxTGCdA3UumFaKKY63uXnn4BNcPnoKszxAsdpPsWjwv8f7JXRW500TIJJj01Rqm0IcfCdKQ88Z1Uz40aorv67sr9DuBKZNz8k0qDID1oc4f6q-rV0iVHKR1zBrBlhw6QxXiH_hWmY7ZCUHqMhkLTxuVPR8RD-Qk7aPcuznFdE9FTXFz5fmPQOmquqk2JEytS0j0sK4pdTSWmLyt0OXjhU_vd5JBCGRNU5veqsKO81rN3Q1XZhORG74p99YwycaONiAQ&h=lQ52dIiwawKuoidYUatkpC-mUJOfG7AZWw3jecswMcE - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:31 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/operationResults/987d5dc6-daf6-4220-b0ad-118cbb3e5c83?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/987d5dc6-daf6-4220-b0ad-118cbb3e5c83?api-version=2023-09-15&t=638327054721344866&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HS2-ziKz2mgWutswwxqjHcz4juVIw8aB_9qlyjGGP7EE1ZOtwc570f0WjnpD4YPMPJdDe63XfX91W6oH7-GtxTGCdA3UumFaKKY63uXnn4BNcPnoKszxAsdpPsWjwv8f7JXRW500TIJJj01Rqm0IcfCdKQ88Z1Uz40aorv67sr9DuBKZNz8k0qDID1oc4f6q-rV0iVHKR1zBrBlhw6QxXiH_hWmY7ZCUHqMhkLTxuVPR8RD-Qk7aPcuznFdE9FTXFz5fmPQOmquqk2JEytS0j0sK4pdTSWmLyt0OXjhU_vd5JBCGRNU5veqsKO81rN3Q1XZhORG74p99YwycaONiAQ&h=lQ52dIiwawKuoidYUatkpC-mUJOfG7AZWw3jecswMcE - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/987d5dc6-daf6-4220-b0ad-118cbb3e5c83?api-version=2023-09-15&t=638327054721344866&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=HS2-ziKz2mgWutswwxqjHcz4juVIw8aB_9qlyjGGP7EE1ZOtwc570f0WjnpD4YPMPJdDe63XfX91W6oH7-GtxTGCdA3UumFaKKY63uXnn4BNcPnoKszxAsdpPsWjwv8f7JXRW500TIJJj01Rqm0IcfCdKQ88Z1Uz40aorv67sr9DuBKZNz8k0qDID1oc4f6q-rV0iVHKR1zBrBlhw6QxXiH_hWmY7ZCUHqMhkLTxuVPR8RD-Qk7aPcuznFdE9FTXFz5fmPQOmquqk2JEytS0j0sK4pdTSWmLyt0OXjhU_vd5JBCGRNU5veqsKO81rN3Q1XZhORG74p99YwycaONiAQ&h=lQ52dIiwawKuoidYUatkpC-mUJOfG7AZWw3jecswMcE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '300' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}}, "options": {"throughput": 20000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '120' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/24e6240d-707f-47ee-a06c-29e8622d8de8?api-version=2023-09-15&t=638327055055385662&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=IlkDNxkFlys1eAyriF7_gQp4NwwxzI1PnVUphEC1SlNfiAKwiY11wWxwN0Zu9jqCKkeYv7DXM1-FUZ53ZMIR5c5Uzqk1zsJnMOQ49FfEJwxBor-wtfpPyokxFsC-IaxiYm-Jd4wqfJflze3gXk9qNmw3DxVRB8MknmidIH-wNYmONnKTc6u_F4W1r_N1kHK2GU722V6Isrd6pwxKp5SqP_pPfw-HhYeincMW1A6-tSk5GEYqeCvfixbgHpBdO6h816IOJ_sVc9uG1uMNw9os0-tw0lEWClVRvq_kni868DW2CFIGbpy62bfbaBiTS_SNFRQtWHIs9U6vouui2g7Tug&h=ccYKctvZ-4_WsHu7IY3XBVRd_BZMlDPdZnGUkNR8b3Y - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:04 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/operationResults/24e6240d-707f-47ee-a06c-29e8622d8de8?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/24e6240d-707f-47ee-a06c-29e8622d8de8?api-version=2023-09-15&t=638327055055385662&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=IlkDNxkFlys1eAyriF7_gQp4NwwxzI1PnVUphEC1SlNfiAKwiY11wWxwN0Zu9jqCKkeYv7DXM1-FUZ53ZMIR5c5Uzqk1zsJnMOQ49FfEJwxBor-wtfpPyokxFsC-IaxiYm-Jd4wqfJflze3gXk9qNmw3DxVRB8MknmidIH-wNYmONnKTc6u_F4W1r_N1kHK2GU722V6Isrd6pwxKp5SqP_pPfw-HhYeincMW1A6-tSk5GEYqeCvfixbgHpBdO6h816IOJ_sVc9uG1uMNw9os0-tw0lEWClVRvq_kni868DW2CFIGbpy62bfbaBiTS_SNFRQtWHIs9U6vouui2g7Tug&h=ccYKctvZ-4_WsHu7IY3XBVRd_BZMlDPdZnGUkNR8b3Y - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/24e6240d-707f-47ee-a06c-29e8622d8de8?api-version=2023-09-15&t=638327055055385662&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=IlkDNxkFlys1eAyriF7_gQp4NwwxzI1PnVUphEC1SlNfiAKwiY11wWxwN0Zu9jqCKkeYv7DXM1-FUZ53ZMIR5c5Uzqk1zsJnMOQ49FfEJwxBor-wtfpPyokxFsC-IaxiYm-Jd4wqfJflze3gXk9qNmw3DxVRB8MknmidIH-wNYmONnKTc6u_F4W1r_N1kHK2GU722V6Isrd6pwxKp5SqP_pPfw-HhYeincMW1A6-tSk5GEYqeCvfixbgHpBdO6h816IOJ_sVc9uG1uMNw9os0-tw0lEWClVRvq_kni868DW2CFIGbpy62bfbaBiTS_SNFRQtWHIs9U6vouui2g7Tug&h=ccYKctvZ-4_WsHu7IY3XBVRd_BZMlDPdZnGUkNR8b3Y - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '405' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughput": 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection throughput update - Connection: - - keep-alive - Content-Length: - - '50' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7879dbf5-d5a0-461e-9b4b-9f7007ceed3b?api-version=2023-09-15&t=638327055400924992&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jjhtD9_Te9iMux5TcJKKqaMum1rcRHr91KfLnwucsK7nC5aYcoifEv9T7jbEMNGsG437yGF05K6RjyUXkNHUMI77Eq09K6gxxyIPgSz2lV2q8bO8Y8A8Rridtg9p8_VfK-gnogR0fOAbMzFqtKzNxvkHpQCdw5rx2JJsW2fr39Joyfy--b72Sa4dkig0N1LJFyPXvQ9GHYvOseO-O0K96ncdNfH68XEkphvbj20TLmnsLsXPKO5pmWJF-sg_iwUDvgw5IApLop4Fstw2yevqqQ9UkyuikF6sdGEqi1hfAa5XQKfW6aIPtZBxuxzzdnw8koHjljPwWI-cBoJWeJ7ICA&h=Dc7u0bg7bbTaBRojya51AfO-RpJx6AxKtwny19fBeHU - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:39 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default/operationResults/7879dbf5-d5a0-461e-9b4b-9f7007ceed3b?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7879dbf5-d5a0-461e-9b4b-9f7007ceed3b?api-version=2023-09-15&t=638327055400924992&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jjhtD9_Te9iMux5TcJKKqaMum1rcRHr91KfLnwucsK7nC5aYcoifEv9T7jbEMNGsG437yGF05K6RjyUXkNHUMI77Eq09K6gxxyIPgSz2lV2q8bO8Y8A8Rridtg9p8_VfK-gnogR0fOAbMzFqtKzNxvkHpQCdw5rx2JJsW2fr39Joyfy--b72Sa4dkig0N1LJFyPXvQ9GHYvOseO-O0K96ncdNfH68XEkphvbj20TLmnsLsXPKO5pmWJF-sg_iwUDvgw5IApLop4Fstw2yevqqQ9UkyuikF6sdGEqi1hfAa5XQKfW6aIPtZBxuxzzdnw8koHjljPwWI-cBoJWeJ7ICA&h=Dc7u0bg7bbTaBRojya51AfO-RpJx6AxKtwny19fBeHU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7879dbf5-d5a0-461e-9b4b-9f7007ceed3b?api-version=2023-09-15&t=638327055400924992&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jjhtD9_Te9iMux5TcJKKqaMum1rcRHr91KfLnwucsK7nC5aYcoifEv9T7jbEMNGsG437yGF05K6RjyUXkNHUMI77Eq09K6gxxyIPgSz2lV2q8bO8Y8A8Rridtg9p8_VfK-gnogR0fOAbMzFqtKzNxvkHpQCdw5rx2JJsW2fr39Joyfy--b72Sa4dkig0N1LJFyPXvQ9GHYvOseO-O0K96ncdNfH68XEkphvbj20TLmnsLsXPKO5pmWJF-sg_iwUDvgw5IApLop4Fstw2yevqqQ9UkyuikF6sdGEqi1hfAa5XQKfW6aIPtZBxuxzzdnw8koHjljPwWI-cBoJWeJ7ICA&h=Dc7u0bg7bbTaBRojya51AfO-RpJx6AxKtwny19fBeHU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings","name":"zqK4","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","instantMaximumThroughput":"40000","softAllowedMaximumThroughput":"100000"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '477' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '405' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"isDryRun": false}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - Content-Length: - - '19' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:17 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:48 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:49 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:20 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:50 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:21 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:51 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:22 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest2/mongodbDatabases/cli000003/collections/cli000002/partitionMerge/operationResults/d402bd6f-5c9a-42b1-9fff-f5b9e41e4a5f?api-version=2023-09-15-preview - response: - body: - string: '{"physicalPartitionStorageInfoCollection":[{"storageInKB":0.0,"id":"4"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '73' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml deleted file mode 100644 index f1274146dcf..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml +++ /dev/null @@ -1,1046 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_database000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001","name":"cli_test_cosmosdb_mongodb_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_database","date":"2023-10-12T10:57:31Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '426' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:57:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": - "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '355' - Content-Type: - - application/json - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:57:44.1318548Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:57:44.1318548Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:57:44.1318548Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:57:44.1318548Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:57:44.1318548Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/191dc5a6-46e1-4b88-9d35-756f89fe1a18?api-version=2023-09-15-preview&t=638327050665191530&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gL2mQ185T6ootMrnuyFxWiO62ke2a1LhecAm5_cO8_XFAJN5ouVGQPeoWh7Jby4rY8LfgTZjybyL9YKtsK7XVOTuGrZjD4bjWlog2mVN63mek6gxeLmsdrbO488BRnuy4CHpj07MC31D458oylOuLXhcyHwY1W9Hj7dlRNzrZLBgdpYx6XmVK1QVSgVLSfcfUa2mpzgTIOp-mV_YE_quKfHBZtKLCOgYcRY_tXWwDGGJzUgAKq73lYzKLrNacqEh0XjG-dYD-rLFHSnCo4wu8VkHOLiWmGYOQYJCWChP2suZORNslyEoiSRTODm9JK39ZZHBRd391KRxHUpbgCCrfQ&h=waO-aX-7mm9mc5zGU-18jlvmLmEAWGQepdvAguimsLo - cache-control: - - no-store, no-cache - content-length: - - '2485' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:45 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/191dc5a6-46e1-4b88-9d35-756f89fe1a18?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/191dc5a6-46e1-4b88-9d35-756f89fe1a18?api-version=2023-09-15-preview&t=638327050665191530&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gL2mQ185T6ootMrnuyFxWiO62ke2a1LhecAm5_cO8_XFAJN5ouVGQPeoWh7Jby4rY8LfgTZjybyL9YKtsK7XVOTuGrZjD4bjWlog2mVN63mek6gxeLmsdrbO488BRnuy4CHpj07MC31D458oylOuLXhcyHwY1W9Hj7dlRNzrZLBgdpYx6XmVK1QVSgVLSfcfUa2mpzgTIOp-mV_YE_quKfHBZtKLCOgYcRY_tXWwDGGJzUgAKq73lYzKLrNacqEh0XjG-dYD-rLFHSnCo4wu8VkHOLiWmGYOQYJCWChP2suZORNslyEoiSRTODm9JK39ZZHBRd391KRxHUpbgCCrfQ&h=waO-aX-7mm9mc5zGU-18jlvmLmEAWGQepdvAguimsLo - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/191dc5a6-46e1-4b88-9d35-756f89fe1a18?api-version=2023-09-15-preview&t=638327050665191530&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gL2mQ185T6ootMrnuyFxWiO62ke2a1LhecAm5_cO8_XFAJN5ouVGQPeoWh7Jby4rY8LfgTZjybyL9YKtsK7XVOTuGrZjD4bjWlog2mVN63mek6gxeLmsdrbO488BRnuy4CHpj07MC31D458oylOuLXhcyHwY1W9Hj7dlRNzrZLBgdpYx6XmVK1QVSgVLSfcfUa2mpzgTIOp-mV_YE_quKfHBZtKLCOgYcRY_tXWwDGGJzUgAKq73lYzKLrNacqEh0XjG-dYD-rLFHSnCo4wu8VkHOLiWmGYOQYJCWChP2suZORNslyEoiSRTODm9JK39ZZHBRd391KRxHUpbgCCrfQ&h=waO-aX-7mm9mc5zGU-18jlvmLmEAWGQepdvAguimsLo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/191dc5a6-46e1-4b88-9d35-756f89fe1a18?api-version=2023-09-15-preview&t=638327050665191530&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gL2mQ185T6ootMrnuyFxWiO62ke2a1LhecAm5_cO8_XFAJN5ouVGQPeoWh7Jby4rY8LfgTZjybyL9YKtsK7XVOTuGrZjD4bjWlog2mVN63mek6gxeLmsdrbO488BRnuy4CHpj07MC31D458oylOuLXhcyHwY1W9Hj7dlRNzrZLBgdpYx6XmVK1QVSgVLSfcfUa2mpzgTIOp-mV_YE_quKfHBZtKLCOgYcRY_tXWwDGGJzUgAKq73lYzKLrNacqEh0XjG-dYD-rLFHSnCo4wu8VkHOLiWmGYOQYJCWChP2suZORNslyEoiSRTODm9JK39ZZHBRd391KRxHUpbgCCrfQ&h=waO-aX-7mm9mc5zGU-18jlvmLmEAWGQepdvAguimsLo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/191dc5a6-46e1-4b88-9d35-756f89fe1a18?api-version=2023-09-15-preview&t=638327050665191530&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gL2mQ185T6ootMrnuyFxWiO62ke2a1LhecAm5_cO8_XFAJN5ouVGQPeoWh7Jby4rY8LfgTZjybyL9YKtsK7XVOTuGrZjD4bjWlog2mVN63mek6gxeLmsdrbO488BRnuy4CHpj07MC31D458oylOuLXhcyHwY1W9Hj7dlRNzrZLBgdpYx6XmVK1QVSgVLSfcfUa2mpzgTIOp-mV_YE_quKfHBZtKLCOgYcRY_tXWwDGGJzUgAKq73lYzKLrNacqEh0XjG-dYD-rLFHSnCo4wu8VkHOLiWmGYOQYJCWChP2suZORNslyEoiSRTODm9JK39ZZHBRd391KRxHUpbgCCrfQ&h=waO-aX-7mm9mc5zGU-18jlvmLmEAWGQepdvAguimsLo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/191dc5a6-46e1-4b88-9d35-756f89fe1a18?api-version=2023-09-15-preview&t=638327050665191530&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gL2mQ185T6ootMrnuyFxWiO62ke2a1LhecAm5_cO8_XFAJN5ouVGQPeoWh7Jby4rY8LfgTZjybyL9YKtsK7XVOTuGrZjD4bjWlog2mVN63mek6gxeLmsdrbO488BRnuy4CHpj07MC31D458oylOuLXhcyHwY1W9Hj7dlRNzrZLBgdpYx6XmVK1QVSgVLSfcfUa2mpzgTIOp-mV_YE_quKfHBZtKLCOgYcRY_tXWwDGGJzUgAKq73lYzKLrNacqEh0XjG-dYD-rLFHSnCo4wu8VkHOLiWmGYOQYJCWChP2suZORNslyEoiSRTODm9JK39ZZHBRd391KRxHUpbgCCrfQ&h=waO-aX-7mm9mc5zGU-18jlvmLmEAWGQepdvAguimsLo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/191dc5a6-46e1-4b88-9d35-756f89fe1a18?api-version=2023-09-15-preview&t=638327050665191530&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=gL2mQ185T6ootMrnuyFxWiO62ke2a1LhecAm5_cO8_XFAJN5ouVGQPeoWh7Jby4rY8LfgTZjybyL9YKtsK7XVOTuGrZjD4bjWlog2mVN63mek6gxeLmsdrbO488BRnuy4CHpj07MC31D458oylOuLXhcyHwY1W9Hj7dlRNzrZLBgdpYx6XmVK1QVSgVLSfcfUa2mpzgTIOp-mV_YE_quKfHBZtKLCOgYcRY_tXWwDGGJzUgAKq73lYzKLrNacqEh0XjG-dYD-rLFHSnCo4wu8VkHOLiWmGYOQYJCWChP2suZORNslyEoiSRTODm9JK39ZZHBRd391KRxHUpbgCCrfQ&h=waO-aX-7mm9mc5zGU-18jlvmLmEAWGQepdvAguimsLo - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:59:44.0738752Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:59:44.0738752Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:59:44.0738752Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:59:44.0738752Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:59:44.0738752Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2932' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:59:44.0738752Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:59:44.0738752Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:59:44.0738752Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:59:44.0738752Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:59:44.0738752Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2932' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"the database cli000002 doesn''t exist.\r\nActivityId: - 8868b28c-68ee-11ee-81bd-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '162' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bdecd81a-b3d8-44ec-8f00-b23d37daefee?api-version=2023-09-15&t=638327052237692709&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=joe1CKrJ2Bi1rlFfAZ4PvGMJtX0GgoS21sezTBPyxdyqRIorJXMyCIZHVblyFVUMu_-H_q-DIYmoSwjxAdOHB-e17xgvxPFbnh3bYuR-7KtFNxwPyPTIrpyOvtGlv7Lz6VWHy-c9BoVoDxRe5_V6bghBWRm0JY6klUnvmP_uiQsaDQ8IOoWU1GTpm1qUu_OvX6x2LUVyKAcPoE6kZC5GZKKgJZsh1OeRXzXuD_ZoR4LeixowU17FjZOsdSugz7lEcby9MbtPWOfGD73GKn-fUD9nVkHehMaSL_Hh8Xv6aKLM1JY5GsYzfxVQBMHVjaJF4Jlg-3oz3Cl8dRdX2-FmDw&h=XTnsp0uY_zqA1jqJU_SRNcrThJpzxbhpHaXxog8MAQI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:23 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002/operationResults/bdecd81a-b3d8-44ec-8f00-b23d37daefee?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bdecd81a-b3d8-44ec-8f00-b23d37daefee?api-version=2023-09-15&t=638327052237692709&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=joe1CKrJ2Bi1rlFfAZ4PvGMJtX0GgoS21sezTBPyxdyqRIorJXMyCIZHVblyFVUMu_-H_q-DIYmoSwjxAdOHB-e17xgvxPFbnh3bYuR-7KtFNxwPyPTIrpyOvtGlv7Lz6VWHy-c9BoVoDxRe5_V6bghBWRm0JY6klUnvmP_uiQsaDQ8IOoWU1GTpm1qUu_OvX6x2LUVyKAcPoE6kZC5GZKKgJZsh1OeRXzXuD_ZoR4LeixowU17FjZOsdSugz7lEcby9MbtPWOfGD73GKn-fUD9nVkHehMaSL_Hh8Xv6aKLM1JY5GsYzfxVQBMHVjaJF4Jlg-3oz3Cl8dRdX2-FmDw&h=XTnsp0uY_zqA1jqJU_SRNcrThJpzxbhpHaXxog8MAQI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bdecd81a-b3d8-44ec-8f00-b23d37daefee?api-version=2023-09-15&t=638327052237692709&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=joe1CKrJ2Bi1rlFfAZ4PvGMJtX0GgoS21sezTBPyxdyqRIorJXMyCIZHVblyFVUMu_-H_q-DIYmoSwjxAdOHB-e17xgvxPFbnh3bYuR-7KtFNxwPyPTIrpyOvtGlv7Lz6VWHy-c9BoVoDxRe5_V6bghBWRm0JY6klUnvmP_uiQsaDQ8IOoWU1GTpm1qUu_OvX6x2LUVyKAcPoE6kZC5GZKKgJZsh1OeRXzXuD_ZoR4LeixowU17FjZOsdSugz7lEcby9MbtPWOfGD73GKn-fUD9nVkHehMaSL_Hh8Xv6aKLM1JY5GsYzfxVQBMHVjaJF4Jlg-3oz3Cl8dRdX2-FmDw&h=XTnsp0uY_zqA1jqJU_SRNcrThJpzxbhpHaXxog8MAQI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '329' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '329' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '341' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '329' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ddd16b5a-5cb0-481c-a13e-241754ec3985?api-version=2023-09-15&t=638327052647256846&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=s7_5McjVM5Abix-fqTXU67fYMO252LHt32xL54XPblNduIduE2MlJZSwsWtZlEvb1g8DXKEWqhATXzljDVlpxUjrB4xFk8M9ZXjwlk7_DtMR0UQDeBjpG5lHjK7tza7yQHy2Q55XCv9hTyPmgMPlv258KvPeL7rjXAgnrMQyoxqHubWwCjWaVKgi1Ov7m0zhFC5qeE2EwK5VxnJ3fPzKzh5I-9115NMsNHiidjQXUunUeMUCH77SnP7u5BJHEsEptuFAX2baHL_OrbUv6xc0Z3o9jeDku_jHPHNKNNFL3D7cUiec0ivlQSOJ4vRme231WjLk_OeAwLUxbxZLm6Dzhw&h=b5D75Ps0k1QicAKfsIjJanddEtxBdVNcMOOZQ7GYQOI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:04 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002/operationResults/ddd16b5a-5cb0-481c-a13e-241754ec3985?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ddd16b5a-5cb0-481c-a13e-241754ec3985?api-version=2023-09-15&t=638327052647256846&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=s7_5McjVM5Abix-fqTXU67fYMO252LHt32xL54XPblNduIduE2MlJZSwsWtZlEvb1g8DXKEWqhATXzljDVlpxUjrB4xFk8M9ZXjwlk7_DtMR0UQDeBjpG5lHjK7tza7yQHy2Q55XCv9hTyPmgMPlv258KvPeL7rjXAgnrMQyoxqHubWwCjWaVKgi1Ov7m0zhFC5qeE2EwK5VxnJ3fPzKzh5I-9115NMsNHiidjQXUunUeMUCH77SnP7u5BJHEsEptuFAX2baHL_OrbUv6xc0Z3o9jeDku_jHPHNKNNFL3D7cUiec0ivlQSOJ4vRme231WjLk_OeAwLUxbxZLm6Dzhw&h=b5D75Ps0k1QicAKfsIjJanddEtxBdVNcMOOZQ7GYQOI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ddd16b5a-5cb0-481c-a13e-241754ec3985?api-version=2023-09-15&t=638327052647256846&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=s7_5McjVM5Abix-fqTXU67fYMO252LHt32xL54XPblNduIduE2MlJZSwsWtZlEvb1g8DXKEWqhATXzljDVlpxUjrB4xFk8M9ZXjwlk7_DtMR0UQDeBjpG5lHjK7tza7yQHy2Q55XCv9hTyPmgMPlv258KvPeL7rjXAgnrMQyoxqHubWwCjWaVKgi1Ov7m0zhFC5qeE2EwK5VxnJ3fPzKzh5I-9115NMsNHiidjQXUunUeMUCH77SnP7u5BJHEsEptuFAX2baHL_OrbUv6xc0Z3o9jeDku_jHPHNKNNFL3D7cUiec0ivlQSOJ4vRme231WjLk_OeAwLUxbxZLm6Dzhw&h=b5D75Ps0k1QicAKfsIjJanddEtxBdVNcMOOZQ7GYQOI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database_merge.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database_merge.yaml deleted file mode 100644 index 408dc997333..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database_merge.yaml +++ /dev/null @@ -1,936 +0,0 @@ -interactions: -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"throughput": - 20000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '83' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/02fc0065-05b5-45cf-b448-230f1ad52ff0?api-version=2023-09-15&t=638327055388846794&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=GBgYUWbXNLWGhLwuuLUPKRSvXTR3CFBwYo0m4PA4N5wnVWT0EKywlnAxipOUteK9nf3Y4Wixhp7GPGGoYJCsvj-M-Tc7KC53gU0Y6e-B1pc1jSkkLAB1vX0zEzrwe3Zg6khSg3UNLbyY9Zngpi4YDG-Bqv6SGSGZXVnAtoWYOUi0nU5mksRQ2mBjjIYWtUDn4i34L58L85tehWBgFgfRAY_JzmTw3v-W55zGtDTiIuUVsD3--zhjNIRjuIcu46CVZpmJd59jrJOdHBpsbaaGbnCh_AX7IDlxvqx06nXjPr-WUK_bjql-etj4Xw_0EhIcXskR8BCMzQEEcKP9cbVbdA&h=sNmfl4bAm3d56icP1pf3p7L6A_Sfh-MIPfhm7m8CeU8 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:38 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/operationResults/02fc0065-05b5-45cf-b448-230f1ad52ff0?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/02fc0065-05b5-45cf-b448-230f1ad52ff0?api-version=2023-09-15&t=638327055388846794&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=GBgYUWbXNLWGhLwuuLUPKRSvXTR3CFBwYo0m4PA4N5wnVWT0EKywlnAxipOUteK9nf3Y4Wixhp7GPGGoYJCsvj-M-Tc7KC53gU0Y6e-B1pc1jSkkLAB1vX0zEzrwe3Zg6khSg3UNLbyY9Zngpi4YDG-Bqv6SGSGZXVnAtoWYOUi0nU5mksRQ2mBjjIYWtUDn4i34L58L85tehWBgFgfRAY_JzmTw3v-W55zGtDTiIuUVsD3--zhjNIRjuIcu46CVZpmJd59jrJOdHBpsbaaGbnCh_AX7IDlxvqx06nXjPr-WUK_bjql-etj4Xw_0EhIcXskR8BCMzQEEcKP9cbVbdA&h=sNmfl4bAm3d56icP1pf3p7L6A_Sfh-MIPfhm7m8CeU8 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/02fc0065-05b5-45cf-b448-230f1ad52ff0?api-version=2023-09-15&t=638327055388846794&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=GBgYUWbXNLWGhLwuuLUPKRSvXTR3CFBwYo0m4PA4N5wnVWT0EKywlnAxipOUteK9nf3Y4Wixhp7GPGGoYJCsvj-M-Tc7KC53gU0Y6e-B1pc1jSkkLAB1vX0zEzrwe3Zg6khSg3UNLbyY9Zngpi4YDG-Bqv6SGSGZXVnAtoWYOUi0nU5mksRQ2mBjjIYWtUDn4i34L58L85tehWBgFgfRAY_JzmTw3v-W55zGtDTiIuUVsD3--zhjNIRjuIcu46CVZpmJd59jrJOdHBpsbaaGbnCh_AX7IDlxvqx06nXjPr-WUK_bjql-etj4Xw_0EhIcXskR8BCMzQEEcKP9cbVbdA&h=sNmfl4bAm3d56icP1pf3p7L6A_Sfh-MIPfhm7m8CeU8 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '302' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '101' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9c9a3ee3-3691-4577-b853-247411cad633?api-version=2023-09-15&t=638327055725004374&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Z9v_OGcnYLuzB2lnX3918ZFiK-_hyc_sRsisC4vvjWAoh8SGAHrDXTeFyP91ktJGYktGxllx21thQ5K30_AuzwllfBpsMhzriHhzGYKMyE0VeOvtNxoVFdZmdOOhCIhih3qKkpYp0I9U-admoGIDyxQgby6PvPLeRGPcAyAWbqC5ygMTl_tswPv6Khai0Qf129t148IT8DRR4MWLBFkacHt2jtu__XLYXRqCf8mPPrOlu_3HSJs65UVvlAoutqUgmCfJno_hcNDBpbKSrTPH5wEUZ4bkqswfsjK17140hJF-dfdGSHsmQVjV76SkccWXwJuy4cqc-WgPYrLaFmlM6Q&h=omFPRQHWmHmYPFiAfhomTZmZJFTOwloxJ60yKnVHm4Y - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:11 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/collections/cli000002/operationResults/9c9a3ee3-3691-4577-b853-247411cad633?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9c9a3ee3-3691-4577-b853-247411cad633?api-version=2023-09-15&t=638327055725004374&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Z9v_OGcnYLuzB2lnX3918ZFiK-_hyc_sRsisC4vvjWAoh8SGAHrDXTeFyP91ktJGYktGxllx21thQ5K30_AuzwllfBpsMhzriHhzGYKMyE0VeOvtNxoVFdZmdOOhCIhih3qKkpYp0I9U-admoGIDyxQgby6PvPLeRGPcAyAWbqC5ygMTl_tswPv6Khai0Qf129t148IT8DRR4MWLBFkacHt2jtu__XLYXRqCf8mPPrOlu_3HSJs65UVvlAoutqUgmCfJno_hcNDBpbKSrTPH5wEUZ4bkqswfsjK17140hJF-dfdGSHsmQVjV76SkccWXwJuy4cqc-WgPYrLaFmlM6Q&h=omFPRQHWmHmYPFiAfhomTZmZJFTOwloxJ60yKnVHm4Y - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9c9a3ee3-3691-4577-b853-247411cad633?api-version=2023-09-15&t=638327055725004374&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Z9v_OGcnYLuzB2lnX3918ZFiK-_hyc_sRsisC4vvjWAoh8SGAHrDXTeFyP91ktJGYktGxllx21thQ5K30_AuzwllfBpsMhzriHhzGYKMyE0VeOvtNxoVFdZmdOOhCIhih3qKkpYp0I9U-admoGIDyxQgby6PvPLeRGPcAyAWbqC5ygMTl_tswPv6Khai0Qf129t148IT8DRR4MWLBFkacHt2jtu__XLYXRqCf8mPPrOlu_3HSJs65UVvlAoutqUgmCfJno_hcNDBpbKSrTPH5wEUZ4bkqswfsjK17140hJF-dfdGSHsmQVjV76SkccWXwJuy4cqc-WgPYrLaFmlM6Q&h=omFPRQHWmHmYPFiAfhomTZmZJFTOwloxJ60yKnVHm4Y - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '407' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughput": 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database throughput update - Connection: - - keep-alive - Content-Length: - - '50' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d78ae794-01cd-4c95-884a-524b618c78f0?api-version=2023-09-15&t=638327056077605205&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=WF334crWrUrdTja30kICPk6nqTtrXDVzRl3ULuAMqXURqBsQWNo7cLTiMoj8mbD4wvj0zkWo6kuAdIcz3PM7WMyZi0p5VWXMFtTg0vpTKm5PUnYBbw0hcp3XwpvBQgIEORFOAyHC88KLJQbGsU3zcdseUZSAKR6Wbtu0Vsf_RXEBKCXj2v46qakFeMrIj1XOnM9eAPJL-Aebnirya9KCHEiYPunuc3MEpq-wnBDWIZO7JB14JigmAJ-bSFW_VNZGT81yYuk2oqET62nxD0TEeHoSuQFELefbNWKgxcE9S9GVe0TQtYwIbezlRHvYyYyUBn2ETfYf9Yw2HuAIPjuYfQ&h=SUbYn9-Xi0xEWtF5eALPrnNucXDmVe20s2HeW8CCNOg - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:47 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/throughputSettings/default/operationResults/d78ae794-01cd-4c95-884a-524b618c78f0?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d78ae794-01cd-4c95-884a-524b618c78f0?api-version=2023-09-15&t=638327056077605205&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=WF334crWrUrdTja30kICPk6nqTtrXDVzRl3ULuAMqXURqBsQWNo7cLTiMoj8mbD4wvj0zkWo6kuAdIcz3PM7WMyZi0p5VWXMFtTg0vpTKm5PUnYBbw0hcp3XwpvBQgIEORFOAyHC88KLJQbGsU3zcdseUZSAKR6Wbtu0Vsf_RXEBKCXj2v46qakFeMrIj1XOnM9eAPJL-Aebnirya9KCHEiYPunuc3MEpq-wnBDWIZO7JB14JigmAJ-bSFW_VNZGT81yYuk2oqET62nxD0TEeHoSuQFELefbNWKgxcE9S9GVe0TQtYwIbezlRHvYyYyUBn2ETfYf9Yw2HuAIPjuYfQ&h=SUbYn9-Xi0xEWtF5eALPrnNucXDmVe20s2HeW8CCNOg - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d78ae794-01cd-4c95-884a-524b618c78f0?api-version=2023-09-15&t=638327056077605205&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=WF334crWrUrdTja30kICPk6nqTtrXDVzRl3ULuAMqXURqBsQWNo7cLTiMoj8mbD4wvj0zkWo6kuAdIcz3PM7WMyZi0p5VWXMFtTg0vpTKm5PUnYBbw0hcp3XwpvBQgIEORFOAyHC88KLJQbGsU3zcdseUZSAKR6Wbtu0Vsf_RXEBKCXj2v46qakFeMrIj1XOnM9eAPJL-Aebnirya9KCHEiYPunuc3MEpq-wnBDWIZO7JB14JigmAJ-bSFW_VNZGT81yYuk2oqET62nxD0TEeHoSuQFELefbNWKgxcE9S9GVe0TQtYwIbezlRHvYyYyUBn2ETfYf9Yw2HuAIPjuYfQ&h=SUbYn9-Xi0xEWtF5eALPrnNucXDmVe20s2HeW8CCNOg - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings","name":"weN1","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","instantMaximumThroughput":"20000","softAllowedMaximumThroughput":"1000000"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '446' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '302' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"isDryRun": false}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database merge - Connection: - - keep-alive - Content-Length: - - '19' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:27 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:27 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:58 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:29 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:59 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:29 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest2/mongodbDatabases/cli000003/partitionMerge/operationResults/d11b80f3-becc-41ca-8302-8a9c38561b9a?api-version=2023-09-15-preview - response: - body: - string: '{"physicalPartitionStorageInfoCollection":[{"storageInKB":0.0,"id":"a9cdcfbf-0cdf-450f-9568-914b494f4176"},{"storageInKB":0.0,"id":"b171a295-70b4-462a-8e00-9b79af862c2f"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '172' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_normal_database_prov_collection_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_normal_database_prov_collection_restore.yaml deleted file mode 100644 index 4bb245f6665..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_normal_database_prov_collection_restore.yaml +++ /dev/null @@ -1,7148 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001","name":"cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_normal_database_prov_collection_restore","date":"2023-10-12T10:52:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '519' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:52:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": - "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '355' - Content-Type: - - application/json - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:52:26.8036711Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"1211b4db-63e9-496c-aeaf-da6e138d5b68","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:52:26.8036711Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:52:26.8036711Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:26.8036711Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:26.8036711Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/15aeeefd-f98c-4979-ad7c-8c8283779322?api-version=2023-09-15-preview&t=638327047488192813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qMFE2PVM89XumX-s0islO7ZmwMOxpf89qJY4bFUg43eXiNjIlzTQx8YDsCFwPfCZmEQkSCXHodaMiNGjx4GgwcfgWiJ6tq51n2T69jMKiHpIO1VnG9ixVrO7GJqTx_djK7rqOJ75ukQyKNgw7IkIiOclwl1ptJVr48eOVL8wy8fz8bVDmMwXzXIxvRnrTVUrCvHV3DVCzEzfkf8fPN9SU_VXShIczLBqcf-zNdH5_OesbezLcTVmlTcRmV6MjA8B7xu-df6XanTbkEeNpwHOA3QfXe1DoIIDqr5DI7fluOUFa3xC6xcrJXOAvxrGS8VSg65Iw1eTuqL4e21ibZZQAg&h=nvO2HcomAyAxheI8LUcdns67yo2yVD1ldU2Wh_frHpU - cache-control: - - no-store, no-cache - content-length: - - '2516' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:27 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/15aeeefd-f98c-4979-ad7c-8c8283779322?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/15aeeefd-f98c-4979-ad7c-8c8283779322?api-version=2023-09-15-preview&t=638327047488192813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qMFE2PVM89XumX-s0islO7ZmwMOxpf89qJY4bFUg43eXiNjIlzTQx8YDsCFwPfCZmEQkSCXHodaMiNGjx4GgwcfgWiJ6tq51n2T69jMKiHpIO1VnG9ixVrO7GJqTx_djK7rqOJ75ukQyKNgw7IkIiOclwl1ptJVr48eOVL8wy8fz8bVDmMwXzXIxvRnrTVUrCvHV3DVCzEzfkf8fPN9SU_VXShIczLBqcf-zNdH5_OesbezLcTVmlTcRmV6MjA8B7xu-df6XanTbkEeNpwHOA3QfXe1DoIIDqr5DI7fluOUFa3xC6xcrJXOAvxrGS8VSg65Iw1eTuqL4e21ibZZQAg&h=nvO2HcomAyAxheI8LUcdns67yo2yVD1ldU2Wh_frHpU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/15aeeefd-f98c-4979-ad7c-8c8283779322?api-version=2023-09-15-preview&t=638327047488192813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qMFE2PVM89XumX-s0islO7ZmwMOxpf89qJY4bFUg43eXiNjIlzTQx8YDsCFwPfCZmEQkSCXHodaMiNGjx4GgwcfgWiJ6tq51n2T69jMKiHpIO1VnG9ixVrO7GJqTx_djK7rqOJ75ukQyKNgw7IkIiOclwl1ptJVr48eOVL8wy8fz8bVDmMwXzXIxvRnrTVUrCvHV3DVCzEzfkf8fPN9SU_VXShIczLBqcf-zNdH5_OesbezLcTVmlTcRmV6MjA8B7xu-df6XanTbkEeNpwHOA3QfXe1DoIIDqr5DI7fluOUFa3xC6xcrJXOAvxrGS8VSg65Iw1eTuqL4e21ibZZQAg&h=nvO2HcomAyAxheI8LUcdns67yo2yVD1ldU2Wh_frHpU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/15aeeefd-f98c-4979-ad7c-8c8283779322?api-version=2023-09-15-preview&t=638327047488192813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qMFE2PVM89XumX-s0islO7ZmwMOxpf89qJY4bFUg43eXiNjIlzTQx8YDsCFwPfCZmEQkSCXHodaMiNGjx4GgwcfgWiJ6tq51n2T69jMKiHpIO1VnG9ixVrO7GJqTx_djK7rqOJ75ukQyKNgw7IkIiOclwl1ptJVr48eOVL8wy8fz8bVDmMwXzXIxvRnrTVUrCvHV3DVCzEzfkf8fPN9SU_VXShIczLBqcf-zNdH5_OesbezLcTVmlTcRmV6MjA8B7xu-df6XanTbkEeNpwHOA3QfXe1DoIIDqr5DI7fluOUFa3xC6xcrJXOAvxrGS8VSg65Iw1eTuqL4e21ibZZQAg&h=nvO2HcomAyAxheI8LUcdns67yo2yVD1ldU2Wh_frHpU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/15aeeefd-f98c-4979-ad7c-8c8283779322?api-version=2023-09-15-preview&t=638327047488192813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qMFE2PVM89XumX-s0islO7ZmwMOxpf89qJY4bFUg43eXiNjIlzTQx8YDsCFwPfCZmEQkSCXHodaMiNGjx4GgwcfgWiJ6tq51n2T69jMKiHpIO1VnG9ixVrO7GJqTx_djK7rqOJ75ukQyKNgw7IkIiOclwl1ptJVr48eOVL8wy8fz8bVDmMwXzXIxvRnrTVUrCvHV3DVCzEzfkf8fPN9SU_VXShIczLBqcf-zNdH5_OesbezLcTVmlTcRmV6MjA8B7xu-df6XanTbkEeNpwHOA3QfXe1DoIIDqr5DI7fluOUFa3xC6xcrJXOAvxrGS8VSg65Iw1eTuqL4e21ibZZQAg&h=nvO2HcomAyAxheI8LUcdns67yo2yVD1ldU2Wh_frHpU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/15aeeefd-f98c-4979-ad7c-8c8283779322?api-version=2023-09-15-preview&t=638327047488192813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qMFE2PVM89XumX-s0islO7ZmwMOxpf89qJY4bFUg43eXiNjIlzTQx8YDsCFwPfCZmEQkSCXHodaMiNGjx4GgwcfgWiJ6tq51n2T69jMKiHpIO1VnG9ixVrO7GJqTx_djK7rqOJ75ukQyKNgw7IkIiOclwl1ptJVr48eOVL8wy8fz8bVDmMwXzXIxvRnrTVUrCvHV3DVCzEzfkf8fPN9SU_VXShIczLBqcf-zNdH5_OesbezLcTVmlTcRmV6MjA8B7xu-df6XanTbkEeNpwHOA3QfXe1DoIIDqr5DI7fluOUFa3xC6xcrJXOAvxrGS8VSg65Iw1eTuqL4e21ibZZQAg&h=nvO2HcomAyAxheI8LUcdns67yo2yVD1ldU2Wh_frHpU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/15aeeefd-f98c-4979-ad7c-8c8283779322?api-version=2023-09-15-preview&t=638327047488192813&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qMFE2PVM89XumX-s0islO7ZmwMOxpf89qJY4bFUg43eXiNjIlzTQx8YDsCFwPfCZmEQkSCXHodaMiNGjx4GgwcfgWiJ6tq51n2T69jMKiHpIO1VnG9ixVrO7GJqTx_djK7rqOJ75ukQyKNgw7IkIiOclwl1ptJVr48eOVL8wy8fz8bVDmMwXzXIxvRnrTVUrCvHV3DVCzEzfkf8fPN9SU_VXShIczLBqcf-zNdH5_OesbezLcTVmlTcRmV6MjA8B7xu-df6XanTbkEeNpwHOA3QfXe1DoIIDqr5DI7fluOUFa3xC6xcrJXOAvxrGS8VSg65Iw1eTuqL4e21ibZZQAg&h=nvO2HcomAyAxheI8LUcdns67yo2yVD1ldU2Wh_frHpU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:28.4917664Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"1211b4db-63e9-496c-aeaf-da6e138d5b68","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:28.4917664Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:28.4917664Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:28.4917664Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:28.4917664Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2963' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:28.4917664Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"1211b4db-63e9-496c-aeaf-da6e138d5b68","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:28.4917664Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:28.4917664Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:28.4917664Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:28.4917664Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2963' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000004"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384ec3d8-d162-4133-9952-608fbe8d4654?api-version=2023-09-15&t=638327049054849118&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=SuZR1kRy7XIwVHfpazh-nueRdRtWHUW_z9ESxU-MIn7HRlF5luMJbuywfe1gcgRERWQ1DcOKZrYpogdMJ9-WVWfUuoKJSL2fJ3scQwKIoUKqY57H-Axj2ChgiCupjCAzeZ1JDRBsLF6P6uoPosWD5kGwpjNzWPhFE6pK8X2nOZ-u-WzdqpTZS7TWAGtaRnbb6Yk83UV4bEwvDe2akUzZ3DojROiPIX5HHn9Cb4CPLNkzNqXFX1Nmb6zpkn0nFC3j4pixmz8Oub5bIuWM18XswP6OGYrMdKyP8DLTqvzgIrkh0wxoyGshI6_7OOXtYKqYcm-87EHm_h24tIkIRNQMxg&h=Dw1RxMnE6QJnYPBDVXAydRdsWVIp2GgRTN2nAGIX-HA - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:04 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/384ec3d8-d162-4133-9952-608fbe8d4654?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384ec3d8-d162-4133-9952-608fbe8d4654?api-version=2023-09-15&t=638327049054849118&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=SuZR1kRy7XIwVHfpazh-nueRdRtWHUW_z9ESxU-MIn7HRlF5luMJbuywfe1gcgRERWQ1DcOKZrYpogdMJ9-WVWfUuoKJSL2fJ3scQwKIoUKqY57H-Axj2ChgiCupjCAzeZ1JDRBsLF6P6uoPosWD5kGwpjNzWPhFE6pK8X2nOZ-u-WzdqpTZS7TWAGtaRnbb6Yk83UV4bEwvDe2akUzZ3DojROiPIX5HHn9Cb4CPLNkzNqXFX1Nmb6zpkn0nFC3j4pixmz8Oub5bIuWM18XswP6OGYrMdKyP8DLTqvzgIrkh0wxoyGshI6_7OOXtYKqYcm-87EHm_h24tIkIRNQMxg&h=Dw1RxMnE6QJnYPBDVXAydRdsWVIp2GgRTN2nAGIX-HA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384ec3d8-d162-4133-9952-608fbe8d4654?api-version=2023-09-15&t=638327049054849118&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=SuZR1kRy7XIwVHfpazh-nueRdRtWHUW_z9ESxU-MIn7HRlF5luMJbuywfe1gcgRERWQ1DcOKZrYpogdMJ9-WVWfUuoKJSL2fJ3scQwKIoUKqY57H-Axj2ChgiCupjCAzeZ1JDRBsLF6P6uoPosWD5kGwpjNzWPhFE6pK8X2nOZ-u-WzdqpTZS7TWAGtaRnbb6Yk83UV4bEwvDe2akUzZ3DojROiPIX5HHn9Cb4CPLNkzNqXFX1Nmb6zpkn0nFC3j4pixmz8Oub5bIuWM18XswP6OGYrMdKyP8DLTqvzgIrkh0wxoyGshI6_7OOXtYKqYcm-87EHm_h24tIkIRNQMxg&h=Dw1RxMnE6QJnYPBDVXAydRdsWVIp2GgRTN2nAGIX-HA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '360' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"The collection ''cli000004''.''cli000002'' - doesn''t exist.\r\nActivityId: e026fc95-68ed-11ee-950b-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '178' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '101' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f68d834d-fcb4-4caa-8a8b-ea8ef3d316a8?api-version=2023-09-15&t=638327049407562657&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=tmm_mlbBMuw-1kVinPFgwg6xrmCoAlfzHdbP2bXCJnEZJEnvK6_2PPKr6LMgSzmcvT_xm-n-ZgZxf4Pc5Ue5yUmW2YuEZ97JMkCIjsVHizy7DgsFxn2Nxsqa9dIrGd3U4Czzr9n7i4zBy0fzSwEkXUho4i0LjQ6ZsudA62nlx2L1PYlJHVPJV6Xnpst11CGPv9qqO4eaAicu5d7yJSztC_RDbmhxF6dvsKRZ-ZKApw42xa5SNR39QyIVtezR4OuvAo1BcxpEeKWtEKMOMoZ7BHM5WIbcGNfFgIKkoSk11srPkPAwWc5xwdOBNnx6EXXLRg_h5UVGxkwrfcqjxR0UxA&h=_svDQ0UueupC2xchyN11mSqnYqe0R6FqiprwHQKLDls - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:40 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/f68d834d-fcb4-4caa-8a8b-ea8ef3d316a8?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f68d834d-fcb4-4caa-8a8b-ea8ef3d316a8?api-version=2023-09-15&t=638327049407562657&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=tmm_mlbBMuw-1kVinPFgwg6xrmCoAlfzHdbP2bXCJnEZJEnvK6_2PPKr6LMgSzmcvT_xm-n-ZgZxf4Pc5Ue5yUmW2YuEZ97JMkCIjsVHizy7DgsFxn2Nxsqa9dIrGd3U4Czzr9n7i4zBy0fzSwEkXUho4i0LjQ6ZsudA62nlx2L1PYlJHVPJV6Xnpst11CGPv9qqO4eaAicu5d7yJSztC_RDbmhxF6dvsKRZ-ZKApw42xa5SNR39QyIVtezR4OuvAo1BcxpEeKWtEKMOMoZ7BHM5WIbcGNfFgIKkoSk11srPkPAwWc5xwdOBNnx6EXXLRg_h5UVGxkwrfcqjxR0UxA&h=_svDQ0UueupC2xchyN11mSqnYqe0R6FqiprwHQKLDls - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f68d834d-fcb4-4caa-8a8b-ea8ef3d316a8?api-version=2023-09-15&t=638327049407562657&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=tmm_mlbBMuw-1kVinPFgwg6xrmCoAlfzHdbP2bXCJnEZJEnvK6_2PPKr6LMgSzmcvT_xm-n-ZgZxf4Pc5Ue5yUmW2YuEZ97JMkCIjsVHizy7DgsFxn2Nxsqa9dIrGd3U4Czzr9n7i4zBy0fzSwEkXUho4i0LjQ6ZsudA62nlx2L1PYlJHVPJV6Xnpst11CGPv9qqO4eaAicu5d7yJSztC_RDbmhxF6dvsKRZ-ZKApw42xa5SNR39QyIVtezR4OuvAo1BcxpEeKWtEKMOMoZ7BHM5WIbcGNfFgIKkoSk11srPkPAwWc5xwdOBNnx6EXXLRg_h5UVGxkwrfcqjxR0UxA&h=_svDQ0UueupC2xchyN11mSqnYqe0R6FqiprwHQKLDls - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '477' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/849a6a26-a98a-4139-bedc-b8fbd72767ca?api-version=2023-09-15&t=638327052786495848&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hUE_ja48R5nVEPw7hLDquwDHMb8WhiDRfHsTbVTb1ugzyJjxAPzKz2yPl-kvzkTgR2Pb0Sknq-ZYsxGvuM7PTEVmK3XCYB9VrzcME-QCxnCVcF89to6KIiNJdDtoQqRvYVa19E0g-A27hYc-FmmULsa2YpkpiVA1SRpZnfNlmUVq0rMXPqo90vUvJoZusB57Js6p9p9o35hSRfHFtHED8o1uBGLBj2qdCFR6cKg6woaqv7gkCYnJPBJId4xTRTIaO4Eo-uoD9WZrldLSdOQt4TlM5T4oSGIEWAx0ochX1s7K5Fn2XMcfq7NlxmKIab7xJOA90XSDPR3cc5FWgDGLww&h=0GvbUPQY_iCMTwE_yHxu7pCGO5gAIwS7iw3_z6LDUaA - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/849a6a26-a98a-4139-bedc-b8fbd72767ca?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/849a6a26-a98a-4139-bedc-b8fbd72767ca?api-version=2023-09-15&t=638327052786495848&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hUE_ja48R5nVEPw7hLDquwDHMb8WhiDRfHsTbVTb1ugzyJjxAPzKz2yPl-kvzkTgR2Pb0Sknq-ZYsxGvuM7PTEVmK3XCYB9VrzcME-QCxnCVcF89to6KIiNJdDtoQqRvYVa19E0g-A27hYc-FmmULsa2YpkpiVA1SRpZnfNlmUVq0rMXPqo90vUvJoZusB57Js6p9p9o35hSRfHFtHED8o1uBGLBj2qdCFR6cKg6woaqv7gkCYnJPBJId4xTRTIaO4Eo-uoD9WZrldLSdOQt4TlM5T4oSGIEWAx0ochX1s7K5Fn2XMcfq7NlxmKIab7xJOA90XSDPR3cc5FWgDGLww&h=0GvbUPQY_iCMTwE_yHxu7pCGO5gAIwS7iw3_z6LDUaA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/849a6a26-a98a-4139-bedc-b8fbd72767ca?api-version=2023-09-15&t=638327052786495848&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hUE_ja48R5nVEPw7hLDquwDHMb8WhiDRfHsTbVTb1ugzyJjxAPzKz2yPl-kvzkTgR2Pb0Sknq-ZYsxGvuM7PTEVmK3XCYB9VrzcME-QCxnCVcF89to6KIiNJdDtoQqRvYVa19E0g-A27hYc-FmmULsa2YpkpiVA1SRpZnfNlmUVq0rMXPqo90vUvJoZusB57Js6p9p9o35hSRfHFtHED8o1uBGLBj2qdCFR6cKg6woaqv7gkCYnJPBJId4xTRTIaO4Eo-uoD9WZrldLSdOQt4TlM5T4oSGIEWAx0ochX1s7K5Fn2XMcfq7NlxmKIab7xJOA90XSDPR3cc5FWgDGLww&h=0GvbUPQY_iCMTwE_yHxu7pCGO5gAIwS7iw3_z6LDUaA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:01:52Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:01:52Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:01:52Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:01:52Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"cli000003","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","oldestRestorableTime":"2023-10-12T10:59:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:01:54Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:01:53Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '287137' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:01:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68", - "restoreTimestampInUtc": "2023-10-12T10:56:16.475494Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:01 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9ece4a6-70bf-41f3-a4b0-9f30dba3e117?api-version=2023-09-15-preview&t=638327053219224783&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PMQ7ee5sXbcxkcxJ0mFaB7zZ00zuQwGMsToZzFcmNgCGAmAktbjU_zsALrpJSK9iF7m1F8cjdnFKMmdIpe67viXCkyKr5g2Yh3A4Vlp7HrqSjV5SB4BK4RFQWAYllIhXD0An1drrWtAvH9cv_FvGL9d5uPZx6yIkhho1gy8x1VwuL8oFb78JoAvyRxBGWI6iIJW65x3Cu4vtduv-jq-K085reguyWr1LjkxmpsXD5Udrvh-Wih81gzzcXs2XJBR-GdvUi83jqA_sCMvwbw9caFC7SWmk5TFylyxmfAEZbD0Ry7EOFvjU5QAVbA3Oq5n4KkLY4_mef47VGs0JgsRwnA&h=C59diX6cKCsIjxtmdR1rtgfNxTMy3JwewC74I7QWcYA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '477' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87e6ad8f-3fb5-4570-bbc1-68b209546cc0?api-version=2023-09-15&t=638327058152836441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=f54YWCGSdXpwEDsw4ANWoZmByBhIToPW51dJhzP55Dku5MDEJsJZnbFgYsGsOgbIp7GalI8Fz5vDfQuTpGmU8iCnOzNr6QWISbHCZIgTgeMI7C4hxdcfmsyB8tEQLsaVk3lzWV-CoPp3879JqBYsuooIXme3ochx7cxNDPwEKDPOlvwUM-Bh8kFujjHhgjAMIVLcfgs2NIyreejn7bOnVf9CCEimfA6F4CkrN5MOfufXYoqJbT-Ch9_TT7v-cyvwsj9o3A4b8ua5XudHDN2drtYv1O6nG0paDgNnZ8tX26hkmhDIPrwI8JfHsN-zRMcjBQMyFMYsXyr_PBl7EY_baA&h=PlSd58_bP0JUX4Vz1dNMApNVXSzgq-pAO-8lXicv1gU - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:15 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/87e6ad8f-3fb5-4570-bbc1-68b209546cc0?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87e6ad8f-3fb5-4570-bbc1-68b209546cc0?api-version=2023-09-15&t=638327058152836441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=f54YWCGSdXpwEDsw4ANWoZmByBhIToPW51dJhzP55Dku5MDEJsJZnbFgYsGsOgbIp7GalI8Fz5vDfQuTpGmU8iCnOzNr6QWISbHCZIgTgeMI7C4hxdcfmsyB8tEQLsaVk3lzWV-CoPp3879JqBYsuooIXme3ochx7cxNDPwEKDPOlvwUM-Bh8kFujjHhgjAMIVLcfgs2NIyreejn7bOnVf9CCEimfA6F4CkrN5MOfufXYoqJbT-Ch9_TT7v-cyvwsj9o3A4b8ua5XudHDN2drtYv1O6nG0paDgNnZ8tX26hkmhDIPrwI8JfHsN-zRMcjBQMyFMYsXyr_PBl7EY_baA&h=PlSd58_bP0JUX4Vz1dNMApNVXSzgq-pAO-8lXicv1gU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87e6ad8f-3fb5-4570-bbc1-68b209546cc0?api-version=2023-09-15&t=638327058152836441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=f54YWCGSdXpwEDsw4ANWoZmByBhIToPW51dJhzP55Dku5MDEJsJZnbFgYsGsOgbIp7GalI8Fz5vDfQuTpGmU8iCnOzNr6QWISbHCZIgTgeMI7C4hxdcfmsyB8tEQLsaVk3lzWV-CoPp3879JqBYsuooIXme3ochx7cxNDPwEKDPOlvwUM-Bh8kFujjHhgjAMIVLcfgs2NIyreejn7bOnVf9CCEimfA6F4CkrN5MOfufXYoqJbT-Ch9_TT7v-cyvwsj9o3A4b8ua5XudHDN2drtYv1O6nG0paDgNnZ8tX26hkmhDIPrwI8JfHsN-zRMcjBQMyFMYsXyr_PBl7EY_baA&h=PlSd58_bP0JUX4Vz1dNMApNVXSzgq-pAO-8lXicv1gU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:10:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"cli000003","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:10:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '288615' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:10:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000004", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68", - "restoreTimestampInUtc": "2023-10-12T10:56:16.475494Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5007bd3-98ce-4134-9e47-8e40021cdce2?api-version=2023-09-15-preview&t=638327058579144171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hG3uxTqSjs3JqZjWp70JwfvcGbriUSH2a2qZ9TThSVeSEzyJEt8rWWCTwz_pa3jrRNajYRH8oqU8-6Q99O581lyRe-39e6-7rt0XviufLdg35xXM5s3Hq7hXlzQyqSMg606vS65RHe8sZ3OVZT8URFKq3OM1uDBaMEzzmNMOh3gDmEF41NDWFdBoL3ylbU5jPtLz1_pWcw2WEeQ6GRzNIJTnm9-uuyl55ob3OY8orvYR1h9k_qz48YDstKCdSodRfsYSU3nKEABwP8sqz--t8t63uzqTMYRs5kO4KF17-XS_kljlL4nVNCfhZUeNqs7GXNlGzTRd2YjsvW5p29X2tA&h=IC6IgTEaqcHK4ILfWwH5k-HMNrh388ujxlOgSfK-HS8 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:57 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/f5007bd3-98ce-4134-9e47-8e40021cdce2?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5007bd3-98ce-4134-9e47-8e40021cdce2?api-version=2023-09-15-preview&t=638327058579144171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hG3uxTqSjs3JqZjWp70JwfvcGbriUSH2a2qZ9TThSVeSEzyJEt8rWWCTwz_pa3jrRNajYRH8oqU8-6Q99O581lyRe-39e6-7rt0XviufLdg35xXM5s3Hq7hXlzQyqSMg606vS65RHe8sZ3OVZT8URFKq3OM1uDBaMEzzmNMOh3gDmEF41NDWFdBoL3ylbU5jPtLz1_pWcw2WEeQ6GRzNIJTnm9-uuyl55ob3OY8orvYR1h9k_qz48YDstKCdSodRfsYSU3nKEABwP8sqz--t8t63uzqTMYRs5kO4KF17-XS_kljlL4nVNCfhZUeNqs7GXNlGzTRd2YjsvW5p29X2tA&h=IC6IgTEaqcHK4ILfWwH5k-HMNrh388ujxlOgSfK-HS8 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5007bd3-98ce-4134-9e47-8e40021cdce2?api-version=2023-09-15-preview&t=638327058579144171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hG3uxTqSjs3JqZjWp70JwfvcGbriUSH2a2qZ9TThSVeSEzyJEt8rWWCTwz_pa3jrRNajYRH8oqU8-6Q99O581lyRe-39e6-7rt0XviufLdg35xXM5s3Hq7hXlzQyqSMg606vS65RHe8sZ3OVZT8URFKq3OM1uDBaMEzzmNMOh3gDmEF41NDWFdBoL3ylbU5jPtLz1_pWcw2WEeQ6GRzNIJTnm9-uuyl55ob3OY8orvYR1h9k_qz48YDstKCdSodRfsYSU3nKEABwP8sqz--t8t63uzqTMYRs5kO4KF17-XS_kljlL4nVNCfhZUeNqs7GXNlGzTRd2YjsvW5p29X2tA&h=IC6IgTEaqcHK4ILfWwH5k-HMNrh388ujxlOgSfK-HS8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5007bd3-98ce-4134-9e47-8e40021cdce2?api-version=2023-09-15-preview&t=638327058579144171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hG3uxTqSjs3JqZjWp70JwfvcGbriUSH2a2qZ9TThSVeSEzyJEt8rWWCTwz_pa3jrRNajYRH8oqU8-6Q99O581lyRe-39e6-7rt0XviufLdg35xXM5s3Hq7hXlzQyqSMg606vS65RHe8sZ3OVZT8URFKq3OM1uDBaMEzzmNMOh3gDmEF41NDWFdBoL3ylbU5jPtLz1_pWcw2WEeQ6GRzNIJTnm9-uuyl55ob3OY8orvYR1h9k_qz48YDstKCdSodRfsYSU3nKEABwP8sqz--t8t63uzqTMYRs5kO4KF17-XS_kljlL4nVNCfhZUeNqs7GXNlGzTRd2YjsvW5p29X2tA&h=IC6IgTEaqcHK4ILfWwH5k-HMNrh388ujxlOgSfK-HS8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5007bd3-98ce-4134-9e47-8e40021cdce2?api-version=2023-09-15-preview&t=638327058579144171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hG3uxTqSjs3JqZjWp70JwfvcGbriUSH2a2qZ9TThSVeSEzyJEt8rWWCTwz_pa3jrRNajYRH8oqU8-6Q99O581lyRe-39e6-7rt0XviufLdg35xXM5s3Hq7hXlzQyqSMg606vS65RHe8sZ3OVZT8URFKq3OM1uDBaMEzzmNMOh3gDmEF41NDWFdBoL3ylbU5jPtLz1_pWcw2WEeQ6GRzNIJTnm9-uuyl55ob3OY8orvYR1h9k_qz48YDstKCdSodRfsYSU3nKEABwP8sqz--t8t63uzqTMYRs5kO4KF17-XS_kljlL4nVNCfhZUeNqs7GXNlGzTRd2YjsvW5p29X2tA&h=IC6IgTEaqcHK4ILfWwH5k-HMNrh388ujxlOgSfK-HS8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5007bd3-98ce-4134-9e47-8e40021cdce2?api-version=2023-09-15-preview&t=638327058579144171&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hG3uxTqSjs3JqZjWp70JwfvcGbriUSH2a2qZ9TThSVeSEzyJEt8rWWCTwz_pa3jrRNajYRH8oqU8-6Q99O581lyRe-39e6-7rt0XviufLdg35xXM5s3Hq7hXlzQyqSMg606vS65RHe8sZ3OVZT8URFKq3OM1uDBaMEzzmNMOh3gDmEF41NDWFdBoL3ylbU5jPtLz1_pWcw2WEeQ6GRzNIJTnm9-uuyl55ob3OY8orvYR1h9k_qz48YDstKCdSodRfsYSU3nKEABwP8sqz--t8t63uzqTMYRs5kO4KF17-XS_kljlL4nVNCfhZUeNqs7GXNlGzTRd2YjsvW5p29X2tA&h=IC6IgTEaqcHK4ILfWwH5k-HMNrh388ujxlOgSfK-HS8 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '360' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '372' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:13:05Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:13:05Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:13:05Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:13:05Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:13:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:13:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"cli000003","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:13:07Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:13:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '288615' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:13:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68", - "restoreTimestampInUtc": "2023-10-12T10:56:16.475494Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:13 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7f5d3b3-0195-4c38-836c-cd4ffb14782d?api-version=2023-09-15-preview&t=638327059944618533&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=JwBxjAmahbuXAjRfCjAjMYlltVIXxgNmYzf_L0gpb1Gh9u7O5mRYcgK1oF8p94721lELOUqrW4aLmUXDi2SZxELto9lroPlH3LPR4HCMOoK78K1TLdopRzKm0Itl3eO64w7E9YxHLTqOwoTUxDork7RswurAm3lUTey-7s_L52dRCoQ41CxnG6fb5ToUyfSqAgwZd1iHw4AacVmw91jUS0fM36G-XarPjA0dgaD6QzTr_3C-SMLtWMae-SXmYu0ud3ffge4kK2c3ymUNcgyoqwPFQ2PBb0l3r8DvKPUeduh1RseoEMGIC6wo5MojMXf3D8A4EOel647SVOaFGwD9bg&h=iI1HmQMKq5BldLuvDWvG5EHbbL1cZDcfzmpaC72yuHY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '477' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff0e9dd2-acb4-4a45-a018-309fbed9f80d?api-version=2023-09-15&t=638327064338147937&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Be7iUeWm7A3q9wzB1JjK6LNN5GFPUbZLc4scer0nm3qn6PNpEKs40Ss7nFxnQBEtdzdNs-A0XsuML21cIs4-EFEhEzd2IVkcfox0lcno0Kwpe4pzPVfbKEv5ghmEE4lP3HhKN_rf5R0lzoVkxHaFievWrmHRQBLbR4PY4QhKCo5C3pL99XNmzqJTPy3-tCgbSKC-FRpFnm7LifTq6U_Q_3okwQ8_iyw1C_v68GDDqxJSgNvkXLVoEdcZYrANb3NIlCW_YQ-IR3qcyrj2bwUAi90oRv6xqRb3UMby2rnTR-98wLc8yTGVKfR84WkAQkbcORpOdmUwiBNShg9j_R3JhA&h=Z5n45Zxk2jk9ScP0oEMIspbEHskd8abwkLCGsC3yG9Y - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:33 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/ff0e9dd2-acb4-4a45-a018-309fbed9f80d?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff0e9dd2-acb4-4a45-a018-309fbed9f80d?api-version=2023-09-15&t=638327064338147937&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Be7iUeWm7A3q9wzB1JjK6LNN5GFPUbZLc4scer0nm3qn6PNpEKs40Ss7nFxnQBEtdzdNs-A0XsuML21cIs4-EFEhEzd2IVkcfox0lcno0Kwpe4pzPVfbKEv5ghmEE4lP3HhKN_rf5R0lzoVkxHaFievWrmHRQBLbR4PY4QhKCo5C3pL99XNmzqJTPy3-tCgbSKC-FRpFnm7LifTq6U_Q_3okwQ8_iyw1C_v68GDDqxJSgNvkXLVoEdcZYrANb3NIlCW_YQ-IR3qcyrj2bwUAi90oRv6xqRb3UMby2rnTR-98wLc8yTGVKfR84WkAQkbcORpOdmUwiBNShg9j_R3JhA&h=Z5n45Zxk2jk9ScP0oEMIspbEHskd8abwkLCGsC3yG9Y - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff0e9dd2-acb4-4a45-a018-309fbed9f80d?api-version=2023-09-15&t=638327064338147937&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Be7iUeWm7A3q9wzB1JjK6LNN5GFPUbZLc4scer0nm3qn6PNpEKs40Ss7nFxnQBEtdzdNs-A0XsuML21cIs4-EFEhEzd2IVkcfox0lcno0Kwpe4pzPVfbKEv5ghmEE4lP3HhKN_rf5R0lzoVkxHaFievWrmHRQBLbR4PY4QhKCo5C3pL99XNmzqJTPy3-tCgbSKC-FRpFnm7LifTq6U_Q_3okwQ8_iyw1C_v68GDDqxJSgNvkXLVoEdcZYrANb3NIlCW_YQ-IR3qcyrj2bwUAi90oRv6xqRb3UMby2rnTR-98wLc8yTGVKfR84WkAQkbcORpOdmUwiBNShg9j_R3JhA&h=Z5n45Zxk2jk9ScP0oEMIspbEHskd8abwkLCGsC3yG9Y - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_database_prov_collection_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_database_prov_collection_restore.yaml deleted file mode 100644 index 572ed085067..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_database_prov_collection_restore.yaml +++ /dev/null @@ -1,7284 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001","name":"cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_shared_database_prov_collection_restore","date":"2023-10-12T11:21:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '519' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:21:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": - "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '355' - Content-Type: - - application/json - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:21:24.5669607Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"73d7201c-c19c-44b5-a19c-79d715712c60","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:21:24.5669607Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:21:24.5669607Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:21:24.5669607Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:21:24.5669607Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview&t=638327064863278460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fxaCELubKcjIZJUH100YwcPZknmUfW9UiXNuJHFWu79Pka4EmjbjzC_YIadYIODKyypwaujPdSZu0UGgCOPvLNHBEgOpLZxrOtTdGUO6Zl_k_cL_kVwxGFMpbOSoiYYC2L0PI8SofOTjosm5F7-g4IsGrz1Ffw8MRIZDRssx2L9kDQPReHNHv8BBJxuBskCDP6a-KIXUZOVetkb9MW7p-RyZN1egtuIwihW77mShmhDVKb_LzVJ1OqhQKEZfb1leb3OVBZcePBzbatwBWETngEeoWrCaLW6lmhcXcHfxI1m6iimzG8RxS-YVlgFI_zkByinPofg73NgWaMsLBOU0XA&h=X9TR6B-NxrGi61NtQAwKZqbv2j9u7loGOM7-XCzTq8Q - cache-control: - - no-store, no-cache - content-length: - - '2516' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:26 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview&t=638327064863278460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fxaCELubKcjIZJUH100YwcPZknmUfW9UiXNuJHFWu79Pka4EmjbjzC_YIadYIODKyypwaujPdSZu0UGgCOPvLNHBEgOpLZxrOtTdGUO6Zl_k_cL_kVwxGFMpbOSoiYYC2L0PI8SofOTjosm5F7-g4IsGrz1Ffw8MRIZDRssx2L9kDQPReHNHv8BBJxuBskCDP6a-KIXUZOVetkb9MW7p-RyZN1egtuIwihW77mShmhDVKb_LzVJ1OqhQKEZfb1leb3OVBZcePBzbatwBWETngEeoWrCaLW6lmhcXcHfxI1m6iimzG8RxS-YVlgFI_zkByinPofg73NgWaMsLBOU0XA&h=X9TR6B-NxrGi61NtQAwKZqbv2j9u7loGOM7-XCzTq8Q - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview&t=638327064863278460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fxaCELubKcjIZJUH100YwcPZknmUfW9UiXNuJHFWu79Pka4EmjbjzC_YIadYIODKyypwaujPdSZu0UGgCOPvLNHBEgOpLZxrOtTdGUO6Zl_k_cL_kVwxGFMpbOSoiYYC2L0PI8SofOTjosm5F7-g4IsGrz1Ffw8MRIZDRssx2L9kDQPReHNHv8BBJxuBskCDP6a-KIXUZOVetkb9MW7p-RyZN1egtuIwihW77mShmhDVKb_LzVJ1OqhQKEZfb1leb3OVBZcePBzbatwBWETngEeoWrCaLW6lmhcXcHfxI1m6iimzG8RxS-YVlgFI_zkByinPofg73NgWaMsLBOU0XA&h=X9TR6B-NxrGi61NtQAwKZqbv2j9u7loGOM7-XCzTq8Q - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview&t=638327064863278460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fxaCELubKcjIZJUH100YwcPZknmUfW9UiXNuJHFWu79Pka4EmjbjzC_YIadYIODKyypwaujPdSZu0UGgCOPvLNHBEgOpLZxrOtTdGUO6Zl_k_cL_kVwxGFMpbOSoiYYC2L0PI8SofOTjosm5F7-g4IsGrz1Ffw8MRIZDRssx2L9kDQPReHNHv8BBJxuBskCDP6a-KIXUZOVetkb9MW7p-RyZN1egtuIwihW77mShmhDVKb_LzVJ1OqhQKEZfb1leb3OVBZcePBzbatwBWETngEeoWrCaLW6lmhcXcHfxI1m6iimzG8RxS-YVlgFI_zkByinPofg73NgWaMsLBOU0XA&h=X9TR6B-NxrGi61NtQAwKZqbv2j9u7loGOM7-XCzTq8Q - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview&t=638327064863278460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fxaCELubKcjIZJUH100YwcPZknmUfW9UiXNuJHFWu79Pka4EmjbjzC_YIadYIODKyypwaujPdSZu0UGgCOPvLNHBEgOpLZxrOtTdGUO6Zl_k_cL_kVwxGFMpbOSoiYYC2L0PI8SofOTjosm5F7-g4IsGrz1Ffw8MRIZDRssx2L9kDQPReHNHv8BBJxuBskCDP6a-KIXUZOVetkb9MW7p-RyZN1egtuIwihW77mShmhDVKb_LzVJ1OqhQKEZfb1leb3OVBZcePBzbatwBWETngEeoWrCaLW6lmhcXcHfxI1m6iimzG8RxS-YVlgFI_zkByinPofg73NgWaMsLBOU0XA&h=X9TR6B-NxrGi61NtQAwKZqbv2j9u7loGOM7-XCzTq8Q - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview&t=638327064863278460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fxaCELubKcjIZJUH100YwcPZknmUfW9UiXNuJHFWu79Pka4EmjbjzC_YIadYIODKyypwaujPdSZu0UGgCOPvLNHBEgOpLZxrOtTdGUO6Zl_k_cL_kVwxGFMpbOSoiYYC2L0PI8SofOTjosm5F7-g4IsGrz1Ffw8MRIZDRssx2L9kDQPReHNHv8BBJxuBskCDP6a-KIXUZOVetkb9MW7p-RyZN1egtuIwihW77mShmhDVKb_LzVJ1OqhQKEZfb1leb3OVBZcePBzbatwBWETngEeoWrCaLW6lmhcXcHfxI1m6iimzG8RxS-YVlgFI_zkByinPofg73NgWaMsLBOU0XA&h=X9TR6B-NxrGi61NtQAwKZqbv2j9u7loGOM7-XCzTq8Q - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview&t=638327064863278460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fxaCELubKcjIZJUH100YwcPZknmUfW9UiXNuJHFWu79Pka4EmjbjzC_YIadYIODKyypwaujPdSZu0UGgCOPvLNHBEgOpLZxrOtTdGUO6Zl_k_cL_kVwxGFMpbOSoiYYC2L0PI8SofOTjosm5F7-g4IsGrz1Ffw8MRIZDRssx2L9kDQPReHNHv8BBJxuBskCDP6a-KIXUZOVetkb9MW7p-RyZN1egtuIwihW77mShmhDVKb_LzVJ1OqhQKEZfb1leb3OVBZcePBzbatwBWETngEeoWrCaLW6lmhcXcHfxI1m6iimzG8RxS-YVlgFI_zkByinPofg73NgWaMsLBOU0XA&h=X9TR6B-NxrGi61NtQAwKZqbv2j9u7loGOM7-XCzTq8Q - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dedf0de3-0058-402d-a442-1b2b75d0a7a2?api-version=2023-09-15-preview&t=638327064863278460&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=fxaCELubKcjIZJUH100YwcPZknmUfW9UiXNuJHFWu79Pka4EmjbjzC_YIadYIODKyypwaujPdSZu0UGgCOPvLNHBEgOpLZxrOtTdGUO6Zl_k_cL_kVwxGFMpbOSoiYYC2L0PI8SofOTjosm5F7-g4IsGrz1Ffw8MRIZDRssx2L9kDQPReHNHv8BBJxuBskCDP6a-KIXUZOVetkb9MW7p-RyZN1egtuIwihW77mShmhDVKb_LzVJ1OqhQKEZfb1leb3OVBZcePBzbatwBWETngEeoWrCaLW6lmhcXcHfxI1m6iimzG8RxS-YVlgFI_zkByinPofg73NgWaMsLBOU0XA&h=X9TR6B-NxrGi61NtQAwKZqbv2j9u7loGOM7-XCzTq8Q - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:23:31.6118442Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","mongoEndpoint":"https://cli000004.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"73d7201c-c19c-44b5-a19c-79d715712c60","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:23:31.6118442Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:23:31.6118442Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:23:31.6118442Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:23:31.6118442Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2963' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:23:31.6118442Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","mongoEndpoint":"https://cli000004.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"73d7201c-c19c-44b5-a19c-79d715712c60","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:23:31.6118442Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:23:31.6118442Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:23:31.6118442Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:23:31.6118442Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2963' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000005"}, "options": {"throughput": - 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3e351575-f6ff-4b2d-af66-0fc84f6742ea?api-version=2023-09-15&t=638327066718208800&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fwPNc0u6zRbeR5gIPAItxtJBZatkZiMZ33iFUB_61-yPH65M3F5HVSrh128UVZeoEBW45UL4JN34IxMhSG3cvFXkZC4nuM5SLFYkCR6mBZabGnQwWoCu5Zc9rM0DWOtoPYimKRFj_LtSVssYKfOZ5AFz-b4r4zA_ltGLZBV-wbdZDmLBlUkCWL9V5y1nAwUl7L1FT2PVKrBasU7FWEyxh691xqqAvGg7apEnJ6IQ8YA_9oa4XOmULDTuaPXjjaOhNm1vDr7TMBT97sK7xPGBm0plw0ffTeoUu7b-ucqWtNf34wODr-6Dep1BsFyolvi-K_gRAPm26VXAdHJIYfi0_Q&h=12TXDfDwWWfbm0o9ApxevbKfIx4WO3F2z_fRCJUh85A - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:31 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/operationResults/3e351575-f6ff-4b2d-af66-0fc84f6742ea?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3e351575-f6ff-4b2d-af66-0fc84f6742ea?api-version=2023-09-15&t=638327066718208800&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fwPNc0u6zRbeR5gIPAItxtJBZatkZiMZ33iFUB_61-yPH65M3F5HVSrh128UVZeoEBW45UL4JN34IxMhSG3cvFXkZC4nuM5SLFYkCR6mBZabGnQwWoCu5Zc9rM0DWOtoPYimKRFj_LtSVssYKfOZ5AFz-b4r4zA_ltGLZBV-wbdZDmLBlUkCWL9V5y1nAwUl7L1FT2PVKrBasU7FWEyxh691xqqAvGg7apEnJ6IQ8YA_9oa4XOmULDTuaPXjjaOhNm1vDr7TMBT97sK7xPGBm0plw0ffTeoUu7b-ucqWtNf34wODr-6Dep1BsFyolvi-K_gRAPm26VXAdHJIYfi0_Q&h=12TXDfDwWWfbm0o9ApxevbKfIx4WO3F2z_fRCJUh85A - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3e351575-f6ff-4b2d-af66-0fc84f6742ea?api-version=2023-09-15&t=638327066718208800&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fwPNc0u6zRbeR5gIPAItxtJBZatkZiMZ33iFUB_61-yPH65M3F5HVSrh128UVZeoEBW45UL4JN34IxMhSG3cvFXkZC4nuM5SLFYkCR6mBZabGnQwWoCu5Zc9rM0DWOtoPYimKRFj_LtSVssYKfOZ5AFz-b4r4zA_ltGLZBV-wbdZDmLBlUkCWL9V5y1nAwUl7L1FT2PVKrBasU7FWEyxh691xqqAvGg7apEnJ6IQ8YA_9oa4XOmULDTuaPXjjaOhNm1vDr7TMBT97sK7xPGBm0plw0ffTeoUu7b-ucqWtNf34wODr-6Dep1BsFyolvi-K_gRAPm26VXAdHJIYfi0_Q&h=12TXDfDwWWfbm0o9ApxevbKfIx4WO3F2z_fRCJUh85A - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000005","properties":{"resource":{"id":"cli000005"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '360' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"The collection ''cli000005''.''cli000002'' - doesn''t exist.\r\nActivityId: fd24b2a8-68f1-11ee-a232-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '178' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '101' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b085c0a-56fe-44fd-88cc-5fb34549369f?api-version=2023-09-15&t=638327067077835873&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=yhTGcnp1RMwSu-UkPmj6RXLWjiP4_S4B975YJ_yDJmMEbqmutsn1QAmJsYdDVh1KmmJmN0Yty4w3S7jmcWfZ3rcDGNAVNCmhggpr5ri9lg_S6dSFDB9pWY_kfmbxK9t8t4kjMHFBtXWvksmdBszAlG_EO4x54teQLy5rSP_CBnlvT51mf7abBFofkkCqTR3MQKzqYViie_os3rUKzZ0a8pvUXJUBn87z847C2fnmnYBlC0_Vt-0bS2Ma7Glu-xTwDiaPZbpuaBvafIIH5wE8XI63r8F8wpEm2aUXsQeuquyjZu3920m1yiz2iFm5GefPmSp0SVUIGSQygOqQt4i2VA&h=X8jXVMVm41MgCTdQt2EPrl6OCFKAhBnk1CgR5tcO5PU - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:07 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002/operationResults/1b085c0a-56fe-44fd-88cc-5fb34549369f?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b085c0a-56fe-44fd-88cc-5fb34549369f?api-version=2023-09-15&t=638327067077835873&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=yhTGcnp1RMwSu-UkPmj6RXLWjiP4_S4B975YJ_yDJmMEbqmutsn1QAmJsYdDVh1KmmJmN0Yty4w3S7jmcWfZ3rcDGNAVNCmhggpr5ri9lg_S6dSFDB9pWY_kfmbxK9t8t4kjMHFBtXWvksmdBszAlG_EO4x54teQLy5rSP_CBnlvT51mf7abBFofkkCqTR3MQKzqYViie_os3rUKzZ0a8pvUXJUBn87z847C2fnmnYBlC0_Vt-0bS2Ma7Glu-xTwDiaPZbpuaBvafIIH5wE8XI63r8F8wpEm2aUXsQeuquyjZu3920m1yiz2iFm5GefPmSp0SVUIGSQygOqQt4i2VA&h=X8jXVMVm41MgCTdQt2EPrl6OCFKAhBnk1CgR5tcO5PU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b085c0a-56fe-44fd-88cc-5fb34549369f?api-version=2023-09-15&t=638327067077835873&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=yhTGcnp1RMwSu-UkPmj6RXLWjiP4_S4B975YJ_yDJmMEbqmutsn1QAmJsYdDVh1KmmJmN0Yty4w3S7jmcWfZ3rcDGNAVNCmhggpr5ri9lg_S6dSFDB9pWY_kfmbxK9t8t4kjMHFBtXWvksmdBszAlG_EO4x54teQLy5rSP_CBnlvT51mf7abBFofkkCqTR3MQKzqYViie_os3rUKzZ0a8pvUXJUBn87z847C2fnmnYBlC0_Vt-0bS2Ma7Glu-xTwDiaPZbpuaBvafIIH5wE8XI63r8F8wpEm2aUXsQeuquyjZu3920m1yiz2iFm5GefPmSp0SVUIGSQygOqQt4i2VA&h=X8jXVMVm41MgCTdQt2EPrl6OCFKAhBnk1CgR5tcO5PU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000003", "shardKey": {"theShardKey": - "Hash"}}, "options": {"throughput": 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '119' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf0828f8-6a53-428f-9c01-33a83dd0b4a8?api-version=2023-09-15&t=638327067418878373&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=wmUAVTzRntD-rK3NGEM_HKISfAg1O2K82iAged4VrK2ouYOJKV4iWc5g8m8hhtszkdWFIK5JbYfYNQ9mVvcmtF0rTmUsyoynT78W6o2vsHy86J5ublrayDPne2pgG9yVD4b_CiQxUt5WbgPIdW36q-9Rj35aZq_VnejVRj2OXqgvN-9dAc8BCXBrs9T2m1RfowjAHUeRSTEdINmGvtxzW-4uQd5qB5wi6EvuWvSsPggrXGrcZoDXwS55h5tqYyZPzcxo7H3Jsrjen5qPiNhTOvZxwJqgFZq9xtfiWpKousWrBWJC9b5WOSxv_UFEXkWMTYuD6AAXZlw3u6zZDwO0eA&h=kx2w3mQjKHpxJX0_J1Ans8qNU7CbGFB9wAZGAEAFwdM - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:41 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003/operationResults/cf0828f8-6a53-428f-9c01-33a83dd0b4a8?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf0828f8-6a53-428f-9c01-33a83dd0b4a8?api-version=2023-09-15&t=638327067418878373&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=wmUAVTzRntD-rK3NGEM_HKISfAg1O2K82iAged4VrK2ouYOJKV4iWc5g8m8hhtszkdWFIK5JbYfYNQ9mVvcmtF0rTmUsyoynT78W6o2vsHy86J5ublrayDPne2pgG9yVD4b_CiQxUt5WbgPIdW36q-9Rj35aZq_VnejVRj2OXqgvN-9dAc8BCXBrs9T2m1RfowjAHUeRSTEdINmGvtxzW-4uQd5qB5wi6EvuWvSsPggrXGrcZoDXwS55h5tqYyZPzcxo7H3Jsrjen5qPiNhTOvZxwJqgFZq9xtfiWpKousWrBWJC9b5WOSxv_UFEXkWMTYuD6AAXZlw3u6zZDwO0eA&h=kx2w3mQjKHpxJX0_J1Ans8qNU7CbGFB9wAZGAEAFwdM - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf0828f8-6a53-428f-9c01-33a83dd0b4a8?api-version=2023-09-15&t=638327067418878373&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=wmUAVTzRntD-rK3NGEM_HKISfAg1O2K82iAged4VrK2ouYOJKV4iWc5g8m8hhtszkdWFIK5JbYfYNQ9mVvcmtF0rTmUsyoynT78W6o2vsHy86J5ublrayDPne2pgG9yVD4b_CiQxUt5WbgPIdW36q-9Rj35aZq_VnejVRj2OXqgvN-9dAc8BCXBrs9T2m1RfowjAHUeRSTEdINmGvtxzW-4uQd5qB5wi6EvuWvSsPggrXGrcZoDXwS55h5tqYyZPzcxo7H3Jsrjen5qPiNhTOvZxwJqgFZq9xtfiWpKousWrBWJC9b5WOSxv_UFEXkWMTYuD6AAXZlw3u6zZDwO0eA&h=kx2w3mQjKHpxJX0_J1Ans8qNU7CbGFB9wAZGAEAFwdM - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000003","properties":{"resource":{"id":"cli000003","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000003","properties":{"resource":{"id":"cli000003","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '943' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfd66a8f-b433-479d-8cc0-39d9254d3aad?api-version=2023-09-15&t=638327070820661660&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=LLSsVqE_XvOSr9BxxBbRPukBy1_43vyHBLGc6hvovYH5Pgac59m2_QoCUnWdXn4FZIqezZxeAc13rwjqy00rVL_dr2R92KZcto48SVATWz_g0eMpp1Yj7ZOtPg4P1cGq6uvzjCK3r8-MsZHg2p6AHaa8sU1YUn_E2bU9QdzZWXwuaKW60V9eXSPZkCfIxCGHGPvlIhJC_HVoNdJUJrXZM22AU27oqo0T6zBRd89Gkr-EJ8VGUVH6_OOIQXp44v43QWaa98Z64V1oYbHV2OreeRZXdXszLQ-owVq9qEqZVpjJEGMTkDr7i_YQS9Z8PU3fW_9CbSHq8YSvg8WxMRUJcA&h=BzhcK8eLAQxArYtxJWafToSwOahhhociE2LhJX7Eb2Y - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:21 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002/operationResults/bfd66a8f-b433-479d-8cc0-39d9254d3aad?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfd66a8f-b433-479d-8cc0-39d9254d3aad?api-version=2023-09-15&t=638327070820661660&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=LLSsVqE_XvOSr9BxxBbRPukBy1_43vyHBLGc6hvovYH5Pgac59m2_QoCUnWdXn4FZIqezZxeAc13rwjqy00rVL_dr2R92KZcto48SVATWz_g0eMpp1Yj7ZOtPg4P1cGq6uvzjCK3r8-MsZHg2p6AHaa8sU1YUn_E2bU9QdzZWXwuaKW60V9eXSPZkCfIxCGHGPvlIhJC_HVoNdJUJrXZM22AU27oqo0T6zBRd89Gkr-EJ8VGUVH6_OOIQXp44v43QWaa98Z64V1oYbHV2OreeRZXdXszLQ-owVq9qEqZVpjJEGMTkDr7i_YQS9Z8PU3fW_9CbSHq8YSvg8WxMRUJcA&h=BzhcK8eLAQxArYtxJWafToSwOahhhociE2LhJX7Eb2Y - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfd66a8f-b433-479d-8cc0-39d9254d3aad?api-version=2023-09-15&t=638327070820661660&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=LLSsVqE_XvOSr9BxxBbRPukBy1_43vyHBLGc6hvovYH5Pgac59m2_QoCUnWdXn4FZIqezZxeAc13rwjqy00rVL_dr2R92KZcto48SVATWz_g0eMpp1Yj7ZOtPg4P1cGq6uvzjCK3r8-MsZHg2p6AHaa8sU1YUn_E2bU9QdzZWXwuaKW60V9eXSPZkCfIxCGHGPvlIhJC_HVoNdJUJrXZM22AU27oqo0T6zBRd89Gkr-EJ8VGUVH6_OOIQXp44v43QWaa98Z64V1oYbHV2OreeRZXdXszLQ-owVq9qEqZVpjJEGMTkDr7i_YQS9Z8PU3fW_9CbSHq8YSvg8WxMRUJcA&h=BzhcK8eLAQxArYtxJWafToSwOahhhociE2LhJX7Eb2Y - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b600cc6-aa3d-4d24-be75-690b64b807f5?api-version=2023-09-15&t=638327071160007251&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=zSutTtGOPwSF0npS3hZV1QZBO1QoJlfVnEliCWKpVlrLin12_ffj7ohLU7FWGlT_s5sWDqVxQ8Xjw0TVz3UpXxGYHbKt3w0-eq49YNe11QAoo8FdnN4wHCP4KsuxnIoczWjNo35Scp0QB0uPmqdYFx4OioSJqbSRMwZodap6uqm9ykrwvaFnqEMzqw4AP1KwBu50oJne-EpqoNfyjxrJAfj1JcTMpXWRJjgRd-vGhk2DG02IP9CB5riXfPeYh8ohtYaKJzGJgSemCDpIs5RBA-vVyNbh7qjxsLkqjdrRL1fXrc4QM1-EBp0iyNCNjkhPuzPYE5V8eY2KuZ4jgnTKrQ&h=WrDBoJ9SYemX-0a_waGuVpFyi5iLeWTWVcR8fovT2jQ - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:55 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003/operationResults/1b600cc6-aa3d-4d24-be75-690b64b807f5?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b600cc6-aa3d-4d24-be75-690b64b807f5?api-version=2023-09-15&t=638327071160007251&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=zSutTtGOPwSF0npS3hZV1QZBO1QoJlfVnEliCWKpVlrLin12_ffj7ohLU7FWGlT_s5sWDqVxQ8Xjw0TVz3UpXxGYHbKt3w0-eq49YNe11QAoo8FdnN4wHCP4KsuxnIoczWjNo35Scp0QB0uPmqdYFx4OioSJqbSRMwZodap6uqm9ykrwvaFnqEMzqw4AP1KwBu50oJne-EpqoNfyjxrJAfj1JcTMpXWRJjgRd-vGhk2DG02IP9CB5riXfPeYh8ohtYaKJzGJgSemCDpIs5RBA-vVyNbh7qjxsLkqjdrRL1fXrc4QM1-EBp0iyNCNjkhPuzPYE5V8eY2KuZ4jgnTKrQ&h=WrDBoJ9SYemX-0a_waGuVpFyi5iLeWTWVcR8fovT2jQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b600cc6-aa3d-4d24-be75-690b64b807f5?api-version=2023-09-15&t=638327071160007251&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=zSutTtGOPwSF0npS3hZV1QZBO1QoJlfVnEliCWKpVlrLin12_ffj7ohLU7FWGlT_s5sWDqVxQ8Xjw0TVz3UpXxGYHbKt3w0-eq49YNe11QAoo8FdnN4wHCP4KsuxnIoczWjNo35Scp0QB0uPmqdYFx4OioSJqbSRMwZodap6uqm9ykrwvaFnqEMzqw4AP1KwBu50oJne-EpqoNfyjxrJAfj1JcTMpXWRJjgRd-vGhk2DG02IP9CB5riXfPeYh8ohtYaKJzGJgSemCDpIs5RBA-vVyNbh7qjxsLkqjdrRL1fXrc4QM1-EBp0iyNCNjkhPuzPYE5V8eY2KuZ4jgnTKrQ&h=WrDBoJ9SYemX-0a_waGuVpFyi5iLeWTWVcR8fovT2jQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","oldestRestorableTime":"2023-10-12T11:13:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z"}]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","oldestRestorableTime":"2023-10-12T11:30:27+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ed392ee-a218-46d0-82d0-8fadee0ba43b","creationTime":"2023-10-12T11:30:28Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","oldestRestorableTime":"2023-10-12T11:31:22+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"660c29e5-8d7d-496d-84c7-50e7c655fae1","creationTime":"2023-10-12T11:31:23Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:32:30Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"cli000004","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:32:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '293643' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60", - "restoreTimestampInUtc": "2023-10-12T11:26:19.590154Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/16731cd5-a3fb-48a4-a2e1-e4e1afc6b325?api-version=2023-09-15-preview&t=638327071593516587&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UU3mrteA8KLa-p2XFvI5pKkJmjorS38AtAHj0n5IoqphOAFccD44zNPbHg4UZqJwA5kObGE9PPaXIKsgWgRR0eJT11doEAFz7ch5rXcu21-eF17TcI5BmMfXWS-RXnQ26taSmFEcRVLc3rlRCdzn74AHDo2StzDvwlVNgoNBXuv95wbxIF0sdkCpIog855gRPp0-qeDewO9g4sAttLmR4K6oDBI1HhEAoaYrIfbVo13u5s2ZA918tGfNgLOYqtL6FLvOyT4RnPTVIGSKPpIo0Dum35KpoS0DDrXU7aKGNnf8wXEhY0l5ALhuBZ7C9Nm8S4zwC7zRrY6bYMbYW5N97A&h=iXI-PAyTDgpJXTu8uR0LOsIvJgJJcdPTXgdmXqMvBX4 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:39 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002/operationResults/16731cd5-a3fb-48a4-a2e1-e4e1afc6b325?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/16731cd5-a3fb-48a4-a2e1-e4e1afc6b325?api-version=2023-09-15-preview&t=638327071593516587&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UU3mrteA8KLa-p2XFvI5pKkJmjorS38AtAHj0n5IoqphOAFccD44zNPbHg4UZqJwA5kObGE9PPaXIKsgWgRR0eJT11doEAFz7ch5rXcu21-eF17TcI5BmMfXWS-RXnQ26taSmFEcRVLc3rlRCdzn74AHDo2StzDvwlVNgoNBXuv95wbxIF0sdkCpIog855gRPp0-qeDewO9g4sAttLmR4K6oDBI1HhEAoaYrIfbVo13u5s2ZA918tGfNgLOYqtL6FLvOyT4RnPTVIGSKPpIo0Dum35KpoS0DDrXU7aKGNnf8wXEhY0l5ALhuBZ7C9Nm8S4zwC7zRrY6bYMbYW5N97A&h=iXI-PAyTDgpJXTu8uR0LOsIvJgJJcdPTXgdmXqMvBX4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/16731cd5-a3fb-48a4-a2e1-e4e1afc6b325?api-version=2023-09-15-preview&t=638327071593516587&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UU3mrteA8KLa-p2XFvI5pKkJmjorS38AtAHj0n5IoqphOAFccD44zNPbHg4UZqJwA5kObGE9PPaXIKsgWgRR0eJT11doEAFz7ch5rXcu21-eF17TcI5BmMfXWS-RXnQ26taSmFEcRVLc3rlRCdzn74AHDo2StzDvwlVNgoNBXuv95wbxIF0sdkCpIog855gRPp0-qeDewO9g4sAttLmR4K6oDBI1HhEAoaYrIfbVo13u5s2ZA918tGfNgLOYqtL6FLvOyT4RnPTVIGSKPpIo0Dum35KpoS0DDrXU7aKGNnf8wXEhY0l5ALhuBZ7C9Nm8S4zwC7zRrY6bYMbYW5N97A&h=iXI-PAyTDgpJXTu8uR0LOsIvJgJJcdPTXgdmXqMvBX4 - response: - body: - string: '{"status":"Failed","error":{"code":"BadRequest","message":"InAccount - restore of individual shared database collections is not supported. Please - restore shared database to restore its collections that shared the throughput.\r\nActivityId: - 065bf1f2-68f3-11ee-9806-9c7bef43f49d, Microsoft.Azure.Documents.Common/2.14.0, - Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, - Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, - Microsoft.Azure.Documents.Common/2.14.0"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '523' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef81ab48-b8e8-4d3d-b823-a07513bfb1b3?api-version=2023-09-15&t=638327071948019964&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UcihH0PcbwHnIHzCWLwGTohi3t1H_Xr3vhyKvbcy-1w0yBU4-wgNTTa8ClwbfOqcqpIjhxeX8R1G0P4iFmKyAn3GMLeXnnH78tKRwJ4XsYvy3FrTSnPSw6nPDL6d2EJazStyjPkO3-MUkRkUw-dSRMl9ZrwlB9F-1nkfpvEB4ibWLBYblvlUnskiQ_x7DXDfBOg7CX8ptXq2FdxO3zMpHGi6Wv93iP6OoZIPp7_R8yJdZxvfjmx4dx5HGrIU_O5l24k0mCb6lnxdHrFpGSXw4zwh0dPOh-C-IPyYwaeOijKeCjX5zBgOx0L8ep5shWPRdm00UvK3dQfJ3PXfGjdwIw&h=vMkGZtISy7dKKBJgpphAu5Ry3XGWWJDdzlUAvpVoHpI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:14 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/operationResults/ef81ab48-b8e8-4d3d-b823-a07513bfb1b3?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef81ab48-b8e8-4d3d-b823-a07513bfb1b3?api-version=2023-09-15&t=638327071948019964&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UcihH0PcbwHnIHzCWLwGTohi3t1H_Xr3vhyKvbcy-1w0yBU4-wgNTTa8ClwbfOqcqpIjhxeX8R1G0P4iFmKyAn3GMLeXnnH78tKRwJ4XsYvy3FrTSnPSw6nPDL6d2EJazStyjPkO3-MUkRkUw-dSRMl9ZrwlB9F-1nkfpvEB4ibWLBYblvlUnskiQ_x7DXDfBOg7CX8ptXq2FdxO3zMpHGi6Wv93iP6OoZIPp7_R8yJdZxvfjmx4dx5HGrIU_O5l24k0mCb6lnxdHrFpGSXw4zwh0dPOh-C-IPyYwaeOijKeCjX5zBgOx0L8ep5shWPRdm00UvK3dQfJ3PXfGjdwIw&h=vMkGZtISy7dKKBJgpphAu5Ry3XGWWJDdzlUAvpVoHpI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef81ab48-b8e8-4d3d-b823-a07513bfb1b3?api-version=2023-09-15&t=638327071948019964&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=UcihH0PcbwHnIHzCWLwGTohi3t1H_Xr3vhyKvbcy-1w0yBU4-wgNTTa8ClwbfOqcqpIjhxeX8R1G0P4iFmKyAn3GMLeXnnH78tKRwJ4XsYvy3FrTSnPSw6nPDL6d2EJazStyjPkO3-MUkRkUw-dSRMl9ZrwlB9F-1nkfpvEB4ibWLBYblvlUnskiQ_x7DXDfBOg7CX8ptXq2FdxO3zMpHGi6Wv93iP6OoZIPp7_R8yJdZxvfjmx4dx5HGrIU_O5l24k0mCb6lnxdHrFpGSXw4zwh0dPOh-C-IPyYwaeOijKeCjX5zBgOx0L8ep5shWPRdm00UvK3dQfJ3PXfGjdwIw&h=vMkGZtISy7dKKBJgpphAu5Ry3XGWWJDdzlUAvpVoHpI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","oldestRestorableTime":"2023-10-12T11:13:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z"}]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","oldestRestorableTime":"2023-10-12T11:32:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ba9a28f0-933f-4c5c-918a-f136dd6570f0","creationTime":"2023-10-12T11:32:57Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","oldestRestorableTime":"2023-10-12T11:31:22+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"660c29e5-8d7d-496d-84c7-50e7c655fae1","creationTime":"2023-10-12T11:31:23Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:33:49Z","restorableLocations":[]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"cli000004","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:33:51Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:33:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '294974' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000005", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60", - "restoreTimestampInUtc": "2023-10-12T11:26:19.590154Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:58 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/operationResults/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:40:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:40:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3bce4f8-4003-4313-99b1-7fd536783359?api-version=2023-09-15-preview&t=638327072386506545&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=dKlMgFxfFjoqQsFn6rQ0HkCT8d9KSyRBdjaeqRf1mG-8NRCttoz3WuWm9b5FJ03ZzH1qCB-eyyLG5qwvN1s9qT8Or4FF_DGvV-mQKG6tMk87QA9gWrUzrLg9LqpRCeeB4QwUhUVYbVFtZZtdiYBuQCUGJdIMJ_Qmurv3geWPz9cJEA-87--3s8cbduvvxLGancrxYJnhShDy66GLNeKX7L9HJTvdJMVpFGApgS_dFtLerdVRpSLzy4WsBUP5rhjSc5zoH05I30X6-yxnikWh6y09fWnwtmzb5qvrF7M6wJfdae8poiXNwwS0LsNurKBnOtAym_aLPPqtoQ0Dq3SYGw&h=a0yN136O0xjeb5tyLNobSovcrqgMt2vSIeSA5Q-XwCY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000005","properties":{"resource":{"id":"cli000005"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '360' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000005","properties":{"resource":{"id":"cli000005"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '372' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '477' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","oldestRestorableTime":"2023-10-12T11:35:17Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","oldestRestorableTime":"2023-10-12T11:35:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","oldestRestorableTime":"2023-10-12T11:35:19+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z","deletionTime":"2023-10-12T11:30:47Z"}]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1b0b8cd9-a889-4c9b-b889-7bd093310e25","creationTime":"2023-10-12T11:25:54Z","deletionTime":"2023-10-12T11:30:56Z"}]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ed392ee-a218-46d0-82d0-8fadee0ba43b","creationTime":"2023-10-12T11:30:28Z","deletionTime":"2023-10-12T11:33:27Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:41:15Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"cli000004","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:41:17Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:41:16Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '297814' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:41:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60", - "restoreTimestampInUtc": "2023-10-12T11:26:19.590154Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:23 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003/operationResults/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:43:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:43:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fb357fa5-62da-4685-9934-06f1ef53e7b6?api-version=2023-09-15-preview&t=638327076838301329&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=uDP9gnFmwcOl1Mil7PlBHivMf9Nge_Ph-s9_CzxQStkHLQF0qC-o53w5avHyir3LmyOcMTHQ6X9nSzyJqhlVoGyWo9B2EJLd6sknJv628yfaqL11iA-d7ytS_E7DtlEg4_zDVgoeJJbzMdvKPFYIYqUpJptfpr4nMSczzpFlMEkYfJEBN2fDuz7zTpNGW0K4t1fNHQDi9u3oQ00KS1azIMv8RswoXw5G9RMGY0CLQAnG0kBh755R_87gOVWgdIDUP7QkdUv4YPUB2VBxhLFDW-i5SLrOgL4dlIz1jGoGXDK-aCi9a2pnFP6nZP0wQW7S1voq2Abargn3nPpmryUlmg&h=THq88rWycRewNnZnS-9ktDB0xq1c63-cO2GVPK6UAZ0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000003","properties":{"resource":{"id":"cli000003","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '465' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000003","properties":{"resource":{"id":"cli000003","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '943' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54226946-cdc0-4226-b96d-25b5790d5fdc?api-version=2023-09-15&t=638327081150223939&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=tFfmdQhLwoj4HX7vQl9mTLo_UBbEzOq7LmiQBMwMS_u2RrfIHInf3_6PaLiIf-vrni44ICppLwWYiNWxyNC_EVIPd0RPo-PreNPvMBy4YNEE_yB5jdd2zrHmIBUmX25dZzGJwUBDQ5MvovkHNMFj6wfVbfWTMim5JgQg-RIQFHPSAzCfIVGTqdbVVFCEANT_7DNP4TQoomDjFbnBkGwpF-KoerN0bUBmLv8ZeTWMz5tGrpK27Bo_bSKOHc3b5zihGxCYmpmkNho0jqwI1gYy3cc6ZuX_Nm6uTN41FUvx_LBD9X4TlC2velTHRViMCwVHO6fa1slrpWSrNujAJXlp4g&h=aAmIamyP_mf_Q1dysMSABqL_Ey0tK5P1q0fayEW39Ks - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:34 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/operationResults/54226946-cdc0-4226-b96d-25b5790d5fdc?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54226946-cdc0-4226-b96d-25b5790d5fdc?api-version=2023-09-15&t=638327081150223939&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=tFfmdQhLwoj4HX7vQl9mTLo_UBbEzOq7LmiQBMwMS_u2RrfIHInf3_6PaLiIf-vrni44ICppLwWYiNWxyNC_EVIPd0RPo-PreNPvMBy4YNEE_yB5jdd2zrHmIBUmX25dZzGJwUBDQ5MvovkHNMFj6wfVbfWTMim5JgQg-RIQFHPSAzCfIVGTqdbVVFCEANT_7DNP4TQoomDjFbnBkGwpF-KoerN0bUBmLv8ZeTWMz5tGrpK27Bo_bSKOHc3b5zihGxCYmpmkNho0jqwI1gYy3cc6ZuX_Nm6uTN41FUvx_LBD9X4TlC2velTHRViMCwVHO6fa1slrpWSrNujAJXlp4g&h=aAmIamyP_mf_Q1dysMSABqL_Ey0tK5P1q0fayEW39Ks - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54226946-cdc0-4226-b96d-25b5790d5fdc?api-version=2023-09-15&t=638327081150223939&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=tFfmdQhLwoj4HX7vQl9mTLo_UBbEzOq7LmiQBMwMS_u2RrfIHInf3_6PaLiIf-vrni44ICppLwWYiNWxyNC_EVIPd0RPo-PreNPvMBy4YNEE_yB5jdd2zrHmIBUmX25dZzGJwUBDQ5MvovkHNMFj6wfVbfWTMim5JgQg-RIQFHPSAzCfIVGTqdbVVFCEANT_7DNP4TQoomDjFbnBkGwpF-KoerN0bUBmLv8ZeTWMz5tGrpK27Bo_bSKOHc3b5zihGxCYmpmkNho0jqwI1gYy3cc6ZuX_Nm6uTN41FUvx_LBD9X4TlC2velTHRViMCwVHO6fa1slrpWSrNujAJXlp4g&h=aAmIamyP_mf_Q1dysMSABqL_Ey0tK5P1q0fayEW39Ks - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_resources_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_resources_restore.yaml deleted file mode 100644 index 31fe78dc470..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_resources_restore.yaml +++ /dev/null @@ -1,1108 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.1 - (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001","name":"cli_test_cosmosdb_mongodb_shared_resources_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T17:04:01Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '390' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 26 Sep 2022 17:04:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": - "CentralUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '358' - Content-Type: - - application/json - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:04:09.7812954Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"2ad9c9f1-450b-48ae-870d-32c54ccd9469","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-centralus","locationName":"Central - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-centralus","locationName":"Central - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-centralus","locationName":"Central - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-centralus","locationName":"Central - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:04:09.7812954Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:04:09.7812954Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:04:09.7812954Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:04:09.7812954Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - cache-control: - - no-store, no-cache - content-length: - - '2317' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:04:11 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:04:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:05:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:05:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:06:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:07:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:07:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:08:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/50a1755d-d5f4-4524-a9cd-b1b56ca427cc?api-version=2022-08-15-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:08:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:07:58.8917401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"2ad9c9f1-450b-48ae-870d-32c54ccd9469","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-centralus","locationName":"Central - US","documentEndpoint":"https://cli000003-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-centralus","locationName":"Central - US","documentEndpoint":"https://cli000003-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-centralus","locationName":"Central - US","documentEndpoint":"https://cli000003-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-centralus","locationName":"Central - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:07:58.8917401Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:07:58.8917401Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:07:58.8917401Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:07:58.8917401Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2714' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:08:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --server-version --backup-policy-type --locations - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2022-08-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2022-09-26T17:07:58.8917401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"2ad9c9f1-450b-48ae-870d-32c54ccd9469","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-centralus","locationName":"Central - US","documentEndpoint":"https://cli000003-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-centralus","locationName":"Central - US","documentEndpoint":"https://cli000003-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-centralus","locationName":"Central - US","documentEndpoint":"https://cli000003-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-centralus","locationName":"Central - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2022-09-26T17:07:58.8917401Z"},"secondaryMasterKey":{"generationTime":"2022-09-26T17:07:58.8917401Z"},"primaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:07:58.8917401Z"},"secondaryReadonlyMasterKey":{"generationTime":"2022-09-26T17:07:58.8917401Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2714' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:08:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000004"}, "options": {"throughput": - 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2022-05-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3d2ff091-8e83-4ffd-a561-9e45eb017f7e?api-version=2022-05-15 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:08:43 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/3d2ff091-8e83-4ffd-a561-9e45eb017f7e?api-version=2022-05-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3d2ff091-8e83-4ffd-a561-9e45eb017f7e?api-version=2022-05-15 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:09:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '345' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:09:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2022-05-15 - response: - body: - string: '{"code":"NotFound","message":"The collection ''cli000004''.''cli000002'' - doesn''t exist.\r\nActivityId: f2306cfd-3dbd-11ed-9839-9c7bef4baa38, Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '178' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17: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-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - Content-Length: - - '101' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2022-05-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ce92dbd9-95b1-45ae-ab92-fc777af1a7ff?api-version=2022-05-15 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:09:16 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/ce92dbd9-95b1-45ae-ab92-fc777af1a7ff?api-version=2022-05-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ce92dbd9-95b1-45ae-ab92-fc777af1a7ff?api-version=2022-05-15 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:09:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --shard - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '450' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:09:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --idx - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2022-05-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '450' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:09:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}, "indexes": [{"key": {"keys": ["_ts"]}, "options": {"expireAfterSeconds": - 1000}}]}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection update - Connection: - - keep-alive - Content-Length: - - '183' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --idx - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2022-05-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/af83e36b-f64f-4492-ad65-330922cd9bd0?api-version=2022-05-15 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:09:49 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_resources_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/af83e36b-f64f-4492-ad65-330922cd9bd0?api-version=2022-05-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb mongodb collection update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --idx - User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-mgmt-cosmosdb/7.0.0 Python/3.10.1 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/af83e36b-f64f-4492-ad65-330922cd9bd0?api-version=2022-05-15 - response: - body: - string: '{"status":"Failed","error":{"code":"BadRequest","message":"Index definition - does not contains ''_id'' index specification.\r\nActivityId: 05df2f53-3dbe-11ed-a464-9c7bef4baa38, - Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, - Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '339' - content-type: - - application/json - date: - - Mon, 26 Sep 2022 17:10:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container.yaml deleted file mode 100644 index 1c3f3fce8ed..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container.yaml +++ /dev/null @@ -1,1237 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_container000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001","name":"cli_test_cosmosdb_sql_container000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_container","date":"2023-10-12T10:52:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '417' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:52:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '342' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:52:27.8146021Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ec60c860-cd77-4ca2-91c2-070439b03a27","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:52:27.8146021Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:52:27.8146021Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.8146021Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.8146021Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6a2ef7c-c9fa-4e49-bf8d-3dde58681e13?api-version=2023-09-15-preview&t=638327047498573963&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kYhVJlvhvZVwWJfa1HFkwLoFzDIYTic5l8vNKNBlL2opMLFRfU6NrnKnIexJeDn9yYztcEd3efYQG7t3Ww2aMGje9aeWAR6xxr_yfnqsTIU-I54UkNjKVHqRre4NVyYUBoTy805uk1hrPbajjyd-kjixH1DCorFvUjef04GJvsMNiOdgp2qKj1fDp3RKhpG2jaxdDUIXPrV44ipGnRBdHdXVwEq64Niqw4dkcTJcFh2mTY2asVkSLbmRKkgiGs0Rk3tI-71sTTacnirwiTApOgrujOo8JBcHqdiAE_6PS7bPYl1RucfQWCmcPv-uDYNAYl0h2NemtfLiOD17biMtOA&h=ZeaEXAcbQHuswahx5sqeRyoPhr8GB7B4dTY3WbiRnrc - cache-control: - - no-store, no-cache - content-length: - - '2424' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/d6a2ef7c-c9fa-4e49-bf8d-3dde58681e13?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6a2ef7c-c9fa-4e49-bf8d-3dde58681e13?api-version=2023-09-15-preview&t=638327047498573963&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kYhVJlvhvZVwWJfa1HFkwLoFzDIYTic5l8vNKNBlL2opMLFRfU6NrnKnIexJeDn9yYztcEd3efYQG7t3Ww2aMGje9aeWAR6xxr_yfnqsTIU-I54UkNjKVHqRre4NVyYUBoTy805uk1hrPbajjyd-kjixH1DCorFvUjef04GJvsMNiOdgp2qKj1fDp3RKhpG2jaxdDUIXPrV44ipGnRBdHdXVwEq64Niqw4dkcTJcFh2mTY2asVkSLbmRKkgiGs0Rk3tI-71sTTacnirwiTApOgrujOo8JBcHqdiAE_6PS7bPYl1RucfQWCmcPv-uDYNAYl0h2NemtfLiOD17biMtOA&h=ZeaEXAcbQHuswahx5sqeRyoPhr8GB7B4dTY3WbiRnrc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6a2ef7c-c9fa-4e49-bf8d-3dde58681e13?api-version=2023-09-15-preview&t=638327047498573963&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kYhVJlvhvZVwWJfa1HFkwLoFzDIYTic5l8vNKNBlL2opMLFRfU6NrnKnIexJeDn9yYztcEd3efYQG7t3Ww2aMGje9aeWAR6xxr_yfnqsTIU-I54UkNjKVHqRre4NVyYUBoTy805uk1hrPbajjyd-kjixH1DCorFvUjef04GJvsMNiOdgp2qKj1fDp3RKhpG2jaxdDUIXPrV44ipGnRBdHdXVwEq64Niqw4dkcTJcFh2mTY2asVkSLbmRKkgiGs0Rk3tI-71sTTacnirwiTApOgrujOo8JBcHqdiAE_6PS7bPYl1RucfQWCmcPv-uDYNAYl0h2NemtfLiOD17biMtOA&h=ZeaEXAcbQHuswahx5sqeRyoPhr8GB7B4dTY3WbiRnrc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6a2ef7c-c9fa-4e49-bf8d-3dde58681e13?api-version=2023-09-15-preview&t=638327047498573963&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kYhVJlvhvZVwWJfa1HFkwLoFzDIYTic5l8vNKNBlL2opMLFRfU6NrnKnIexJeDn9yYztcEd3efYQG7t3Ww2aMGje9aeWAR6xxr_yfnqsTIU-I54UkNjKVHqRre4NVyYUBoTy805uk1hrPbajjyd-kjixH1DCorFvUjef04GJvsMNiOdgp2qKj1fDp3RKhpG2jaxdDUIXPrV44ipGnRBdHdXVwEq64Niqw4dkcTJcFh2mTY2asVkSLbmRKkgiGs0Rk3tI-71sTTacnirwiTApOgrujOo8JBcHqdiAE_6PS7bPYl1RucfQWCmcPv-uDYNAYl0h2NemtfLiOD17biMtOA&h=ZeaEXAcbQHuswahx5sqeRyoPhr8GB7B4dTY3WbiRnrc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6a2ef7c-c9fa-4e49-bf8d-3dde58681e13?api-version=2023-09-15-preview&t=638327047498573963&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kYhVJlvhvZVwWJfa1HFkwLoFzDIYTic5l8vNKNBlL2opMLFRfU6NrnKnIexJeDn9yYztcEd3efYQG7t3Ww2aMGje9aeWAR6xxr_yfnqsTIU-I54UkNjKVHqRre4NVyYUBoTy805uk1hrPbajjyd-kjixH1DCorFvUjef04GJvsMNiOdgp2qKj1fDp3RKhpG2jaxdDUIXPrV44ipGnRBdHdXVwEq64Niqw4dkcTJcFh2mTY2asVkSLbmRKkgiGs0Rk3tI-71sTTacnirwiTApOgrujOo8JBcHqdiAE_6PS7bPYl1RucfQWCmcPv-uDYNAYl0h2NemtfLiOD17biMtOA&h=ZeaEXAcbQHuswahx5sqeRyoPhr8GB7B4dTY3WbiRnrc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6a2ef7c-c9fa-4e49-bf8d-3dde58681e13?api-version=2023-09-15-preview&t=638327047498573963&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kYhVJlvhvZVwWJfa1HFkwLoFzDIYTic5l8vNKNBlL2opMLFRfU6NrnKnIexJeDn9yYztcEd3efYQG7t3Ww2aMGje9aeWAR6xxr_yfnqsTIU-I54UkNjKVHqRre4NVyYUBoTy805uk1hrPbajjyd-kjixH1DCorFvUjef04GJvsMNiOdgp2qKj1fDp3RKhpG2jaxdDUIXPrV44ipGnRBdHdXVwEq64Niqw4dkcTJcFh2mTY2asVkSLbmRKkgiGs0Rk3tI-71sTTacnirwiTApOgrujOo8JBcHqdiAE_6PS7bPYl1RucfQWCmcPv-uDYNAYl0h2NemtfLiOD17biMtOA&h=ZeaEXAcbQHuswahx5sqeRyoPhr8GB7B4dTY3WbiRnrc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6a2ef7c-c9fa-4e49-bf8d-3dde58681e13?api-version=2023-09-15-preview&t=638327047498573963&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kYhVJlvhvZVwWJfa1HFkwLoFzDIYTic5l8vNKNBlL2opMLFRfU6NrnKnIexJeDn9yYztcEd3efYQG7t3Ww2aMGje9aeWAR6xxr_yfnqsTIU-I54UkNjKVHqRre4NVyYUBoTy805uk1hrPbajjyd-kjixH1DCorFvUjef04GJvsMNiOdgp2qKj1fDp3RKhpG2jaxdDUIXPrV44ipGnRBdHdXVwEq64Niqw4dkcTJcFh2mTY2asVkSLbmRKkgiGs0Rk3tI-71sTTacnirwiTApOgrujOo8JBcHqdiAE_6PS7bPYl1RucfQWCmcPv-uDYNAYl0h2NemtfLiOD17biMtOA&h=ZeaEXAcbQHuswahx5sqeRyoPhr8GB7B4dTY3WbiRnrc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:24.2290797Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ec60c860-cd77-4ca2-91c2-070439b03a27","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:24.2290797Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:24.2290797Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:24.2290797Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:24.2290797Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2782' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:24.2290797Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ec60c860-cd77-4ca2-91c2-070439b03a27","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:24.2290797Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:24.2290797Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:24.2290797Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:24.2290797Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2782' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000004"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5b03d31-c4d0-495f-abe9-00124d912f8f?api-version=2023-09-15&t=638327049048324968&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=jb8XsVrt3aounlodx0flWCDUt44ma3E8hSR6QeVqH7BQnHDh8u4VKGcD9MrMxS6VIcrWeLMGykQM9cUy23JAokr1VNXqnTzUvPM1kaFNErH-3DaeuJqNKkSHu2TCIvqkCvKIKX479wTb6C7560EOXSXGXOT5XMjmBSx-zOF5MFGYi_5D9v3p_y7YG9SWig6dYxlegvscE-QuaucSGmbSMFZOe3i0L_xQzZycVfj1kgxbfg4vA0PfOpNRA-5PQRnDMr19hrv-TcItq3yCivoxd6kqSJZWKsIQPpO2Ni2UnsOiIb4Qmo11gF-Ir7cFviyi5SQ3v09K4jF7HmsKRI_XFA&h=vflfRF_B8UZHE-uoeDy4Pk8UZApYl5qGdY0b13-prCQ - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:04 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/operationResults/f5b03d31-c4d0-495f-abe9-00124d912f8f?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5b03d31-c4d0-495f-abe9-00124d912f8f?api-version=2023-09-15&t=638327049048324968&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=jb8XsVrt3aounlodx0flWCDUt44ma3E8hSR6QeVqH7BQnHDh8u4VKGcD9MrMxS6VIcrWeLMGykQM9cUy23JAokr1VNXqnTzUvPM1kaFNErH-3DaeuJqNKkSHu2TCIvqkCvKIKX479wTb6C7560EOXSXGXOT5XMjmBSx-zOF5MFGYi_5D9v3p_y7YG9SWig6dYxlegvscE-QuaucSGmbSMFZOe3i0L_xQzZycVfj1kgxbfg4vA0PfOpNRA-5PQRnDMr19hrv-TcItq3yCivoxd6kqSJZWKsIQPpO2Ni2UnsOiIb4Qmo11gF-Ir7cFviyi5SQ3v09K4jF7HmsKRI_XFA&h=vflfRF_B8UZHE-uoeDy4Pk8UZApYl5qGdY0b13-prCQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5b03d31-c4d0-495f-abe9-00124d912f8f?api-version=2023-09-15&t=638327049048324968&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=jb8XsVrt3aounlodx0flWCDUt44ma3E8hSR6QeVqH7BQnHDh8u4VKGcD9MrMxS6VIcrWeLMGykQM9cUy23JAokr1VNXqnTzUvPM1kaFNErH-3DaeuJqNKkSHu2TCIvqkCvKIKX479wTb6C7560EOXSXGXOT5XMjmBSx-zOF5MFGYi_5D9v3p_y7YG9SWig6dYxlegvscE-QuaucSGmbSMFZOe3i0L_xQzZycVfj1kgxbfg4vA0PfOpNRA-5PQRnDMr19hrv-TcItq3yCivoxd6kqSJZWKsIQPpO2Ni2UnsOiIb4Qmo11gF-Ir7cFviyi5SQ3v09K4jF7HmsKRI_XFA&h=vflfRF_B8UZHE-uoeDy4Pk8UZApYl5qGdY0b13-prCQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"7t1lAA==","_self":"dbs/7t1lAA==/","_etag":"\"0000ed06-0000-0700-0000-6527d08e0000\"","_colls":"colls/","_users":"users/","_ts":1697108110}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '464' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '265' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c283465b-5c80-4893-94f8-836552489278?api-version=2023-09-15-preview&t=638327049391223178&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fzJpzKpaWlIGc-0CcjhIJLwsQ6QuwrZv2ewR-Ii8w2dgbsGhu-8CxbhR4s_OGQWCA5LyvxcBeAck4sjZG1xmSGVik308Oz8Yl8s_t637fZ9yTUb64YIhxat_qHeC-mk4i_N9K_Nw0DrBxezsK9UPbseBgX3l1PCUBDu5CJswFR8_n8cKVSPLauNSQ3NSrvpUjKotiDf0RbzCgKUY2NOr9SkTuuy5xDSRrRoHElR_YLEjwbOzF7LNvARG2ieuqVKicmMExpPru7CTT5RWzLNvU10vTMZ-HINhmH92Vdz83mGptP-rMlOPgx0UBa6z9hDNrgyB7iMK8hwpKv9eP04V9Q&h=9RjxGROEBxpqKgP0fLfV0nJ6BC_Q4SjogEt0SzBLPgU - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:38 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002/operationResults/c283465b-5c80-4893-94f8-836552489278?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c283465b-5c80-4893-94f8-836552489278?api-version=2023-09-15-preview&t=638327049391223178&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fzJpzKpaWlIGc-0CcjhIJLwsQ6QuwrZv2ewR-Ii8w2dgbsGhu-8CxbhR4s_OGQWCA5LyvxcBeAck4sjZG1xmSGVik308Oz8Yl8s_t637fZ9yTUb64YIhxat_qHeC-mk4i_N9K_Nw0DrBxezsK9UPbseBgX3l1PCUBDu5CJswFR8_n8cKVSPLauNSQ3NSrvpUjKotiDf0RbzCgKUY2NOr9SkTuuy5xDSRrRoHElR_YLEjwbOzF7LNvARG2ieuqVKicmMExpPru7CTT5RWzLNvU10vTMZ-HINhmH92Vdz83mGptP-rMlOPgx0UBa6z9hDNrgyB7iMK8hwpKv9eP04V9Q&h=9RjxGROEBxpqKgP0fLfV0nJ6BC_Q4SjogEt0SzBLPgU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c283465b-5c80-4893-94f8-836552489278?api-version=2023-09-15-preview&t=638327049391223178&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fzJpzKpaWlIGc-0CcjhIJLwsQ6QuwrZv2ewR-Ii8w2dgbsGhu-8CxbhR4s_OGQWCA5LyvxcBeAck4sjZG1xmSGVik308Oz8Yl8s_t637fZ9yTUb64YIhxat_qHeC-mk4i_N9K_Nw0DrBxezsK9UPbseBgX3l1PCUBDu5CJswFR8_n8cKVSPLauNSQ3NSrvpUjKotiDf0RbzCgKUY2NOr9SkTuuy5xDSRrRoHElR_YLEjwbOzF7LNvARG2ieuqVKicmMExpPru7CTT5RWzLNvU10vTMZ-HINhmH92Vdz83mGptP-rMlOPgx0UBa6z9hDNrgyB7iMK8hwpKv9eP04V9Q&h=9RjxGROEBxpqKgP0fLfV0nJ6BC_Q4SjogEt0SzBLPgU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"7t1lAOeIqM4=","_ts":1697108144,"_self":"dbs/7t1lAA==/colls/7t1lAOeIqM4=/","_etag":"\"0000f006-0000-0700-0000-6527d0b00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1127' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"7t1lAOeIqM4=","_ts":1697108144,"_self":"dbs/7t1lAA==/colls/7t1lAOeIqM4=/","_etag":"\"0000f006-0000-0700-0000-6527d0b00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1127' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"7t1lAOeIqM4=","_ts":1697108144,"_self":"dbs/7t1lAA==/colls/7t1lAOeIqM4=/","_etag":"\"0000f006-0000-0700-0000-6527d0b00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1127' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/invalid?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - f5f03a40-68ed-11ee-84f5-9c7bef43f49d, Request URI: /apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/2058472d-2bae-497f-9ae1-9973f07172ca/partitions/ace039bf-c7f5-42d1-811b-c2acdabe1217/replicas/133415264456914818s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T10:56:15.5603415Z, RequestEndTime: - 2023-10-12T10:56:15.5619324Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T10:55:16.9676518Z\\\",\\\"cpu\\\":2.498,\\\"memory\\\":472879544.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0498,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3442},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:26.9776868Z\\\",\\\"cpu\\\":2.075,\\\"memory\\\":472843256.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0492,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3442},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:36.9879215Z\\\",\\\"cpu\\\":2.521,\\\"memory\\\":472862996.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0482,\\\"availableThreads\\\":32759,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3423},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:46.9980220Z\\\",\\\"cpu\\\":2.111,\\\"memory\\\":472880616.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0176,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3423},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:57.0080627Z\\\",\\\"cpu\\\":2.078,\\\"memory\\\":472865484.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0409,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3425},{\\\"dateUtc\\\":\\\"2023-10-12T10:56:07.0182004Z\\\",\\\"cpu\\\":2.075,\\\"memory\\\":472878164.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.157,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3413}]}\\r\\nRequestStart: - 2023-10-12T10:56:15.5605776Z; ResponseTime: 2023-10-12T10:56:15.5619224Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11000/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/2058472d-2bae-497f-9ae1-9973f07172ca/partitions/ace039bf-c7f5-42d1-811b-c2acdabe1217/replicas/133415264456914818s, - LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.272, ActivityId: - f5f03a40-68ed-11ee-84f5-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 10:56:15 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 10:56:15 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:56:15 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 10:56:15 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:15.5604987Z\\\", - \\\"durationInMs\\\": 0.0102},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:15.5605089Z\\\", \\\"durationInMs\\\": - 0.0017},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:15.5605106Z\\\", - \\\"durationInMs\\\": 0.0597},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:56:15.5605703Z\\\", \\\"durationInMs\\\": 0.8382},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:15.5614085Z\\\", - \\\"durationInMs\\\": 0.0828},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:56:15.5614913Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:56:15.4474516Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:56:15.4474667Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:56:15.4900364Z\\\"},\\\"requestSizeInBytes\\\":482,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T10:56:15.5606303Z; - ResponseTime: 2023-10-12T10:56:15.5619324Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.25:11000/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/2058472d-2bae-497f-9ae1-9973f07172ca/partitions/ace039bf-c7f5-42d1-811b-c2acdabe1217/replicas/133415264456914819s, - LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.298, ActivityId: - f5f03a40-68ed-11ee-84f5-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 10:56:15 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 10:56:15 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:56:15 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 10:56:15 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:15.5605793Z\\\", - \\\"durationInMs\\\": 0.004},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:15.5605833Z\\\", \\\"durationInMs\\\": - 0.0022},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:15.5605855Z\\\", - \\\"durationInMs\\\": 0.0398},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:56:15.5606253Z\\\", \\\"durationInMs\\\": 0.7081},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:56:15.5613334Z\\\", - \\\"durationInMs\\\": 0.0527},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:56:15.5613861Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:56:15.3240420Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:56:15.3240568Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:56:15.3655273Z\\\"},\\\"requestSizeInBytes\\\":482,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000004/colls/invalid, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7097' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"7t1lAOeIqM4=","_ts":1697108144,"_self":"dbs/7t1lAA==/colls/7t1lAOeIqM4=/","_etag":"\"0000f006-0000-0700-0000-6527d0b00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1026' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbec2c1f-e794-4283-b186-a2613b729825?api-version=2023-09-15&t=638327049791427825&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Lr0OBCZI-BxK763BiWcO4hwmRA55iuqNVJk43B5t7qUw7emf_GGaVYSdW0hak9UTcewsiLyEhKtdFgI3uCc29nLSPhMLJ8_cB9MtyzuqBsFEmG9jk0l8p4KHeU2yUaclFq77_IE-mbYS9U-W_ndGmg9a3BWynMKVBgsSxdXREu7ku4r9CA0UmVRTdbzZ4JsLr_h9226TQf7XkXJGv9dd3IL_EPPZRRRieQfgt1srke0QDInWqpn847nwTXLq5tGzZA4FXN_IYy1XymcyrYWXsnrurSBPhmreGXKpol4mPmyZYI5e5HVf5VhLKUu91-guVmERLbHl5ZDEL1N5u0x6kA&h=gsAfgtL4WHJHtemni66AjN3U9OiIUa4l4nCzN5Lpcnc - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002/operationResults/bbec2c1f-e794-4283-b186-a2613b729825?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbec2c1f-e794-4283-b186-a2613b729825?api-version=2023-09-15&t=638327049791427825&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Lr0OBCZI-BxK763BiWcO4hwmRA55iuqNVJk43B5t7qUw7emf_GGaVYSdW0hak9UTcewsiLyEhKtdFgI3uCc29nLSPhMLJ8_cB9MtyzuqBsFEmG9jk0l8p4KHeU2yUaclFq77_IE-mbYS9U-W_ndGmg9a3BWynMKVBgsSxdXREu7ku4r9CA0UmVRTdbzZ4JsLr_h9226TQf7XkXJGv9dd3IL_EPPZRRRieQfgt1srke0QDInWqpn847nwTXLq5tGzZA4FXN_IYy1XymcyrYWXsnrurSBPhmreGXKpol4mPmyZYI5e5HVf5VhLKUu91-guVmERLbHl5ZDEL1N5u0x6kA&h=gsAfgtL4WHJHtemni66AjN3U9OiIUa4l4nCzN5Lpcnc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbec2c1f-e794-4283-b186-a2613b729825?api-version=2023-09-15&t=638327049791427825&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Lr0OBCZI-BxK763BiWcO4hwmRA55iuqNVJk43B5t7qUw7emf_GGaVYSdW0hak9UTcewsiLyEhKtdFgI3uCc29nLSPhMLJ8_cB9MtyzuqBsFEmG9jk0l8p4KHeU2yUaclFq77_IE-mbYS9U-W_ndGmg9a3BWynMKVBgsSxdXREu7ku4r9CA0UmVRTdbzZ4JsLr_h9226TQf7XkXJGv9dd3IL_EPPZRRRieQfgt1srke0QDInWqpn847nwTXLq5tGzZA4FXN_IYy1XymcyrYWXsnrurSBPhmreGXKpol4mPmyZYI5e5HVf5VhLKUu91-guVmERLbHl5ZDEL1N5u0x6kA&h=gsAfgtL4WHJHtemni66AjN3U9OiIUa4l4nCzN5Lpcnc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_adaptiveru.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_adaptiveru.yaml deleted file mode 100644 index abf1b28b7d0..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_adaptiveru.yaml +++ /dev/null @@ -1,1528 +0,0 @@ -interactions: -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/f748b0c8-f97c-42ee-9f0b-9613ebcb1a4c?api-version=2023-09-15&t=638327116158966745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=c5hPZFvJEf3BVv0OCm90k9c1GJ4vDKQXHDSaSGQ4lFuxxsxTy_CBr4-MKA-BMQpNDbaRHtLDK0gk7MTeGH3TSV3UcQIy8__VSM6RqhZHRthayLwMwWvWOCl-9Kg8Mawyav1S2V8fy2kHwLtSnu3mQoiNqrKxQMbMem2-rN5nmWnr-rhTHL3DxAHfxeCW7Ma07qysYe8mt6g2n8IQ3kSNtDdCHWFYcsBmb8k-ZrMPRngGBm6WJl5fMR2gpqcE07g3WSMK4mzncfBLUXEOq1Py-LXLbJnNTedvgepjFbT28WE7s38eja0B6G-3cdZ0TG0TGGY9YvFZLRPVlZltOAsmTw&h=yblIlRgv7sYfaZzZMc4MSvcpIkUNt0-oVvje0IkMeIs - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:46:55 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/operationResults/f748b0c8-f97c-42ee-9f0b-9613ebcb1a4c?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/f748b0c8-f97c-42ee-9f0b-9613ebcb1a4c?api-version=2023-09-15&t=638327116158966745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=c5hPZFvJEf3BVv0OCm90k9c1GJ4vDKQXHDSaSGQ4lFuxxsxTy_CBr4-MKA-BMQpNDbaRHtLDK0gk7MTeGH3TSV3UcQIy8__VSM6RqhZHRthayLwMwWvWOCl-9Kg8Mawyav1S2V8fy2kHwLtSnu3mQoiNqrKxQMbMem2-rN5nmWnr-rhTHL3DxAHfxeCW7Ma07qysYe8mt6g2n8IQ3kSNtDdCHWFYcsBmb8k-ZrMPRngGBm6WJl5fMR2gpqcE07g3WSMK4mzncfBLUXEOq1Py-LXLbJnNTedvgepjFbT28WE7s38eja0B6G-3cdZ0TG0TGGY9YvFZLRPVlZltOAsmTw&h=yblIlRgv7sYfaZzZMc4MSvcpIkUNt0-oVvje0IkMeIs - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:46:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/f748b0c8-f97c-42ee-9f0b-9613ebcb1a4c?api-version=2023-09-15&t=638327116158966745&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=c5hPZFvJEf3BVv0OCm90k9c1GJ4vDKQXHDSaSGQ4lFuxxsxTy_CBr4-MKA-BMQpNDbaRHtLDK0gk7MTeGH3TSV3UcQIy8__VSM6RqhZHRthayLwMwWvWOCl-9Kg8Mawyav1S2V8fy2kHwLtSnu3mQoiNqrKxQMbMem2-rN5nmWnr-rhTHL3DxAHfxeCW7Ma07qysYe8mt6g2n8IQ3kSNtDdCHWFYcsBmb8k-ZrMPRngGBm6WJl5fMR2gpqcE07g3WSMK4mzncfBLUXEOq1Py-LXLbJnNTedvgepjFbT28WE7s38eja0B6G-3cdZ0TG0TGGY9YvFZLRPVlZltOAsmTw&h=yblIlRgv7sYfaZzZMc4MSvcpIkUNt0-oVvje0IkMeIs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:47:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"D8UMAA==","_self":"dbs/D8UMAA==/","_etag":"\"00003708-0000-1a00-0000-6527eac70000\"","_colls":"colls/","_users":"users/","_ts":1697114823}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '437' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:47:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {"throughput": 18000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '284' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/34c76485-011e-4885-9362-910bb0c869f3?api-version=2023-09-15-preview&t=638327116503992170&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gbb9TcaRV9uZl3s-Jn0RnyJ5oF1O-u_McAS5_xYFHM-ySJL_dA3T6rqAVGNhcaSO23CVjCJFNvBaTTwr3csldudxjMWHrl48oNxV5h72fX3U0o-uDgbLgaxQRrAQqFXCIPRpO3YZeVh9NU0Dt7RQvfvsFEqkNvsCDcz6yy-0Zj1khl6PBa8UEoewQ7tPQi4Wf7hHiK_tpzEamAUTqsa86qLNfhg1FgptdK4CnXNbbW_0XYtFgbI1qVa_0TFtZQk3iTQUfk_Lf6GWBFkSU8GuvLI3gJDtcFc3HUSntD44-QVKcF6LzZBC4A6ftWSFyA3Ic9BpZaVCR9iN6C0IYWr06A&h=xAY_DJ-JAeYfq_YDcOXsdUrvYL_vHuuelpOAjxsGBRk - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:47:30 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/operationResults/34c76485-011e-4885-9362-910bb0c869f3?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/34c76485-011e-4885-9362-910bb0c869f3?api-version=2023-09-15-preview&t=638327116503992170&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gbb9TcaRV9uZl3s-Jn0RnyJ5oF1O-u_McAS5_xYFHM-ySJL_dA3T6rqAVGNhcaSO23CVjCJFNvBaTTwr3csldudxjMWHrl48oNxV5h72fX3U0o-uDgbLgaxQRrAQqFXCIPRpO3YZeVh9NU0Dt7RQvfvsFEqkNvsCDcz6yy-0Zj1khl6PBa8UEoewQ7tPQi4Wf7hHiK_tpzEamAUTqsa86qLNfhg1FgptdK4CnXNbbW_0XYtFgbI1qVa_0TFtZQk3iTQUfk_Lf6GWBFkSU8GuvLI3gJDtcFc3HUSntD44-QVKcF6LzZBC4A6ftWSFyA3Ic9BpZaVCR9iN6C0IYWr06A&h=xAY_DJ-JAeYfq_YDcOXsdUrvYL_vHuuelpOAjxsGBRk - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:47:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/34c76485-011e-4885-9362-910bb0c869f3?api-version=2023-09-15-preview&t=638327116503992170&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gbb9TcaRV9uZl3s-Jn0RnyJ5oF1O-u_McAS5_xYFHM-ySJL_dA3T6rqAVGNhcaSO23CVjCJFNvBaTTwr3csldudxjMWHrl48oNxV5h72fX3U0o-uDgbLgaxQRrAQqFXCIPRpO3YZeVh9NU0Dt7RQvfvsFEqkNvsCDcz6yy-0Zj1khl6PBa8UEoewQ7tPQi4Wf7hHiK_tpzEamAUTqsa86qLNfhg1FgptdK4CnXNbbW_0XYtFgbI1qVa_0TFtZQk3iTQUfk_Lf6GWBFkSU8GuvLI3gJDtcFc3HUSntD44-QVKcF6LzZBC4A6ftWSFyA3Ic9BpZaVCR9iN6C0IYWr06A&h=xAY_DJ-JAeYfq_YDcOXsdUrvYL_vHuuelpOAjxsGBRk - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"D8UMANIIeKA=","_ts":1697114861,"_self":"dbs/D8UMAA==/colls/D8UMANIIeKA=/","_etag":"\"00003908-0000-1a00-0000-6527eaed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"2","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"1","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1270' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughput": 3000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container throughput update - Connection: - - keep-alive - Content-Length: - - '50' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/4477a3e0-bf42-4bd2-a900-0de57d151e27?api-version=2023-09-15&t=638327116837352183&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dcw1D0krIgMZNHQb4c98KS2GKjXSTDesAsLwnFV1TEdpcgBS_HQROUxUolb7Nl_ol5tjRxgYWEhcJk8mnrhC4XBiDDAboiJVP57RGKHRxkWFOtCQRIHM0-TNrcpGAtOA9Btpcojo0jFqMejnz8YFuaKnsA0TslDNRI3KDisrzdUflzvEFb1clumHVLerhHhFFwAYUDO7iS56h0DCFb1Y_A6JqR8sazLLt0uwxfyfXWJdpeSYSVJJufAuBx0JEmf4KEyHJ_bsYNSB3xbRec7CFg0bQm7vONeK0hejRsv2CIbsA0bcnAiQavQ9xGbdmH-yluJmsM7SGcui3X_A-DWhPA&h=R8PsRojPa0tC1TimJJWgYexkj8kbR2bHZ-SlXon0e3g - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:03 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/operationResults/4477a3e0-bf42-4bd2-a900-0de57d151e27?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/4477a3e0-bf42-4bd2-a900-0de57d151e27?api-version=2023-09-15&t=638327116837352183&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dcw1D0krIgMZNHQb4c98KS2GKjXSTDesAsLwnFV1TEdpcgBS_HQROUxUolb7Nl_ol5tjRxgYWEhcJk8mnrhC4XBiDDAboiJVP57RGKHRxkWFOtCQRIHM0-TNrcpGAtOA9Btpcojo0jFqMejnz8YFuaKnsA0TslDNRI3KDisrzdUflzvEFb1clumHVLerhHhFFwAYUDO7iS56h0DCFb1Y_A6JqR8sazLLt0uwxfyfXWJdpeSYSVJJufAuBx0JEmf4KEyHJ_bsYNSB3xbRec7CFg0bQm7vONeK0hejRsv2CIbsA0bcnAiQavQ9xGbdmH-yluJmsM7SGcui3X_A-DWhPA&h=R8PsRojPa0tC1TimJJWgYexkj8kbR2bHZ-SlXon0e3g - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/4477a3e0-bf42-4bd2-a900-0de57d151e27?api-version=2023-09-15&t=638327116837352183&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dcw1D0krIgMZNHQb4c98KS2GKjXSTDesAsLwnFV1TEdpcgBS_HQROUxUolb7Nl_ol5tjRxgYWEhcJk8mnrhC4XBiDDAboiJVP57RGKHRxkWFOtCQRIHM0-TNrcpGAtOA9Btpcojo0jFqMejnz8YFuaKnsA0TslDNRI3KDisrzdUflzvEFb1clumHVLerhHhFFwAYUDO7iS56h0DCFb1Y_A6JqR8sazLLt0uwxfyfXWJdpeSYSVJJufAuBx0JEmf4KEyHJ_bsYNSB3xbRec7CFg0bQm7vONeK0hejRsv2CIbsA0bcnAiQavQ9xGbdmH-yluJmsM7SGcui3X_A-DWhPA&h=R8PsRojPa0tC1TimJJWgYexkj8kbR2bHZ-SlXon0e3g - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings","name":"kyBQ","properties":{"resource":{"throughput":3000,"minimumThroughput":"400","instantMaximumThroughput":"30000","softAllowedMaximumThroughput":"100000"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '466' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"D8UMANIIeKA=","_ts":1697114861,"_self":"dbs/D8UMAA==/colls/D8UMANIIeKA=/","_etag":"\"00003908-0000-1a00-0000-6527eaed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"1","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"2","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1270' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"physicalPartitionIds": [{"id": "-1"}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - Content-Length: - - '70' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/retrieveThroughputDistribution?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/95301fcb-f44b-45b6-b011-864e3c2979d1?api-version=2023-09-15-preview&t=638327117172695986&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pzWiAOz2DvmUSg7tw_K8hOXNXrBDLhsyAPM-TXuRBzP8RAd6-dkOtqjohA1gUXKcuSmIz76Iel2WVfW8lUgBn2sl4ELZx0pXPw7V7kJTVL-gsTbJJn6rM2KQYDXwTw651AoQvL8LJgX5W_FAi_-kMerMMcXu54Ro5I7LG8pxPa6XiPTT4ERycRuv06kVp2y6CfaSnFaS4pzAsXEqH_EqcC6T3_5sDBmvza9_RRuq4rhuVXF6DYZ68b_2b2BpNO4y-rUp8G4Kjq9yWQdsqM65jPzQsjdRHGKJTUJMe1Gl6oUHTRt-W8Sn6SWuERAjyiVjxVYVT9sNaZPJ0-cow_jkNw&h=Q9-90wHxFPhSCLmCKRV7idbAS__oR5ySllz49U1UzV8 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:36 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/retrieveThroughputDistribution/operationResults/95301fcb-f44b-45b6-b011-864e3c2979d1?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/95301fcb-f44b-45b6-b011-864e3c2979d1?api-version=2023-09-15-preview&t=638327117172695986&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pzWiAOz2DvmUSg7tw_K8hOXNXrBDLhsyAPM-TXuRBzP8RAd6-dkOtqjohA1gUXKcuSmIz76Iel2WVfW8lUgBn2sl4ELZx0pXPw7V7kJTVL-gsTbJJn6rM2KQYDXwTw651AoQvL8LJgX5W_FAi_-kMerMMcXu54Ro5I7LG8pxPa6XiPTT4ERycRuv06kVp2y6CfaSnFaS4pzAsXEqH_EqcC6T3_5sDBmvza9_RRuq4rhuVXF6DYZ68b_2b2BpNO4y-rUp8G4Kjq9yWQdsqM65jPzQsjdRHGKJTUJMe1Gl6oUHTRt-W8Sn6SWuERAjyiVjxVYVT9sNaZPJ0-cow_jkNw&h=Q9-90wHxFPhSCLmCKRV7idbAS__oR5ySllz49U1UzV8 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:48:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/95301fcb-f44b-45b6-b011-864e3c2979d1?api-version=2023-09-15-preview&t=638327117172695986&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pzWiAOz2DvmUSg7tw_K8hOXNXrBDLhsyAPM-TXuRBzP8RAd6-dkOtqjohA1gUXKcuSmIz76Iel2WVfW8lUgBn2sl4ELZx0pXPw7V7kJTVL-gsTbJJn6rM2KQYDXwTw651AoQvL8LJgX5W_FAi_-kMerMMcXu54Ro5I7LG8pxPa6XiPTT4ERycRuv06kVp2y6CfaSnFaS4pzAsXEqH_EqcC6T3_5sDBmvza9_RRuq4rhuVXF6DYZ68b_2b2BpNO4y-rUp8G4Kjq9yWQdsqM65jPzQsjdRHGKJTUJMe1Gl6oUHTRt-W8Sn6SWuERAjyiVjxVYVT9sNaZPJ0-cow_jkNw&h=Q9-90wHxFPhSCLmCKRV7idbAS__oR5ySllz49U1UzV8 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --all-partitions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/retrieveThroughputDistribution/operationResults/95301fcb-f44b-45b6-b011-864e3c2979d1?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/retrieveThroughputDistribution","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/retrieveThroughputDistribution","name":"kyBQ","properties":{"resource":{"physicalPartitionThroughputInfo":[{"throughput":1000.0,"id":"1"},{"throughput":1000.0,"id":"2"},{"throughput":1000.0,"id":"0"}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '538' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"D8UMANIIeKA=","_ts":1697114861,"_self":"dbs/D8UMAA==/colls/D8UMANIIeKA=/","_etag":"\"00003908-0000-1a00-0000-6527eaed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"1","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"2","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1270' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"physicalPartitionIds": [{"id": "0"}, {"id": - "1"}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/retrieveThroughputDistribution?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/6a2b02fa-e0f1-4b57-8e50-c441beb7d98d?api-version=2023-09-15-preview&t=638327117505483916&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=e5wqZ96xPELFaKv1qNRNBpu9bOHrGVp_hjHSC0K7rF6gzDQ2AZbslK3lk9FQ_KLOOMqS4xvkxMenmCwtQKozvg6n2A-p0PTNEKk279-ifWdxLERtECKJSv_H1KKIy0Dd6fNu2g6JW-q9T-BnZdld1gosukbifwy167IZb1sz_elE2ow0AWu8zrf8HsoNjs1ZUWe39FiD265subUXoHcUYMunFrQAgaglgu5qW3iFeFpZwVEf-IZnzz6Pl4_M2nCbs6Qqnm26oquT4IHh4HTTYJKYGykb8-pOQXcb6JDs9YX7hj_LUijBE8kLIhkSR_wt3mTSZAYc7m7Z3YWo2OgBtA&h=Eco1B2A7WSEX0t2vLgkUZxdLaSvQtVAcVzQYqrVI-Ko - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:09 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/retrieveThroughputDistribution/operationResults/6a2b02fa-e0f1-4b57-8e50-c441beb7d98d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/6a2b02fa-e0f1-4b57-8e50-c441beb7d98d?api-version=2023-09-15-preview&t=638327117505483916&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=e5wqZ96xPELFaKv1qNRNBpu9bOHrGVp_hjHSC0K7rF6gzDQ2AZbslK3lk9FQ_KLOOMqS4xvkxMenmCwtQKozvg6n2A-p0PTNEKk279-ifWdxLERtECKJSv_H1KKIy0Dd6fNu2g6JW-q9T-BnZdld1gosukbifwy167IZb1sz_elE2ow0AWu8zrf8HsoNjs1ZUWe39FiD265subUXoHcUYMunFrQAgaglgu5qW3iFeFpZwVEf-IZnzz6Pl4_M2nCbs6Qqnm26oquT4IHh4HTTYJKYGykb8-pOQXcb6JDs9YX7hj_LUijBE8kLIhkSR_wt3mTSZAYc7m7Z3YWo2OgBtA&h=Eco1B2A7WSEX0t2vLgkUZxdLaSvQtVAcVzQYqrVI-Ko - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/6a2b02fa-e0f1-4b57-8e50-c441beb7d98d?api-version=2023-09-15-preview&t=638327117505483916&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=e5wqZ96xPELFaKv1qNRNBpu9bOHrGVp_hjHSC0K7rF6gzDQ2AZbslK3lk9FQ_KLOOMqS4xvkxMenmCwtQKozvg6n2A-p0PTNEKk279-ifWdxLERtECKJSv_H1KKIy0Dd6fNu2g6JW-q9T-BnZdld1gosukbifwy167IZb1sz_elE2ow0AWu8zrf8HsoNjs1ZUWe39FiD265subUXoHcUYMunFrQAgaglgu5qW3iFeFpZwVEf-IZnzz6Pl4_M2nCbs6Qqnm26oquT4IHh4HTTYJKYGykb8-pOQXcb6JDs9YX7hj_LUijBE8kLIhkSR_wt3mTSZAYc7m7Z3YWo2OgBtA&h=Eco1B2A7WSEX0t2vLgkUZxdLaSvQtVAcVzQYqrVI-Ko - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container retrieve-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --physical-partition-ids - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/retrieveThroughputDistribution/operationResults/6a2b02fa-e0f1-4b57-8e50-c441beb7d98d?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/retrieveThroughputDistribution","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/retrieveThroughputDistribution","name":"kyBQ","properties":{"resource":{"physicalPartitionThroughputInfo":[{"throughput":1000.0,"id":"1"},{"throughput":1000.0,"id":"0"}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '507' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"D8UMANIIeKA=","_ts":1697114861,"_self":"dbs/D8UMAA==/colls/D8UMANIIeKA=/","_etag":"\"00003908-0000-1a00-0000-6527eaed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"2","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"1","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1270' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughputPolicy": "custom", "targetPhysicalPartitionThroughputInfo": - [{"id": "0", "throughput": 1200.0}, {"id": "1", "throughput": 1200.0}], "sourcePhysicalPartitionThroughputInfo": - [{"id": "2", "throughput": 0.0}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - Content-Length: - - '248' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/redistributeThroughput?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/7bbdd543-4f41-42e3-9b62-f43af9107131?api-version=2023-09-15-preview&t=638327117838078135&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=T6ezX_AfkZvWnUBRUdsAhZpQAXalua0VUCLgaBSKu5Af2BjBPi-4c4ww5sAAYNofIeliCgKOU_v_Xe9uXAO9RY4JS6f7IPD0ma3isttRYewnU-lF1I0hSqIWqSOjpanLldpxooYIj-eXz3e8Qat9vxiaBp3DXkQgZHifcETxdlJYZusVQoyMB_yqRnWGAeE-HQBSvJu2l4cR-gC8IPba-dwkp84_SiodXW7bKAFAcQEzbtgwJcWgcaN9UDRKZjFxGm0NO0ZYRCapob3MZdZD5t_6cHJCIT9vJFybNLsA9L8fVcQM26rMDgmpcmeymyLD7xGflZaCt5QKrmxXVboqIw&h=DTGl5Wcc_wl0Yt6mwT73qfV8qAoCJ1gzpzPPoP1V950 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:43 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/redistributeThroughput/operationResults/7bbdd543-4f41-42e3-9b62-f43af9107131?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/7bbdd543-4f41-42e3-9b62-f43af9107131?api-version=2023-09-15-preview&t=638327117838078135&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=T6ezX_AfkZvWnUBRUdsAhZpQAXalua0VUCLgaBSKu5Af2BjBPi-4c4ww5sAAYNofIeliCgKOU_v_Xe9uXAO9RY4JS6f7IPD0ma3isttRYewnU-lF1I0hSqIWqSOjpanLldpxooYIj-eXz3e8Qat9vxiaBp3DXkQgZHifcETxdlJYZusVQoyMB_yqRnWGAeE-HQBSvJu2l4cR-gC8IPba-dwkp84_SiodXW7bKAFAcQEzbtgwJcWgcaN9UDRKZjFxGm0NO0ZYRCapob3MZdZD5t_6cHJCIT9vJFybNLsA9L8fVcQM26rMDgmpcmeymyLD7xGflZaCt5QKrmxXVboqIw&h=DTGl5Wcc_wl0Yt6mwT73qfV8qAoCJ1gzpzPPoP1V950 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:49:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/7bbdd543-4f41-42e3-9b62-f43af9107131?api-version=2023-09-15-preview&t=638327117838078135&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=T6ezX_AfkZvWnUBRUdsAhZpQAXalua0VUCLgaBSKu5Af2BjBPi-4c4ww5sAAYNofIeliCgKOU_v_Xe9uXAO9RY4JS6f7IPD0ma3isttRYewnU-lF1I0hSqIWqSOjpanLldpxooYIj-eXz3e8Qat9vxiaBp3DXkQgZHifcETxdlJYZusVQoyMB_yqRnWGAeE-HQBSvJu2l4cR-gC8IPba-dwkp84_SiodXW7bKAFAcQEzbtgwJcWgcaN9UDRKZjFxGm0NO0ZYRCapob3MZdZD5t_6cHJCIT9vJFybNLsA9L8fVcQM26rMDgmpcmeymyLD7xGflZaCt5QKrmxXVboqIw&h=DTGl5Wcc_wl0Yt6mwT73qfV8qAoCJ1gzpzPPoP1V950 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:50:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --target-partition-info - --source-partition-info - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/redistributeThroughput/operationResults/7bbdd543-4f41-42e3-9b62-f43af9107131?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/redistributeThroughput","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/redistributeThroughput","name":"kyBQ","properties":{"resource":{"physicalPartitionThroughputInfo":[{"throughput":1200.0,"id":"1"},{"throughput":599.99999999999966,"id":"2"},{"throughput":1200.0,"id":"0"}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '534' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:50:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"D8UMANIIeKA=","_ts":1697114861,"_self":"dbs/D8UMAA==/colls/D8UMANIIeKA=/","_etag":"\"00003908-0000-1a00-0000-6527eaed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"2","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"1","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1270' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:50:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughputPolicy": "equal", "targetPhysicalPartitionThroughputInfo": - [], "sourcePhysicalPartitionThroughputInfo": []}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - Content-Length: - - '149' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/redistributeThroughput?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/8211c5b7-d2a6-4604-b13c-3c1d22176d94?api-version=2023-09-15-preview&t=638327118171130366&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=aSq1_q3FJY6VDI0Vy-dFcGzTiSUBe6QU7oM9L3zBek8eVhY4vvQJRF99foMUy6tdPHcshe4lshq0ISk6XoLBBoEH-zCBXWTxnzrOSZYU9QqN-ETQO_1Gk6OGixI5oHqJPsH9IKgdP2XLI15JJ7JCmWJAVk-myZLzr962ty78ykc3JSfASgm1qwfqMi6XC3PxkaEWNK1w0oDFa7QZnMuxE8ls0hB_OgZZph6-_tFw6U6GA3lf8huGyq7IgzOYKAW6fuSo0Jf9hDohAsTivu_SyPq4wga0fxRl2sXcfwximdSlal5QNtf7PlKAwCRoaXJApx3v7_8rOvkBPbdlSAAEvg&h=ZZ7Tkf2OpEmCAx62_4AQI4aUpqf_L6wHL7KcU8w_8h0 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:50:16 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/redistributeThroughput/operationResults/8211c5b7-d2a6-4604-b13c-3c1d22176d94?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/8211c5b7-d2a6-4604-b13c-3c1d22176d94?api-version=2023-09-15-preview&t=638327118171130366&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=aSq1_q3FJY6VDI0Vy-dFcGzTiSUBe6QU7oM9L3zBek8eVhY4vvQJRF99foMUy6tdPHcshe4lshq0ISk6XoLBBoEH-zCBXWTxnzrOSZYU9QqN-ETQO_1Gk6OGixI5oHqJPsH9IKgdP2XLI15JJ7JCmWJAVk-myZLzr962ty78ykc3JSfASgm1qwfqMi6XC3PxkaEWNK1w0oDFa7QZnMuxE8ls0hB_OgZZph6-_tFw6U6GA3lf8huGyq7IgzOYKAW6fuSo0Jf9hDohAsTivu_SyPq4wga0fxRl2sXcfwximdSlal5QNtf7PlKAwCRoaXJApx3v7_8rOvkBPbdlSAAEvg&h=ZZ7Tkf2OpEmCAx62_4AQI4aUpqf_L6wHL7KcU8w_8h0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:50:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/australiaeast/operationsStatus/8211c5b7-d2a6-4604-b13c-3c1d22176d94?api-version=2023-09-15-preview&t=638327118171130366&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=aSq1_q3FJY6VDI0Vy-dFcGzTiSUBe6QU7oM9L3zBek8eVhY4vvQJRF99foMUy6tdPHcshe4lshq0ISk6XoLBBoEH-zCBXWTxnzrOSZYU9QqN-ETQO_1Gk6OGixI5oHqJPsH9IKgdP2XLI15JJ7JCmWJAVk-myZLzr962ty78ykc3JSfASgm1qwfqMi6XC3PxkaEWNK1w0oDFa7QZnMuxE8ls0hB_OgZZph6-_tFw6U6GA3lf8huGyq7IgzOYKAW6fuSo0Jf9hDohAsTivu_SyPq4wga0fxRl2sXcfwximdSlal5QNtf7PlKAwCRoaXJApx3v7_8rOvkBPbdlSAAEvg&h=ZZ7Tkf2OpEmCAx62_4AQI4aUpqf_L6wHL7KcU8w_8h0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:50:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container redistribute-partition-throughput - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --database-name --name --evenly-distribute - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/redistributeThroughput/operationResults/8211c5b7-d2a6-4604-b13c-3c1d22176d94?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/adrutest2/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/redistributeThroughput","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/redistributeThroughput","name":"kyBQ","properties":{"resource":{"physicalPartitionThroughputInfo":[{"throughput":1000.0,"id":"1"},{"throughput":1000.0,"id":"2"},{"throughput":1000.0,"id":"0"}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '522' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:50:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_backupinfo.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_backupinfo.yaml deleted file mode 100644 index 95dd17c7955..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_backupinfo.yaml +++ /dev/null @@ -1,1886 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DocumentDB/databaseAccounts/cli000004'' - under resource group ''cli_test_cosmosdb_sql_container_backupinfo000001'' - was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '267' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:49:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_container_backupinfo000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001","name":"cli_test_cosmosdb_sql_container_backupinfo000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_container_backupinfo","date":"2023-10-12T11:49:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '451' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:49:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '344' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:49:22.2996971Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"74a73c0c-2eea-46bf-a4a5-328a67956205","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:49:22.2996971Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:49:22.2996971Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:49:22.2996971Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:49:22.2996971Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a550c67e-b94f-495f-b4e5-3a77a6c59750?api-version=2023-09-15-preview&t=638327081640057436&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NkfOoMVQyaMToZ0bqwYOodIPlVaNO9A7E7gSWRBuMSrHWIZ0SwV9YLI6Dj2JnLH91kLxm9j2DgwH1CquiG2HvMhAOd8shmRsmH-VDZ2dkxubrwpxjsLCeV8a5Yn-aE-5LPb-lr7A4TdDUR_gjw1ELaSx6fAk4qUhmHJy55yRUGls_DFQVp62r_veXXR8bePqu8jq0a0BJ3L-lDL5rRpmQG3ds1oT_70I2gCdROALHZX0I0NGbW-63CmpP0ZcX8YNxdBCFF5u4zo4r7fLb0Zsss8gLEC_1XQzL0OJ2Bdi2Rm94x36GeN4BuzsgDrVmvm9cWtwJ61B-aRmt2VqxJC4DA&h=qeK06YrMoNAdEuBLh8SgbTRhQ6cPsnwNJ1vYPerW8wc - cache-control: - - no-store, no-cache - content-length: - - '2449' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:23 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/a550c67e-b94f-495f-b4e5-3a77a6c59750?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a550c67e-b94f-495f-b4e5-3a77a6c59750?api-version=2023-09-15-preview&t=638327081640057436&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NkfOoMVQyaMToZ0bqwYOodIPlVaNO9A7E7gSWRBuMSrHWIZ0SwV9YLI6Dj2JnLH91kLxm9j2DgwH1CquiG2HvMhAOd8shmRsmH-VDZ2dkxubrwpxjsLCeV8a5Yn-aE-5LPb-lr7A4TdDUR_gjw1ELaSx6fAk4qUhmHJy55yRUGls_DFQVp62r_veXXR8bePqu8jq0a0BJ3L-lDL5rRpmQG3ds1oT_70I2gCdROALHZX0I0NGbW-63CmpP0ZcX8YNxdBCFF5u4zo4r7fLb0Zsss8gLEC_1XQzL0OJ2Bdi2Rm94x36GeN4BuzsgDrVmvm9cWtwJ61B-aRmt2VqxJC4DA&h=qeK06YrMoNAdEuBLh8SgbTRhQ6cPsnwNJ1vYPerW8wc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a550c67e-b94f-495f-b4e5-3a77a6c59750?api-version=2023-09-15-preview&t=638327081640057436&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NkfOoMVQyaMToZ0bqwYOodIPlVaNO9A7E7gSWRBuMSrHWIZ0SwV9YLI6Dj2JnLH91kLxm9j2DgwH1CquiG2HvMhAOd8shmRsmH-VDZ2dkxubrwpxjsLCeV8a5Yn-aE-5LPb-lr7A4TdDUR_gjw1ELaSx6fAk4qUhmHJy55yRUGls_DFQVp62r_veXXR8bePqu8jq0a0BJ3L-lDL5rRpmQG3ds1oT_70I2gCdROALHZX0I0NGbW-63CmpP0ZcX8YNxdBCFF5u4zo4r7fLb0Zsss8gLEC_1XQzL0OJ2Bdi2Rm94x36GeN4BuzsgDrVmvm9cWtwJ61B-aRmt2VqxJC4DA&h=qeK06YrMoNAdEuBLh8SgbTRhQ6cPsnwNJ1vYPerW8wc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a550c67e-b94f-495f-b4e5-3a77a6c59750?api-version=2023-09-15-preview&t=638327081640057436&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NkfOoMVQyaMToZ0bqwYOodIPlVaNO9A7E7gSWRBuMSrHWIZ0SwV9YLI6Dj2JnLH91kLxm9j2DgwH1CquiG2HvMhAOd8shmRsmH-VDZ2dkxubrwpxjsLCeV8a5Yn-aE-5LPb-lr7A4TdDUR_gjw1ELaSx6fAk4qUhmHJy55yRUGls_DFQVp62r_veXXR8bePqu8jq0a0BJ3L-lDL5rRpmQG3ds1oT_70I2gCdROALHZX0I0NGbW-63CmpP0ZcX8YNxdBCFF5u4zo4r7fLb0Zsss8gLEC_1XQzL0OJ2Bdi2Rm94x36GeN4BuzsgDrVmvm9cWtwJ61B-aRmt2VqxJC4DA&h=qeK06YrMoNAdEuBLh8SgbTRhQ6cPsnwNJ1vYPerW8wc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a550c67e-b94f-495f-b4e5-3a77a6c59750?api-version=2023-09-15-preview&t=638327081640057436&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NkfOoMVQyaMToZ0bqwYOodIPlVaNO9A7E7gSWRBuMSrHWIZ0SwV9YLI6Dj2JnLH91kLxm9j2DgwH1CquiG2HvMhAOd8shmRsmH-VDZ2dkxubrwpxjsLCeV8a5Yn-aE-5LPb-lr7A4TdDUR_gjw1ELaSx6fAk4qUhmHJy55yRUGls_DFQVp62r_veXXR8bePqu8jq0a0BJ3L-lDL5rRpmQG3ds1oT_70I2gCdROALHZX0I0NGbW-63CmpP0ZcX8YNxdBCFF5u4zo4r7fLb0Zsss8gLEC_1XQzL0OJ2Bdi2Rm94x36GeN4BuzsgDrVmvm9cWtwJ61B-aRmt2VqxJC4DA&h=qeK06YrMoNAdEuBLh8SgbTRhQ6cPsnwNJ1vYPerW8wc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a550c67e-b94f-495f-b4e5-3a77a6c59750?api-version=2023-09-15-preview&t=638327081640057436&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NkfOoMVQyaMToZ0bqwYOodIPlVaNO9A7E7gSWRBuMSrHWIZ0SwV9YLI6Dj2JnLH91kLxm9j2DgwH1CquiG2HvMhAOd8shmRsmH-VDZ2dkxubrwpxjsLCeV8a5Yn-aE-5LPb-lr7A4TdDUR_gjw1ELaSx6fAk4qUhmHJy55yRUGls_DFQVp62r_veXXR8bePqu8jq0a0BJ3L-lDL5rRpmQG3ds1oT_70I2gCdROALHZX0I0NGbW-63CmpP0ZcX8YNxdBCFF5u4zo4r7fLb0Zsss8gLEC_1XQzL0OJ2Bdi2Rm94x36GeN4BuzsgDrVmvm9cWtwJ61B-aRmt2VqxJC4DA&h=qeK06YrMoNAdEuBLh8SgbTRhQ6cPsnwNJ1vYPerW8wc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a550c67e-b94f-495f-b4e5-3a77a6c59750?api-version=2023-09-15-preview&t=638327081640057436&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=NkfOoMVQyaMToZ0bqwYOodIPlVaNO9A7E7gSWRBuMSrHWIZ0SwV9YLI6Dj2JnLH91kLxm9j2DgwH1CquiG2HvMhAOd8shmRsmH-VDZ2dkxubrwpxjsLCeV8a5Yn-aE-5LPb-lr7A4TdDUR_gjw1ELaSx6fAk4qUhmHJy55yRUGls_DFQVp62r_veXXR8bePqu8jq0a0BJ3L-lDL5rRpmQG3ds1oT_70I2gCdROALHZX0I0NGbW-63CmpP0ZcX8YNxdBCFF5u4zo4r7fLb0Zsss8gLEC_1XQzL0OJ2Bdi2Rm94x36GeN4BuzsgDrVmvm9cWtwJ61B-aRmt2VqxJC4DA&h=qeK06YrMoNAdEuBLh8SgbTRhQ6cPsnwNJ1vYPerW8wc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:51:12.2790617Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"74a73c0c-2eea-46bf-a4a5-328a67956205","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2810' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:51:12.2790617Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"74a73c0c-2eea-46bf-a4a5-328a67956205","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2810' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:51:12.2790617Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"74a73c0c-2eea-46bf-a4a5-328a67956205","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:51:12.2790617Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2810' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - bf9b2572-68f5-11ee-ac8b-9c7bef43f49d, Request URI: /apps/f9613ab1-44a7-4c27-9acb-6ea1119a1018/services/97ef1ff0-959f-4254-af9a-abd1bc2d2cf6/partitions/a8284756-21c2-46d4-91b3-194d9b42ac09/replicas/133398444032602861s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T11:52:00.2692234Z, RequestEndTime: - 2023-10-12T11:52:00.2706615Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T11:51:03.4707504Z\\\",\\\"cpu\\\":0.156,\\\"memory\\\":420970144.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0475,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":433},{\\\"dateUtc\\\":\\\"2023-10-12T11:51:13.4807074Z\\\",\\\"cpu\\\":0.295,\\\"memory\\\":420986228.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0499,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":434},{\\\"dateUtc\\\":\\\"2023-10-12T11:51:23.4905923Z\\\",\\\"cpu\\\":0.691,\\\"memory\\\":420974452.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0498,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":433},{\\\"dateUtc\\\":\\\"2023-10-12T11:51:33.5004760Z\\\",\\\"cpu\\\":0.197,\\\"memory\\\":420950616.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0367,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":433},{\\\"dateUtc\\\":\\\"2023-10-12T11:51:43.5103977Z\\\",\\\"cpu\\\":0.561,\\\"memory\\\":420981868.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0534,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":433},{\\\"dateUtc\\\":\\\"2023-10-12T11:51:53.5202984Z\\\",\\\"cpu\\\":0.210,\\\"memory\\\":420980480.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0506,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":427}]}\\r\\nRequestStart: - 2023-10-12T11:52:00.2694136Z; ResponseTime: 2023-10-12T11:52:00.2706542Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.8:11300/apps/f9613ab1-44a7-4c27-9acb-6ea1119a1018/services/97ef1ff0-959f-4254-af9a-abd1bc2d2cf6/partitions/a8284756-21c2-46d4-91b3-194d9b42ac09/replicas/133398444032602861s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.683, ActivityId: - bf9b2572-68f5-11ee-ac8b-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:52:00 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:52:00 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:52:00 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:52:00 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:00.2693366Z\\\", - \\\"durationInMs\\\": 0.0078},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:00.2693444Z\\\", \\\"durationInMs\\\": - 0.0016},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:00.2693460Z\\\", - \\\"durationInMs\\\": 0.0604},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:52:00.2694064Z\\\", \\\"durationInMs\\\": 0.8268},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:00.2702332Z\\\", - \\\"durationInMs\\\": 0.048},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:52:00.2702812Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:52:00.2037936Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:52:00.2038266Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:52:00.2340230Z\\\"},\\\"requestSizeInBytes\\\":464,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2023-10-12T11:52:00.2694555Z; - ResponseTime: 2023-10-12T11:52:00.2706615Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.5:11300/apps/f9613ab1-44a7-4c27-9acb-6ea1119a1018/services/97ef1ff0-959f-4254-af9a-abd1bc2d2cf6/partitions/a8284756-21c2-46d4-91b3-194d9b42ac09/replicas/133398444066665314s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.711, ActivityId: - bf9b2572-68f5-11ee-ac8b-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:52:00 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:52:00 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:52:00 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:52:00 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:00.2694154Z\\\", - \\\"durationInMs\\\": 0.0029},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:00.2694183Z\\\", \\\"durationInMs\\\": - 0.0008},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:00.2694191Z\\\", - \\\"durationInMs\\\": 0.0321},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:52:00.2694512Z\\\", \\\"durationInMs\\\": 0.9531},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:00.2704043Z\\\", - \\\"durationInMs\\\": 0.06},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:52:00.2704643Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:52:00.2037292Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:52:00.2037551Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:52:00.2330226Z\\\"},\\\"requestSizeInBytes\\\":464,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7065' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34f9244d-9d57-48a7-a570-1c82d2e9aa55?api-version=2023-09-15&t=638327083220319814&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AjhgJZuzwiEeLrdLOSZ1iyrBAZLMVZfiilSzu5BTlysRBVOwdSED5qmt60Pf9NVEzTq9mg8TrmXPKX9JqfO8uEBrvp5UWxUeVmcl-0nfjBAxWu3hLNzhzjkOA-FZyZhVM9otLuXpshfeKYiQ43eTJ0owq_fOv7s7YyFUJNKDvL-GLoQ4AC0bZqscAzVCxVkEgBvV5Va7O9YB7W5rLHt_JjU7qZeUc_wGAqL5FjTWxe7caabzbiEwgIyoyGVqJ_kct4JDjtE7JetaEnIPDjkhyJ38zOmJwpyn69UWFe8Dk-BiYBxO_56fsAG5mGr1b5XXoZ84mAnsQvPyuhzXEojiLg&h=92M2OWYkVJ-Kx0nRyxLMcqvNuo2kxPCD3LSI3URWdkw - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:01 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/operationResults/34f9244d-9d57-48a7-a570-1c82d2e9aa55?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34f9244d-9d57-48a7-a570-1c82d2e9aa55?api-version=2023-09-15&t=638327083220319814&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AjhgJZuzwiEeLrdLOSZ1iyrBAZLMVZfiilSzu5BTlysRBVOwdSED5qmt60Pf9NVEzTq9mg8TrmXPKX9JqfO8uEBrvp5UWxUeVmcl-0nfjBAxWu3hLNzhzjkOA-FZyZhVM9otLuXpshfeKYiQ43eTJ0owq_fOv7s7YyFUJNKDvL-GLoQ4AC0bZqscAzVCxVkEgBvV5Va7O9YB7W5rLHt_JjU7qZeUc_wGAqL5FjTWxe7caabzbiEwgIyoyGVqJ_kct4JDjtE7JetaEnIPDjkhyJ38zOmJwpyn69UWFe8Dk-BiYBxO_56fsAG5mGr1b5XXoZ84mAnsQvPyuhzXEojiLg&h=92M2OWYkVJ-Kx0nRyxLMcqvNuo2kxPCD3LSI3URWdkw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34f9244d-9d57-48a7-a570-1c82d2e9aa55?api-version=2023-09-15&t=638327083220319814&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AjhgJZuzwiEeLrdLOSZ1iyrBAZLMVZfiilSzu5BTlysRBVOwdSED5qmt60Pf9NVEzTq9mg8TrmXPKX9JqfO8uEBrvp5UWxUeVmcl-0nfjBAxWu3hLNzhzjkOA-FZyZhVM9otLuXpshfeKYiQ43eTJ0owq_fOv7s7YyFUJNKDvL-GLoQ4AC0bZqscAzVCxVkEgBvV5Va7O9YB7W5rLHt_JjU7qZeUc_wGAqL5FjTWxe7caabzbiEwgIyoyGVqJ_kct4JDjtE7JetaEnIPDjkhyJ38zOmJwpyn69UWFe8Dk-BiYBxO_56fsAG5mGr1b5XXoZ84mAnsQvPyuhzXEojiLg&h=92M2OWYkVJ-Kx0nRyxLMcqvNuo2kxPCD3LSI3URWdkw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"9ddTAA==","_self":"dbs/9ddTAA==/","_etag":"\"0000c806-0000-0200-0000-6527dde70000\"","_colls":"colls/","_users":"users/","_ts":1697111527}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"9ddTAA==","_self":"dbs/9ddTAA==/","_etag":"\"0000c806-0000-0200-0000-6527dde70000\"","_colls":"colls/","_users":"users/","_ts":1697111527}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - d48433b5-68f5-11ee-a8e4-9c7bef43f49d, Request URI: /apps/f9613ab1-44a7-4c27-9acb-6ea1119a1018/services/97ef1ff0-959f-4254-af9a-abd1bc2d2cf6/partitions/a8284756-21c2-46d4-91b3-194d9b42ac09/replicas/133398444066665314s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T11:52:35.8961101Z, RequestEndTime: - 2023-10-12T11:52:35.8989137Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T11:51:37.0388617Z\\\",\\\"cpu\\\":0.515,\\\"memory\\\":421632524.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0493,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":235},{\\\"dateUtc\\\":\\\"2023-10-12T11:51:47.0487396Z\\\",\\\"cpu\\\":0.261,\\\"memory\\\":421621572.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0504,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":226},{\\\"dateUtc\\\":\\\"2023-10-12T11:51:57.0590478Z\\\",\\\"cpu\\\":0.156,\\\"memory\\\":421635592.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0339,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":229},{\\\"dateUtc\\\":\\\"2023-10-12T11:52:07.0684851Z\\\",\\\"cpu\\\":0.454,\\\"memory\\\":421632908.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0487,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":230},{\\\"dateUtc\\\":\\\"2023-10-12T11:52:17.0782669Z\\\",\\\"cpu\\\":0.510,\\\"memory\\\":421640576.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0414,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":230},{\\\"dateUtc\\\":\\\"2023-10-12T11:52:27.0880854Z\\\",\\\"cpu\\\":0.551,\\\"memory\\\":421637452.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0674,\\\"availableThreads\\\":32765,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":230}]}\\r\\nRequestStart: - 2023-10-12T11:52:35.8962798Z; ResponseTime: 2023-10-12T11:52:35.8989069Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.5:11300/apps/f9613ab1-44a7-4c27-9acb-6ea1119a1018/services/97ef1ff0-959f-4254-af9a-abd1bc2d2cf6/partitions/a8284756-21c2-46d4-91b3-194d9b42ac09/replicas/133398444066665314s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.782, ActivityId: - d48433b5-68f5-11ee-a8e4-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:52:35 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:52:35 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:52:35 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:52:35 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:35.8961679Z\\\", - \\\"durationInMs\\\": 0.0159},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:35.8961838Z\\\", \\\"durationInMs\\\": - 0.0224},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:35.8962062Z\\\", - \\\"durationInMs\\\": 0.0625},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:52:35.8962687Z\\\", \\\"durationInMs\\\": 1.0917},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:35.8973604Z\\\", - \\\"durationInMs\\\": 0.0748},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:52:35.8974352Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:52:32.8437141Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:52:32.8437367Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:52:32.8445582Z\\\"},\\\"requestSizeInBytes\\\":496,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T11:52:35.8963422Z; - ResponseTime: 2023-10-12T11:52:35.8989137Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.11:11300/apps/f9613ab1-44a7-4c27-9acb-6ea1119a1018/services/97ef1ff0-959f-4254-af9a-abd1bc2d2cf6/partitions/a8284756-21c2-46d4-91b3-194d9b42ac09/replicas/133398444066665316s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 2.049, ActivityId: - d48433b5-68f5-11ee-a8e4-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:52:35 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:52:35 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:52:35 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:52:35 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:35.8962824Z\\\", - \\\"durationInMs\\\": 0.0046},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:35.8962870Z\\\", \\\"durationInMs\\\": - 0.0024},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:35.8962894Z\\\", - \\\"durationInMs\\\": 0.0468},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:52:35.8963362Z\\\", \\\"durationInMs\\\": 2.3649},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:52:35.8987011Z\\\", - \\\"durationInMs\\\": 0.063},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:52:35.8987641Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:52:35.3455228Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:52:35.3455352Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:52:35.3460021Z\\\"},\\\"requestSizeInBytes\\\":496,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000003/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7094' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '265' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ef3beb32-05a8-4914-954c-e1e6f7884368?api-version=2023-09-15-preview&t=638327083582343300&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=S76M8RVlQZpjmptnS4Btxk_OuOQ7EYJUtGvmtpQIwpcE07CzqtoVMtRCYPA3TL3bFJ4W8ZWL0dlt0Fgyls4Nm7l9nwWWZz8alcVH0LtmqRXJVEo5dLYtcAa9R84JiOMPkA41Pbb-mNVILbAiLqpxA9hZS2ne2-j23H61bF3F5oAeX3CJJ0zM4y3mucduc6mZmmptCQ_97yatUURkfpLSbHDbRB9RpjvWAdDvDpMG1c4zoq-ErTUi_k6X4ne4ondn5efh4faK5ADV-ahkAGEuGLUKzXIkfzfZU9nrPOEtm_2x-1eLXphDAex9bzGbLOEOFOL8QgIZDObWnt99zlRGTw&h=OXrCQA8LO1ZppN_kzhxo7_Vt-A7f_f06SP6_R6PHdnI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:37 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/operationResults/ef3beb32-05a8-4914-954c-e1e6f7884368?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ef3beb32-05a8-4914-954c-e1e6f7884368?api-version=2023-09-15-preview&t=638327083582343300&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=S76M8RVlQZpjmptnS4Btxk_OuOQ7EYJUtGvmtpQIwpcE07CzqtoVMtRCYPA3TL3bFJ4W8ZWL0dlt0Fgyls4Nm7l9nwWWZz8alcVH0LtmqRXJVEo5dLYtcAa9R84JiOMPkA41Pbb-mNVILbAiLqpxA9hZS2ne2-j23H61bF3F5oAeX3CJJ0zM4y3mucduc6mZmmptCQ_97yatUURkfpLSbHDbRB9RpjvWAdDvDpMG1c4zoq-ErTUi_k6X4ne4ondn5efh4faK5ADV-ahkAGEuGLUKzXIkfzfZU9nrPOEtm_2x-1eLXphDAex9bzGbLOEOFOL8QgIZDObWnt99zlRGTw&h=OXrCQA8LO1ZppN_kzhxo7_Vt-A7f_f06SP6_R6PHdnI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ef3beb32-05a8-4914-954c-e1e6f7884368?api-version=2023-09-15-preview&t=638327083582343300&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=S76M8RVlQZpjmptnS4Btxk_OuOQ7EYJUtGvmtpQIwpcE07CzqtoVMtRCYPA3TL3bFJ4W8ZWL0dlt0Fgyls4Nm7l9nwWWZz8alcVH0LtmqRXJVEo5dLYtcAa9R84JiOMPkA41Pbb-mNVILbAiLqpxA9hZS2ne2-j23H61bF3F5oAeX3CJJ0zM4y3mucduc6mZmmptCQ_97yatUURkfpLSbHDbRB9RpjvWAdDvDpMG1c4zoq-ErTUi_k6X4ne4ondn5efh4faK5ADV-ahkAGEuGLUKzXIkfzfZU9nrPOEtm_2x-1eLXphDAex9bzGbLOEOFOL8QgIZDObWnt99zlRGTw&h=OXrCQA8LO1ZppN_kzhxo7_Vt-A7f_f06SP6_R6PHdnI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"9ddTAJpdGq8=","_ts":1697111563,"_self":"dbs/9ddTAA==/colls/9ddTAJpdGq8=/","_etag":"\"0000cb06-0000-0200-0000-6527de0b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1138' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"9ddTAA==","_self":"dbs/9ddTAA==/","_etag":"\"0000c806-0000-0200-0000-6527dde70000\"","_colls":"colls/","_users":"users/","_ts":1697111527}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"9ddTAJpdGq8=","_ts":1697111563,"_self":"dbs/9ddTAA==/colls/9ddTAJpdGq8=/","_etag":"\"0000cb06-0000-0200-0000-6527de0b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1138' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:22 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/17b62d35-efad-42c6-a195-3640d5a3435d?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/17b62d35-efad-42c6-a195-3640d5a3435d?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:22 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/17b62d35-efad-42c6-a195-3640d5a3435d?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/17b62d35-efad-42c6-a195-3640d5a3435d?api-version=2023-09-15 - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:53:30 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"9ddTAA==","_self":"dbs/9ddTAA==/","_etag":"\"0000c806-0000-0200-0000-6527dde70000\"","_colls":"colls/","_users":"users/","_ts":1697111527}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"9ddTAJpdGq8=","_ts":1697111563,"_self":"dbs/9ddTAA==/colls/9ddTAJpdGq8=/","_etag":"\"0000cb06-0000-0200-0000-6527de0b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1138' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:57 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/a4645aad-4565-4c99-9b2f-d4d4e6ea1027?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/a4645aad-4565-4c99-9b2f-d4d4e6ea1027?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:57 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/a4645aad-4565-4c99-9b2f-d4d4e6ea1027?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/a4645aad-4565-4c99-9b2f-d4d4e6ea1027?api-version=2023-09-15 - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:54:03 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"9ddTAA==","_self":"dbs/9ddTAA==/","_etag":"\"0000c806-0000-0200-0000-6527dde70000\"","_colls":"colls/","_users":"users/","_ts":1697111527}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"9ddTAJpdGq8=","_ts":1697111563,"_self":"dbs/9ddTAA==/colls/9ddTAJpdGq8=/","_etag":"\"0000cb06-0000-0200-0000-6527de0b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1138' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:32 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/d38a3717-f70b-4218-9314-3917512785fa?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/d38a3717-f70b-4218-9314-3917512785fa?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:32 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/d38a3717-f70b-4218-9314-3917512785fa?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -c -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000003/containers/cli000002/retrieveContinuousBackupInformation/operationResults/d38a3717-f70b-4218-9314-3917512785fa?api-version=2023-09-15 - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 11:54:37 AM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_merge.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_merge.yaml deleted file mode 100644 index 8bd82c7bdf9..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container_merge.yaml +++ /dev/null @@ -1,1113 +0,0 @@ -interactions: -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ea335fc0-a5fe-4dd3-8f62-0640c0a27691?api-version=2023-09-15&t=638327058633402742&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FAgQ8pITUlGyb8QftcuTs34Q8oblsP-3IZWdS_eELidqLZdCzyccXfc7F13lT4by6b9c0eVMvdr-IAyI9eZvJro-sf4zUXM4eUN8jYPVjahBNHC__41hRIaoLS6ueJiBkGzectnBjcU_tAylv5qSPiQ-S2hHxYVsoHiedq8peC_nctwEBHeUg7wrOdRsWo6fifqo8CjyhPpLdgEFme0PqO0klzfy5jXGZl8vBr3Q98vn1LZNePta7Mbh8ftgAsG3SILVWceI70CWc4e29S7X47UXMv9b0D1tBVl9jr4s1wlUjHPv5w76tuRlmbSYe7fkTN-IHjugrsbieC3SwLVBNw&h=nAUy7VHXHVCPtnG30rMWCE8CjfnS2-NXLiOFVgDSg0I - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:02 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/operationResults/ea335fc0-a5fe-4dd3-8f62-0640c0a27691?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ea335fc0-a5fe-4dd3-8f62-0640c0a27691?api-version=2023-09-15&t=638327058633402742&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FAgQ8pITUlGyb8QftcuTs34Q8oblsP-3IZWdS_eELidqLZdCzyccXfc7F13lT4by6b9c0eVMvdr-IAyI9eZvJro-sf4zUXM4eUN8jYPVjahBNHC__41hRIaoLS6ueJiBkGzectnBjcU_tAylv5qSPiQ-S2hHxYVsoHiedq8peC_nctwEBHeUg7wrOdRsWo6fifqo8CjyhPpLdgEFme0PqO0klzfy5jXGZl8vBr3Q98vn1LZNePta7Mbh8ftgAsG3SILVWceI70CWc4e29S7X47UXMv9b0D1tBVl9jr4s1wlUjHPv5w76tuRlmbSYe7fkTN-IHjugrsbieC3SwLVBNw&h=nAUy7VHXHVCPtnG30rMWCE8CjfnS2-NXLiOFVgDSg0I - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ea335fc0-a5fe-4dd3-8f62-0640c0a27691?api-version=2023-09-15&t=638327058633402742&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=FAgQ8pITUlGyb8QftcuTs34Q8oblsP-3IZWdS_eELidqLZdCzyccXfc7F13lT4by6b9c0eVMvdr-IAyI9eZvJro-sf4zUXM4eUN8jYPVjahBNHC__41hRIaoLS6ueJiBkGzectnBjcU_tAylv5qSPiQ-S2hHxYVsoHiedq8peC_nctwEBHeUg7wrOdRsWo6fifqo8CjyhPpLdgEFme0PqO0klzfy5jXGZl8vBr3Q98vn1LZNePta7Mbh8ftgAsG3SILVWceI70CWc4e29S7X47UXMv9b0D1tBVl9jr4s1wlUjHPv5w76tuRlmbSYe7fkTN-IHjugrsbieC3SwLVBNw&h=nAUy7VHXHVCPtnG30rMWCE8CjfnS2-NXLiOFVgDSg0I - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"80UhAA==","_self":"dbs/80UhAA==/","_etag":"\"00009805-0000-0700-0000-6527d44c0000\"","_colls":"colls/","_users":"users/","_ts":1697109068}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '438' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {"throughput": 30000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '284' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6823c1ec-64ee-43ff-8b19-0fd4494395ee?api-version=2023-09-15-preview&t=638327058974902853&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=bBnp0Axos5J2JvX35Uxg2mXzsmqtNC17zZNbk6W-0LIkMcofVQjsM7ISa12p7GtsMQFdEaAxaGgsqXLqInSa0mjTRFd_31dQHz7SG5j0XWohKNgX_GRY4p_PZq92rrSqOEZG3jR0BDdPV5XoHtw00XOJ1FTKyLjsTwTOp-nX4HOP8JTD-PugU9I1HMv_hDL3WbiHnaLVnthU45Ad56Y7NNEmLT5BnQsddtqtomSl8HZYV7Ln5Xgaj4i7_sLzmK8FG6s1360mmalVsSpyXL5dGtFx63Au-2clUepJScvkLuL12FcQGlAId3iQWw062Z_cKLL72xqJum7wrGx3gTq0LQ&h=zv3DBOqQgjYqjrc5mVGgPCDyornsAuxmISSc1xDNpjE - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:37 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/operationResults/6823c1ec-64ee-43ff-8b19-0fd4494395ee?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6823c1ec-64ee-43ff-8b19-0fd4494395ee?api-version=2023-09-15-preview&t=638327058974902853&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=bBnp0Axos5J2JvX35Uxg2mXzsmqtNC17zZNbk6W-0LIkMcofVQjsM7ISa12p7GtsMQFdEaAxaGgsqXLqInSa0mjTRFd_31dQHz7SG5j0XWohKNgX_GRY4p_PZq92rrSqOEZG3jR0BDdPV5XoHtw00XOJ1FTKyLjsTwTOp-nX4HOP8JTD-PugU9I1HMv_hDL3WbiHnaLVnthU45Ad56Y7NNEmLT5BnQsddtqtomSl8HZYV7Ln5Xgaj4i7_sLzmK8FG6s1360mmalVsSpyXL5dGtFx63Au-2clUepJScvkLuL12FcQGlAId3iQWw062Z_cKLL72xqJum7wrGx3gTq0LQ&h=zv3DBOqQgjYqjrc5mVGgPCDyornsAuxmISSc1xDNpjE - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6823c1ec-64ee-43ff-8b19-0fd4494395ee?api-version=2023-09-15-preview&t=638327058974902853&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=bBnp0Axos5J2JvX35Uxg2mXzsmqtNC17zZNbk6W-0LIkMcofVQjsM7ISa12p7GtsMQFdEaAxaGgsqXLqInSa0mjTRFd_31dQHz7SG5j0XWohKNgX_GRY4p_PZq92rrSqOEZG3jR0BDdPV5XoHtw00XOJ1FTKyLjsTwTOp-nX4HOP8JTD-PugU9I1HMv_hDL3WbiHnaLVnthU45Ad56Y7NNEmLT5BnQsddtqtomSl8HZYV7Ln5Xgaj4i7_sLzmK8FG6s1360mmalVsSpyXL5dGtFx63Au-2clUepJScvkLuL12FcQGlAId3iQWw062Z_cKLL72xqJum7wrGx3gTq0LQ&h=zv3DBOqQgjYqjrc5mVGgPCDyornsAuxmISSc1xDNpjE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"80UhAOPfHX8=","_ts":1697109105,"_self":"dbs/80UhAA==/colls/80UhAOPfHX8=/","_etag":"\"00009a05-0000-0700-0000-6527d4710000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"4","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"2","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"3","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"1","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1467' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughput": 3000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container throughput update - Connection: - - keep-alive - Content-Length: - - '50' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6e1863e8-da18-44b7-8a88-db19f27765fa?api-version=2023-09-15&t=638327059308924416&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=m-fu3Y9Gr5S4fdJIo0y8ayPt9xWsO3h2EC8p7zVki8Y7N3ECikndhzDT_U63MmOc1cTwdRwT5RRUh41c9ggEybXbb2446xxhJLbaIZ3iUwBT7DhsA3rh9FRJv3UwIg-DPmOb1vuYP1x0jCDnjE3w9js5dalotmS5ks8Mf6O_UDBOQvBIRPXYyqjg7NBJ6hMIAVRx4RWL-hr5F6fxpOtxX52-Tu5vV1NBKGeqn12J_HwlxWqdeEY5j8FNWR5QurFF71DXWtaLtlJ3Le6rs4ryNFwVcZgICRbkmQ7XNEvRsjarGIOwztmj_86GjGTWzP9BR5d7lUW3el-XNNjSyrzVfw&h=le7-pT0_W2tjLsGsOo4GvpVK07FOgZ80lU-qvVxRiHk - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:10 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default/operationResults/6e1863e8-da18-44b7-8a88-db19f27765fa?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6e1863e8-da18-44b7-8a88-db19f27765fa?api-version=2023-09-15&t=638327059308924416&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=m-fu3Y9Gr5S4fdJIo0y8ayPt9xWsO3h2EC8p7zVki8Y7N3ECikndhzDT_U63MmOc1cTwdRwT5RRUh41c9ggEybXbb2446xxhJLbaIZ3iUwBT7DhsA3rh9FRJv3UwIg-DPmOb1vuYP1x0jCDnjE3w9js5dalotmS5ks8Mf6O_UDBOQvBIRPXYyqjg7NBJ6hMIAVRx4RWL-hr5F6fxpOtxX52-Tu5vV1NBKGeqn12J_HwlxWqdeEY5j8FNWR5QurFF71DXWtaLtlJ3Le6rs4ryNFwVcZgICRbkmQ7XNEvRsjarGIOwztmj_86GjGTWzP9BR5d7lUW3el-XNNjSyrzVfw&h=le7-pT0_W2tjLsGsOo4GvpVK07FOgZ80lU-qvVxRiHk - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6e1863e8-da18-44b7-8a88-db19f27765fa?api-version=2023-09-15&t=638327059308924416&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=m-fu3Y9Gr5S4fdJIo0y8ayPt9xWsO3h2EC8p7zVki8Y7N3ECikndhzDT_U63MmOc1cTwdRwT5RRUh41c9ggEybXbb2446xxhJLbaIZ3iUwBT7DhsA3rh9FRJv3UwIg-DPmOb1vuYP1x0jCDnjE3w9js5dalotmS5ks8Mf6O_UDBOQvBIRPXYyqjg7NBJ6hMIAVRx4RWL-hr5F6fxpOtxX52-Tu5vV1NBKGeqn12J_HwlxWqdeEY5j8FNWR5QurFF71DXWtaLtlJ3Le6rs4ryNFwVcZgICRbkmQ7XNEvRsjarGIOwztmj_86GjGTWzP9BR5d7lUW3el-XNNjSyrzVfw&h=le7-pT0_W2tjLsGsOo4GvpVK07FOgZ80lU-qvVxRiHk - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings","name":"krSm","properties":{"resource":{"throughput":3000,"minimumThroughput":"500","instantMaximumThroughput":"50000","softAllowedMaximumThroughput":"100000"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '467' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"80UhAOPfHX8=","_ts":1697109105,"_self":"dbs/80UhAA==/colls/80UhAOPfHX8=/","_etag":"\"00009a05-0000-0700-0000-6527d4710000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"3","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"4","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"2","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"1","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1467' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"isDryRun": false}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - Content-Length: - - '19' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:47 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:47 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:48 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:19 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:50 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:20 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:51 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:22 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:52 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/mergetest1/sqlDatabases/cli000003/containers/cli000002/partitionMerge/operationResults/7826b61e-3090-432b-9929-8511faeb6928?api-version=2023-09-15-preview - response: - body: - string: '{"physicalPartitionStorageInfoCollection":[{"storageInKB":0.0,"id":"5"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '73' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_continuous30days.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_continuous30days.yaml deleted file mode 100644 index c3674300dd9..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_continuous30days.yaml +++ /dev/null @@ -1,896 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_provision_continuous30days000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001","name":"cli_test_cosmosdb_sql_provision_continuous30days000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_continuous30days","date":"2023-10-12T11:28:34Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '459' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:28:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '344' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:28:41.3329833Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:28:41.3329833Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:28:41.3329833Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:28:41.3329833Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:28:41.3329833Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/78706398-ce1a-455c-a131-7cc0bcb788be?api-version=2023-09-15-preview&t=638327069231108791&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kpUI3tkpFTdcni_oM0IWJ21PTPi-Stb7G_rTZyVAEC5odSN2xDpPdFRru1jx3YFB4T_jgy9qGfqRCe6bGv33ooydRavjumVQhq0CWDWaPUMXZVJ5G6nWq-gEBqr2XhNKVSdNJTGKApvojKi3Cdrg09BtD7ynIDq6hPFp8MqNXF03FfJr-IrIShi3kJ5y9EEoPP4D5r1arePD2kbrDu95HIFNJvoulxZ4K2YMYD1gvtnZKagRo8-WwNWBb9VQzXMnnOVrc4bB-ZyqIWNs7gwHoC20uLkWkqt_z4TNsj34Y4gD8AdimaYG9H5XOHX9eOXdtrnEdUUhMx1wBkISIQJQsA&h=YCiSc-bdIweqkLhfJ-dF-msnhy0TDmKc4lFU_cf16-0 - cache-control: - - no-store, no-cache - content-length: - - '2539' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:43 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004/operationResults/78706398-ce1a-455c-a131-7cc0bcb788be?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/78706398-ce1a-455c-a131-7cc0bcb788be?api-version=2023-09-15-preview&t=638327069231108791&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kpUI3tkpFTdcni_oM0IWJ21PTPi-Stb7G_rTZyVAEC5odSN2xDpPdFRru1jx3YFB4T_jgy9qGfqRCe6bGv33ooydRavjumVQhq0CWDWaPUMXZVJ5G6nWq-gEBqr2XhNKVSdNJTGKApvojKi3Cdrg09BtD7ynIDq6hPFp8MqNXF03FfJr-IrIShi3kJ5y9EEoPP4D5r1arePD2kbrDu95HIFNJvoulxZ4K2YMYD1gvtnZKagRo8-WwNWBb9VQzXMnnOVrc4bB-ZyqIWNs7gwHoC20uLkWkqt_z4TNsj34Y4gD8AdimaYG9H5XOHX9eOXdtrnEdUUhMx1wBkISIQJQsA&h=YCiSc-bdIweqkLhfJ-dF-msnhy0TDmKc4lFU_cf16-0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/78706398-ce1a-455c-a131-7cc0bcb788be?api-version=2023-09-15-preview&t=638327069231108791&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kpUI3tkpFTdcni_oM0IWJ21PTPi-Stb7G_rTZyVAEC5odSN2xDpPdFRru1jx3YFB4T_jgy9qGfqRCe6bGv33ooydRavjumVQhq0CWDWaPUMXZVJ5G6nWq-gEBqr2XhNKVSdNJTGKApvojKi3Cdrg09BtD7ynIDq6hPFp8MqNXF03FfJr-IrIShi3kJ5y9EEoPP4D5r1arePD2kbrDu95HIFNJvoulxZ4K2YMYD1gvtnZKagRo8-WwNWBb9VQzXMnnOVrc4bB-ZyqIWNs7gwHoC20uLkWkqt_z4TNsj34Y4gD8AdimaYG9H5XOHX9eOXdtrnEdUUhMx1wBkISIQJQsA&h=YCiSc-bdIweqkLhfJ-dF-msnhy0TDmKc4lFU_cf16-0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/78706398-ce1a-455c-a131-7cc0bcb788be?api-version=2023-09-15-preview&t=638327069231108791&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kpUI3tkpFTdcni_oM0IWJ21PTPi-Stb7G_rTZyVAEC5odSN2xDpPdFRru1jx3YFB4T_jgy9qGfqRCe6bGv33ooydRavjumVQhq0CWDWaPUMXZVJ5G6nWq-gEBqr2XhNKVSdNJTGKApvojKi3Cdrg09BtD7ynIDq6hPFp8MqNXF03FfJr-IrIShi3kJ5y9EEoPP4D5r1arePD2kbrDu95HIFNJvoulxZ4K2YMYD1gvtnZKagRo8-WwNWBb9VQzXMnnOVrc4bB-ZyqIWNs7gwHoC20uLkWkqt_z4TNsj34Y4gD8AdimaYG9H5XOHX9eOXdtrnEdUUhMx1wBkISIQJQsA&h=YCiSc-bdIweqkLhfJ-dF-msnhy0TDmKc4lFU_cf16-0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/78706398-ce1a-455c-a131-7cc0bcb788be?api-version=2023-09-15-preview&t=638327069231108791&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kpUI3tkpFTdcni_oM0IWJ21PTPi-Stb7G_rTZyVAEC5odSN2xDpPdFRru1jx3YFB4T_jgy9qGfqRCe6bGv33ooydRavjumVQhq0CWDWaPUMXZVJ5G6nWq-gEBqr2XhNKVSdNJTGKApvojKi3Cdrg09BtD7ynIDq6hPFp8MqNXF03FfJr-IrIShi3kJ5y9EEoPP4D5r1arePD2kbrDu95HIFNJvoulxZ4K2YMYD1gvtnZKagRo8-WwNWBb9VQzXMnnOVrc4bB-ZyqIWNs7gwHoC20uLkWkqt_z4TNsj34Y4gD8AdimaYG9H5XOHX9eOXdtrnEdUUhMx1wBkISIQJQsA&h=YCiSc-bdIweqkLhfJ-dF-msnhy0TDmKc4lFU_cf16-0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:30:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/78706398-ce1a-455c-a131-7cc0bcb788be?api-version=2023-09-15-preview&t=638327069231108791&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kpUI3tkpFTdcni_oM0IWJ21PTPi-Stb7G_rTZyVAEC5odSN2xDpPdFRru1jx3YFB4T_jgy9qGfqRCe6bGv33ooydRavjumVQhq0CWDWaPUMXZVJ5G6nWq-gEBqr2XhNKVSdNJTGKApvojKi3Cdrg09BtD7ynIDq6hPFp8MqNXF03FfJr-IrIShi3kJ5y9EEoPP4D5r1arePD2kbrDu95HIFNJvoulxZ4K2YMYD1gvtnZKagRo8-WwNWBb9VQzXMnnOVrc4bB-ZyqIWNs7gwHoC20uLkWkqt_z4TNsj34Y4gD8AdimaYG9H5XOHX9eOXdtrnEdUUhMx1wBkISIQJQsA&h=YCiSc-bdIweqkLhfJ-dF-msnhy0TDmKc4lFU_cf16-0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:30:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/78706398-ce1a-455c-a131-7cc0bcb788be?api-version=2023-09-15-preview&t=638327069231108791&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=kpUI3tkpFTdcni_oM0IWJ21PTPi-Stb7G_rTZyVAEC5odSN2xDpPdFRru1jx3YFB4T_jgy9qGfqRCe6bGv33ooydRavjumVQhq0CWDWaPUMXZVJ5G6nWq-gEBqr2XhNKVSdNJTGKApvojKi3Cdrg09BtD7ynIDq6hPFp8MqNXF03FfJr-IrIShi3kJ5y9EEoPP4D5r1arePD2kbrDu95HIFNJvoulxZ4K2YMYD1gvtnZKagRo8-WwNWBb9VQzXMnnOVrc4bB-ZyqIWNs7gwHoC20uLkWkqt_z4TNsj34Y4gD8AdimaYG9H5XOHX9eOXdtrnEdUUhMx1wBkISIQJQsA&h=YCiSc-bdIweqkLhfJ-dF-msnhy0TDmKc4lFU_cf16-0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:30:26.8175307Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2970' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:30:26.8175307Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2970' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:30:26.8175307Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2970' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:30:26.8175307Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2970' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous7Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '134' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:30:26.8175307Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2164f740-2811-4702-b98a-26b33cf9d40d?api-version=2023-09-15-preview&t=638327070855079380&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qVtPmhTg_eV1eYxtNTRoJG4axp9D_dFlAeQT4IEKHT9K_d14yc6S5pQvZKvaSkevfiVqQQWAb5_SWJVa_ntWuA1Lp0Zygxs2fhIUZS4l42rBuAo--9HpdGeg8v8CLxaOupz77-qqvCFDXcy3oga5Y3fxqR4fVSgZ4txg0-LFUAa9ZKGAf9U0U6wbyObZDSQpb-AmZK2Ntuy2tuuIGYaQPukukYyN3-agfrSQ02VjYo185xZWoVRRixx_GUrVY4yfR0RW0yjGeELnUok6-iDfHlTklfvqzcIdyIaie0phr8pzqg9t8UVhHwoW9pOwiy5g2sSYOAU-pNgsqgpswaT23g&h=fTh4LyRG0ZDu8tKR31MF6o31IChYSmVYPUu5q_LAmHE - cache-control: - - no-store, no-cache - content-length: - - '2969' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:24 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004/operationResults/2164f740-2811-4702-b98a-26b33cf9d40d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2164f740-2811-4702-b98a-26b33cf9d40d?api-version=2023-09-15-preview&t=638327070855079380&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qVtPmhTg_eV1eYxtNTRoJG4axp9D_dFlAeQT4IEKHT9K_d14yc6S5pQvZKvaSkevfiVqQQWAb5_SWJVa_ntWuA1Lp0Zygxs2fhIUZS4l42rBuAo--9HpdGeg8v8CLxaOupz77-qqvCFDXcy3oga5Y3fxqR4fVSgZ4txg0-LFUAa9ZKGAf9U0U6wbyObZDSQpb-AmZK2Ntuy2tuuIGYaQPukukYyN3-agfrSQ02VjYo185xZWoVRRixx_GUrVY4yfR0RW0yjGeELnUok6-iDfHlTklfvqzcIdyIaie0phr8pzqg9t8UVhHwoW9pOwiy5g2sSYOAU-pNgsqgpswaT23g&h=fTh4LyRG0ZDu8tKR31MF6o31IChYSmVYPUu5q_LAmHE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2164f740-2811-4702-b98a-26b33cf9d40d?api-version=2023-09-15-preview&t=638327070855079380&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=qVtPmhTg_eV1eYxtNTRoJG4axp9D_dFlAeQT4IEKHT9K_d14yc6S5pQvZKvaSkevfiVqQQWAb5_SWJVa_ntWuA1Lp0Zygxs2fhIUZS4l42rBuAo--9HpdGeg8v8CLxaOupz77-qqvCFDXcy3oga5Y3fxqR4fVSgZ4txg0-LFUAa9ZKGAf9U0U6wbyObZDSQpb-AmZK2Ntuy2tuuIGYaQPukukYyN3-agfrSQ02VjYo185xZWoVRRixx_GUrVY4yfR0RW0yjGeELnUok6-iDfHlTklfvqzcIdyIaie0phr8pzqg9t8UVhHwoW9pOwiy5g2sSYOAU-pNgsqgpswaT23g&h=fTh4LyRG0ZDu8tKR31MF6o31IChYSmVYPUu5q_LAmHE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:30:26.8175307+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2994' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:30:26.8175307+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2994' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous30days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous30-000004","name":"cli-continuous30-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:30:26.8175307+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous30-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"be4ed731-be4b-42c9-a86a-572ac082f6c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous30-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous30-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:30:26.8175307+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2994' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_continuous7days.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_continuous7days.yaml deleted file mode 100644 index a2309c1d659..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_continuous7days.yaml +++ /dev/null @@ -1,896 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_provision_continuous7days000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001","name":"cli_test_cosmosdb_sql_provision_continuous7days000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_continuous7days","date":"2023-10-12T11:29:25Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '456' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:29:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous7Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '343' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:29:31.7654733Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:29:31.7654733Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:29:31.7654733Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:29:31.7654733Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:29:31.7654733Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/50c6f9fe-f166-478d-8fe5-5cc722b9e8f3?api-version=2023-09-15-preview&t=638327069736166903&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y6GYZmPra99zgW9yT6w_FwNSfs6JQhskvfiS5yNkNiJqRSFIUl1NPCqOrY8rBISWXRrPlgiMIKL2SzJqmv2Y7h3CZ2TNsLKJOjbO1v7bVhK_VMWy65VMxdwjf_vFSIyWyCetielY5zCd5HzZOaxqqyUnExr82mwIegps0upPOVz1dcJTfU2Y8Zf7BkoVuoKpR1Fbig9UGhCketdoEseTILTtaIPbZf0svGEvmx-14YSsK2SOFlG31Vin2pwuqf6NeJBqwq3Z9T19W1pm7Ew2fVAUsNWDAdiSE4J6tkgtNnQf5vJBOdSEGTFyYqr15XzxUFmQEeIEvJvR1xw9g8rQDQ&h=bQGG_fzzxrcKL77A5f0eKtLEHJR_sGSPMC-_jJBhH8o - cache-control: - - no-store, no-cache - content-length: - - '2531' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:33 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004/operationResults/50c6f9fe-f166-478d-8fe5-5cc722b9e8f3?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/50c6f9fe-f166-478d-8fe5-5cc722b9e8f3?api-version=2023-09-15-preview&t=638327069736166903&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y6GYZmPra99zgW9yT6w_FwNSfs6JQhskvfiS5yNkNiJqRSFIUl1NPCqOrY8rBISWXRrPlgiMIKL2SzJqmv2Y7h3CZ2TNsLKJOjbO1v7bVhK_VMWy65VMxdwjf_vFSIyWyCetielY5zCd5HzZOaxqqyUnExr82mwIegps0upPOVz1dcJTfU2Y8Zf7BkoVuoKpR1Fbig9UGhCketdoEseTILTtaIPbZf0svGEvmx-14YSsK2SOFlG31Vin2pwuqf6NeJBqwq3Z9T19W1pm7Ew2fVAUsNWDAdiSE4J6tkgtNnQf5vJBOdSEGTFyYqr15XzxUFmQEeIEvJvR1xw9g8rQDQ&h=bQGG_fzzxrcKL77A5f0eKtLEHJR_sGSPMC-_jJBhH8o - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/50c6f9fe-f166-478d-8fe5-5cc722b9e8f3?api-version=2023-09-15-preview&t=638327069736166903&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y6GYZmPra99zgW9yT6w_FwNSfs6JQhskvfiS5yNkNiJqRSFIUl1NPCqOrY8rBISWXRrPlgiMIKL2SzJqmv2Y7h3CZ2TNsLKJOjbO1v7bVhK_VMWy65VMxdwjf_vFSIyWyCetielY5zCd5HzZOaxqqyUnExr82mwIegps0upPOVz1dcJTfU2Y8Zf7BkoVuoKpR1Fbig9UGhCketdoEseTILTtaIPbZf0svGEvmx-14YSsK2SOFlG31Vin2pwuqf6NeJBqwq3Z9T19W1pm7Ew2fVAUsNWDAdiSE4J6tkgtNnQf5vJBOdSEGTFyYqr15XzxUFmQEeIEvJvR1xw9g8rQDQ&h=bQGG_fzzxrcKL77A5f0eKtLEHJR_sGSPMC-_jJBhH8o - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:30:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/50c6f9fe-f166-478d-8fe5-5cc722b9e8f3?api-version=2023-09-15-preview&t=638327069736166903&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y6GYZmPra99zgW9yT6w_FwNSfs6JQhskvfiS5yNkNiJqRSFIUl1NPCqOrY8rBISWXRrPlgiMIKL2SzJqmv2Y7h3CZ2TNsLKJOjbO1v7bVhK_VMWy65VMxdwjf_vFSIyWyCetielY5zCd5HzZOaxqqyUnExr82mwIegps0upPOVz1dcJTfU2Y8Zf7BkoVuoKpR1Fbig9UGhCketdoEseTILTtaIPbZf0svGEvmx-14YSsK2SOFlG31Vin2pwuqf6NeJBqwq3Z9T19W1pm7Ew2fVAUsNWDAdiSE4J6tkgtNnQf5vJBOdSEGTFyYqr15XzxUFmQEeIEvJvR1xw9g8rQDQ&h=bQGG_fzzxrcKL77A5f0eKtLEHJR_sGSPMC-_jJBhH8o - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:30:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/50c6f9fe-f166-478d-8fe5-5cc722b9e8f3?api-version=2023-09-15-preview&t=638327069736166903&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y6GYZmPra99zgW9yT6w_FwNSfs6JQhskvfiS5yNkNiJqRSFIUl1NPCqOrY8rBISWXRrPlgiMIKL2SzJqmv2Y7h3CZ2TNsLKJOjbO1v7bVhK_VMWy65VMxdwjf_vFSIyWyCetielY5zCd5HzZOaxqqyUnExr82mwIegps0upPOVz1dcJTfU2Y8Zf7BkoVuoKpR1Fbig9UGhCketdoEseTILTtaIPbZf0svGEvmx-14YSsK2SOFlG31Vin2pwuqf6NeJBqwq3Z9T19W1pm7Ew2fVAUsNWDAdiSE4J6tkgtNnQf5vJBOdSEGTFyYqr15XzxUFmQEeIEvJvR1xw9g8rQDQ&h=bQGG_fzzxrcKL77A5f0eKtLEHJR_sGSPMC-_jJBhH8o - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/50c6f9fe-f166-478d-8fe5-5cc722b9e8f3?api-version=2023-09-15-preview&t=638327069736166903&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y6GYZmPra99zgW9yT6w_FwNSfs6JQhskvfiS5yNkNiJqRSFIUl1NPCqOrY8rBISWXRrPlgiMIKL2SzJqmv2Y7h3CZ2TNsLKJOjbO1v7bVhK_VMWy65VMxdwjf_vFSIyWyCetielY5zCd5HzZOaxqqyUnExr82mwIegps0upPOVz1dcJTfU2Y8Zf7BkoVuoKpR1Fbig9UGhCketdoEseTILTtaIPbZf0svGEvmx-14YSsK2SOFlG31Vin2pwuqf6NeJBqwq3Z9T19W1pm7Ew2fVAUsNWDAdiSE4J6tkgtNnQf5vJBOdSEGTFyYqr15XzxUFmQEeIEvJvR1xw9g8rQDQ&h=bQGG_fzzxrcKL77A5f0eKtLEHJR_sGSPMC-_jJBhH8o - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/50c6f9fe-f166-478d-8fe5-5cc722b9e8f3?api-version=2023-09-15-preview&t=638327069736166903&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Y6GYZmPra99zgW9yT6w_FwNSfs6JQhskvfiS5yNkNiJqRSFIUl1NPCqOrY8rBISWXRrPlgiMIKL2SzJqmv2Y7h3CZ2TNsLKJOjbO1v7bVhK_VMWy65VMxdwjf_vFSIyWyCetielY5zCd5HzZOaxqqyUnExr82mwIegps0upPOVz1dcJTfU2Y8Zf7BkoVuoKpR1Fbig9UGhCketdoEseTILTtaIPbZf0svGEvmx-14YSsK2SOFlG31Vin2pwuqf6NeJBqwq3Z9T19W1pm7Ew2fVAUsNWDAdiSE4J6tkgtNnQf5vJBOdSEGTFyYqr15XzxUFmQEeIEvJvR1xw9g8rQDQ&h=bQGG_fzzxrcKL77A5f0eKtLEHJR_sGSPMC-_jJBhH8o - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:21.5433178Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2957' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:21.5433178Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2957' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:21.5433178Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2957' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:21.5433178Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2957' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '135' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:21.5433178Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/88e00caf-3cc6-49ab-a3f0-e3546d07f590?api-version=2023-09-15-preview&t=638327071339702326&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=mRDeFJNKofD-MguqDVzqcZhXwRbo7heL-8HGpkzGUHomFff_plUb5DOTMuVT_NJg-ubiTWicRCXVTtKAp_XYQ8PgKv4ho_G-n_mabj4hHbC9U71UDw7TthaHCeVlabfqdVj1SodUWIG_2uz35dCF3iTC17glWctp-tGtUN3VW5n_i-dkIA9ff_IuzppDKi7ktfx1zX2_GFR_b4-2agidaII5gy6KbvnCDTQzMiebYWkuWg4tHC0oXEbBfN_cDGIPMegRoaqjKkK13ffsXoRowAmlaUPZvk9ip3zauXYoB5JMQWgXGc9IvlJaWyjHJumQ9RAiRu79JBYnBiv37Jfw8A&h=bo-50U8AL55tgnZABo3G5vXGtaCXguiH8x04xq8Hld4 - cache-control: - - no-store, no-cache - content-length: - - '2956' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:13 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004/operationResults/88e00caf-3cc6-49ab-a3f0-e3546d07f590?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/88e00caf-3cc6-49ab-a3f0-e3546d07f590?api-version=2023-09-15-preview&t=638327071339702326&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=mRDeFJNKofD-MguqDVzqcZhXwRbo7heL-8HGpkzGUHomFff_plUb5DOTMuVT_NJg-ubiTWicRCXVTtKAp_XYQ8PgKv4ho_G-n_mabj4hHbC9U71UDw7TthaHCeVlabfqdVj1SodUWIG_2uz35dCF3iTC17glWctp-tGtUN3VW5n_i-dkIA9ff_IuzppDKi7ktfx1zX2_GFR_b4-2agidaII5gy6KbvnCDTQzMiebYWkuWg4tHC0oXEbBfN_cDGIPMegRoaqjKkK13ffsXoRowAmlaUPZvk9ip3zauXYoB5JMQWgXGc9IvlJaWyjHJumQ9RAiRu79JBYnBiv37Jfw8A&h=bo-50U8AL55tgnZABo3G5vXGtaCXguiH8x04xq8Hld4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/88e00caf-3cc6-49ab-a3f0-e3546d07f590?api-version=2023-09-15-preview&t=638327071339702326&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=mRDeFJNKofD-MguqDVzqcZhXwRbo7heL-8HGpkzGUHomFff_plUb5DOTMuVT_NJg-ubiTWicRCXVTtKAp_XYQ8PgKv4ho_G-n_mabj4hHbC9U71UDw7TthaHCeVlabfqdVj1SodUWIG_2uz35dCF3iTC17glWctp-tGtUN3VW5n_i-dkIA9ff_IuzppDKi7ktfx1zX2_GFR_b4-2agidaII5gy6KbvnCDTQzMiebYWkuWg4tHC0oXEbBfN_cDGIPMegRoaqjKkK13ffsXoRowAmlaUPZvk9ip3zauXYoB5JMQWgXGc9IvlJaWyjHJumQ9RAiRu79JBYnBiv37Jfw8A&h=bo-50U8AL55tgnZABo3G5vXGtaCXguiH8x04xq8Hld4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:21.5433178+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2983' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:21.5433178+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2983' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_provision_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:21.5433178+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:21.5433178+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2983' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database.yaml deleted file mode 100644 index 28c45465e38..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database.yaml +++ /dev/null @@ -1,1085 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_database000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001","name":"cli_test_cosmosdb_sql_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_database","date":"2023-10-12T10:56:57Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '414' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:57:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '342' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:57:08.1811958Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"b3478ae0-a78c-4967-89e5-d27885114ac9","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:57:08.1811958Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:57:08.1811958Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:57:08.1811958Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:57:08.1811958Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/727ba992-9fff-492a-9a5b-6ec85c4a3f9d?api-version=2023-09-15-preview&t=638327050302534619&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hNPHmsNHG0hgXMDVP6txnVRvc34a2DW2CYdCTrBnwUXFc0NcQ9d8axthNY7N22Y5u5gVLev3hUDwrP3Y8gmYAxS8Dd5zRwTQEOGUdlq7-NNH1oKJVUqOWu7Bk7D1JM32qLwXbj43-R9_g3iqP_5QcYHIys6sadTj4O9ckUFmgsWJVniiWllm8AOXiHTnjXUsCanSqtj3LLFfU2QKpis1pp-h9yxUHqSSOdoaYV7vsPb5_71mygI2VTt7vrl6wGG6ADnnh8hM0roFNRMPw3D5DFLof5JdajVm64j9Eq-jGzqyem6uacluD9RTYDfW_PqtzvOBem7FGMtpEX-Sjvv2aQ&h=ZNyHw8qmCB8EtFwRCsjdUssSnr_Ppi0rrFpnC4hsFZ4 - cache-control: - - no-store, no-cache - content-length: - - '2423' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:09 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/727ba992-9fff-492a-9a5b-6ec85c4a3f9d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/727ba992-9fff-492a-9a5b-6ec85c4a3f9d?api-version=2023-09-15-preview&t=638327050302534619&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hNPHmsNHG0hgXMDVP6txnVRvc34a2DW2CYdCTrBnwUXFc0NcQ9d8axthNY7N22Y5u5gVLev3hUDwrP3Y8gmYAxS8Dd5zRwTQEOGUdlq7-NNH1oKJVUqOWu7Bk7D1JM32qLwXbj43-R9_g3iqP_5QcYHIys6sadTj4O9ckUFmgsWJVniiWllm8AOXiHTnjXUsCanSqtj3LLFfU2QKpis1pp-h9yxUHqSSOdoaYV7vsPb5_71mygI2VTt7vrl6wGG6ADnnh8hM0roFNRMPw3D5DFLof5JdajVm64j9Eq-jGzqyem6uacluD9RTYDfW_PqtzvOBem7FGMtpEX-Sjvv2aQ&h=ZNyHw8qmCB8EtFwRCsjdUssSnr_Ppi0rrFpnC4hsFZ4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/727ba992-9fff-492a-9a5b-6ec85c4a3f9d?api-version=2023-09-15-preview&t=638327050302534619&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hNPHmsNHG0hgXMDVP6txnVRvc34a2DW2CYdCTrBnwUXFc0NcQ9d8axthNY7N22Y5u5gVLev3hUDwrP3Y8gmYAxS8Dd5zRwTQEOGUdlq7-NNH1oKJVUqOWu7Bk7D1JM32qLwXbj43-R9_g3iqP_5QcYHIys6sadTj4O9ckUFmgsWJVniiWllm8AOXiHTnjXUsCanSqtj3LLFfU2QKpis1pp-h9yxUHqSSOdoaYV7vsPb5_71mygI2VTt7vrl6wGG6ADnnh8hM0roFNRMPw3D5DFLof5JdajVm64j9Eq-jGzqyem6uacluD9RTYDfW_PqtzvOBem7FGMtpEX-Sjvv2aQ&h=ZNyHw8qmCB8EtFwRCsjdUssSnr_Ppi0rrFpnC4hsFZ4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:57:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/727ba992-9fff-492a-9a5b-6ec85c4a3f9d?api-version=2023-09-15-preview&t=638327050302534619&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hNPHmsNHG0hgXMDVP6txnVRvc34a2DW2CYdCTrBnwUXFc0NcQ9d8axthNY7N22Y5u5gVLev3hUDwrP3Y8gmYAxS8Dd5zRwTQEOGUdlq7-NNH1oKJVUqOWu7Bk7D1JM32qLwXbj43-R9_g3iqP_5QcYHIys6sadTj4O9ckUFmgsWJVniiWllm8AOXiHTnjXUsCanSqtj3LLFfU2QKpis1pp-h9yxUHqSSOdoaYV7vsPb5_71mygI2VTt7vrl6wGG6ADnnh8hM0roFNRMPw3D5DFLof5JdajVm64j9Eq-jGzqyem6uacluD9RTYDfW_PqtzvOBem7FGMtpEX-Sjvv2aQ&h=ZNyHw8qmCB8EtFwRCsjdUssSnr_Ppi0rrFpnC4hsFZ4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/727ba992-9fff-492a-9a5b-6ec85c4a3f9d?api-version=2023-09-15-preview&t=638327050302534619&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hNPHmsNHG0hgXMDVP6txnVRvc34a2DW2CYdCTrBnwUXFc0NcQ9d8axthNY7N22Y5u5gVLev3hUDwrP3Y8gmYAxS8Dd5zRwTQEOGUdlq7-NNH1oKJVUqOWu7Bk7D1JM32qLwXbj43-R9_g3iqP_5QcYHIys6sadTj4O9ckUFmgsWJVniiWllm8AOXiHTnjXUsCanSqtj3LLFfU2QKpis1pp-h9yxUHqSSOdoaYV7vsPb5_71mygI2VTt7vrl6wGG6ADnnh8hM0roFNRMPw3D5DFLof5JdajVm64j9Eq-jGzqyem6uacluD9RTYDfW_PqtzvOBem7FGMtpEX-Sjvv2aQ&h=ZNyHw8qmCB8EtFwRCsjdUssSnr_Ppi0rrFpnC4hsFZ4 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/727ba992-9fff-492a-9a5b-6ec85c4a3f9d?api-version=2023-09-15-preview&t=638327050302534619&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=hNPHmsNHG0hgXMDVP6txnVRvc34a2DW2CYdCTrBnwUXFc0NcQ9d8axthNY7N22Y5u5gVLev3hUDwrP3Y8gmYAxS8Dd5zRwTQEOGUdlq7-NNH1oKJVUqOWu7Bk7D1JM32qLwXbj43-R9_g3iqP_5QcYHIys6sadTj4O9ckUFmgsWJVniiWllm8AOXiHTnjXUsCanSqtj3LLFfU2QKpis1pp-h9yxUHqSSOdoaYV7vsPb5_71mygI2VTt7vrl6wGG6ADnnh8hM0roFNRMPw3D5DFLof5JdajVm64j9Eq-jGzqyem6uacluD9RTYDfW_PqtzvOBem7FGMtpEX-Sjvv2aQ&h=ZNyHw8qmCB8EtFwRCsjdUssSnr_Ppi0rrFpnC4hsFZ4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:59:01.0728428Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"b3478ae0-a78c-4967-89e5-d27885114ac9","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:59:01.0728428Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:59:01.0728428Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:59:01.0728428Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:59:01.0728428Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2781' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:59:01.0728428Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"b3478ae0-a78c-4967-89e5-d27885114ac9","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:59:01.0728428Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:59:01.0728428Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:59:01.0728428Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:59:01.0728428Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2781' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4931311e-5358-4d51-9ea7-01297b5f087a?api-version=2023-09-15&t=638327051562216855&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fAPvkIXt2MOVCIKhbTPrh5Kowb8yN9Kk1XCfr3rvKQx0GAzGDKZmqe38tjbVyYZalcwPnQQgkRDvLh2KIG-WNKAbAm2KD1qmkn5aQDdpBWfkkIYw-PHIYI_ZGfHggsVmRCpIj0wJgjSbw4pjiCoAjsV64Y3tGA3Ggp0tS8xm-nbPEEFCsAf-_6_xQVS3cBHaBvlSXV-p1ceVkf4-ts-5mWlC6JDsX4Y-E2Lg2YKZLVGP9tGs8V6ihS2vPSL6tZQVn3Pc7rApQx6JlgA9Az24_NhAdlmeWhN3Ruc1yTKUmK9sQMv1LbmKd04PFn7WwnHwJann7VSx-rFJ8MDycbB8hA&h=uMThrspIFH3bLZfmUeCksNYdcSS4OAYXukGycRgefNs - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:15 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/4931311e-5358-4d51-9ea7-01297b5f087a?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4931311e-5358-4d51-9ea7-01297b5f087a?api-version=2023-09-15&t=638327051562216855&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fAPvkIXt2MOVCIKhbTPrh5Kowb8yN9Kk1XCfr3rvKQx0GAzGDKZmqe38tjbVyYZalcwPnQQgkRDvLh2KIG-WNKAbAm2KD1qmkn5aQDdpBWfkkIYw-PHIYI_ZGfHggsVmRCpIj0wJgjSbw4pjiCoAjsV64Y3tGA3Ggp0tS8xm-nbPEEFCsAf-_6_xQVS3cBHaBvlSXV-p1ceVkf4-ts-5mWlC6JDsX4Y-E2Lg2YKZLVGP9tGs8V6ihS2vPSL6tZQVn3Pc7rApQx6JlgA9Az24_NhAdlmeWhN3Ruc1yTKUmK9sQMv1LbmKd04PFn7WwnHwJann7VSx-rFJ8MDycbB8hA&h=uMThrspIFH3bLZfmUeCksNYdcSS4OAYXukGycRgefNs - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4931311e-5358-4d51-9ea7-01297b5f087a?api-version=2023-09-15&t=638327051562216855&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=fAPvkIXt2MOVCIKhbTPrh5Kowb8yN9Kk1XCfr3rvKQx0GAzGDKZmqe38tjbVyYZalcwPnQQgkRDvLh2KIG-WNKAbAm2KD1qmkn5aQDdpBWfkkIYw-PHIYI_ZGfHggsVmRCpIj0wJgjSbw4pjiCoAjsV64Y3tGA3Ggp0tS8xm-nbPEEFCsAf-_6_xQVS3cBHaBvlSXV-p1ceVkf4-ts-5mWlC6JDsX4Y-E2Lg2YKZLVGP9tGs8V6ihS2vPSL6tZQVn3Pc7rApQx6JlgA9Az24_NhAdlmeWhN3Ruc1yTKUmK9sQMv1LbmKd04PFn7WwnHwJann7VSx-rFJ8MDycbB8hA&h=uMThrspIFH3bLZfmUeCksNYdcSS4OAYXukGycRgefNs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"weI8AA==","_self":"dbs/weI8AA==/","_etag":"\"00000c02-0000-0700-0000-6527d1890000\"","_colls":"colls/","_users":"users/","_ts":1697108361}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '463' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"weI8AA==","_self":"dbs/weI8AA==/","_etag":"\"00000c02-0000-0700-0000-6527d1890000\"","_colls":"colls/","_users":"users/","_ts":1697108361}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '463' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"weI8AA==","_self":"dbs/weI8AA==/","_etag":"\"00000c02-0000-0700-0000-6527d1890000\"","_colls":"colls/","_users":"users/","_ts":1697108361}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '463' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/invalid?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - 77458354-68ee-11ee-b44a-9c7bef43f49d, Request URI: /apps/96175d1f-a5b6-4f23-aadd-8531a857d983/services/83ad2cef-5c72-4d6f-9032-cec15921bd1e/partitions/77a90db1-a1b2-4ca8-a2a5-058764a07eb1/replicas/133402527184489968s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T10:59:52.3267153Z, RequestEndTime: - 2023-10-12T10:59:52.3279120Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T10:58:58.9975953Z\\\",\\\"cpu\\\":0.107,\\\"memory\\\":417038752.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0493,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":405},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:09.0075349Z\\\",\\\"cpu\\\":0.146,\\\"memory\\\":417051084.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0414,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":407},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:19.0174257Z\\\",\\\"cpu\\\":0.217,\\\"memory\\\":417052896.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0568,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":407},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:29.0273773Z\\\",\\\"cpu\\\":0.085,\\\"memory\\\":417040644.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0461,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":407},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:39.0372764Z\\\",\\\"cpu\\\":0.149,\\\"memory\\\":417002632.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0537,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":407},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:49.0472233Z\\\",\\\"cpu\\\":0.078,\\\"memory\\\":417052416.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0505,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":407}]}\\r\\nRequestStart: - 2023-10-12T10:59:52.3269037Z; ResponseTime: 2023-10-12T10:59:52.3279034Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.9:11300/apps/96175d1f-a5b6-4f23-aadd-8531a857d983/services/83ad2cef-5c72-4d6f-9032-cec15921bd1e/partitions/77a90db1-a1b2-4ca8-a2a5-058764a07eb1/replicas/133402527184489968s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.19, ActivityId: - 77458354-68ee-11ee-b44a-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 10:59:52 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 10:59:52 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 10:59:52 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 10:59:52 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:52.3268327Z\\\", - \\\"durationInMs\\\": 0.0077},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:52.3268404Z\\\", \\\"durationInMs\\\": - 0.0021},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:52.3268425Z\\\", - \\\"durationInMs\\\": 0.0537},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:59:52.3268962Z\\\", \\\"durationInMs\\\": 0.4359},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:52.3273321Z\\\", - \\\"durationInMs\\\": 0.0504},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:59:52.3273825Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:59:52.1696102Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:59:52.1696357Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:59:52.2034279Z\\\"},\\\"requestSizeInBytes\\\":454,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2023-10-12T10:59:52.3269435Z; - ResponseTime: 2023-10-12T10:59:52.3279120Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.13:11300/apps/96175d1f-a5b6-4f23-aadd-8531a857d983/services/83ad2cef-5c72-4d6f-9032-cec15921bd1e/partitions/77a90db1-a1b2-4ca8-a2a5-058764a07eb1/replicas/133402527144489778s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.323, ActivityId: - 77458354-68ee-11ee-b44a-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 10:59:52 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 10:59:52 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 10:59:52 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 10:59:52 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:52.3269052Z\\\", - \\\"durationInMs\\\": 0.0031},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:52.3269083Z\\\", \\\"durationInMs\\\": - 0.0008},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:52.3269091Z\\\", - \\\"durationInMs\\\": 0.0305},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:59:52.3269396Z\\\", \\\"durationInMs\\\": 0.5938},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:59:52.3275334Z\\\", - \\\"durationInMs\\\": 0.0678},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:59:52.3276012Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:59:52.2536706Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:59:52.2537015Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:59:52.2871233Z\\\"},\\\"requestSizeInBytes\\\":454,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/invalid, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7072' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10: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-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"weI8AA==","_self":"dbs/weI8AA==/","_etag":"\"00000c02-0000-0700-0000-6527d1890000\"","_colls":"colls/","_users":"users/","_ts":1697108361}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5c5ee22f-a277-4038-858e-0737513819a5?api-version=2023-09-15&t=638327051950825903&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=KXs9YRYRl1FLKhZ1iakndK8dI52Zml3WiVuPAtQ1C2wreG-TGFFY-K2otR34BQGBJ2qgn_vR5hdYbiwgvNLvJaQHwYSAbAqveHU_uOIpWYmMEAVqqWDVrgYbGahMN9F44kkkSKZsqpBl2UBqflKc1sYoeSdPHl53Mvx-xea9gPYtJHiWH_5t6Pbse7ybtH6JhoGxcbPRxnZPM3fLrJy2j8oXL2pbHWi36W6V5u-cD_OonNwek_bgT4_0WPi3KmSqftjLyFkOvQXTxzK0uQnNgD2puM48kfsdOKTdR1hsjP_kl2m4raPFZlfqQIa5W1d1VALkPg-_x6jmM8tNs5CvEQ&h=nvfycqC1boA4Z2qd5vr2rmeonmEIQwJ-et3wWIAv_6o - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:54 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/5c5ee22f-a277-4038-858e-0737513819a5?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5c5ee22f-a277-4038-858e-0737513819a5?api-version=2023-09-15&t=638327051950825903&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=KXs9YRYRl1FLKhZ1iakndK8dI52Zml3WiVuPAtQ1C2wreG-TGFFY-K2otR34BQGBJ2qgn_vR5hdYbiwgvNLvJaQHwYSAbAqveHU_uOIpWYmMEAVqqWDVrgYbGahMN9F44kkkSKZsqpBl2UBqflKc1sYoeSdPHl53Mvx-xea9gPYtJHiWH_5t6Pbse7ybtH6JhoGxcbPRxnZPM3fLrJy2j8oXL2pbHWi36W6V5u-cD_OonNwek_bgT4_0WPi3KmSqftjLyFkOvQXTxzK0uQnNgD2puM48kfsdOKTdR1hsjP_kl2m4raPFZlfqQIa5W1d1VALkPg-_x6jmM8tNs5CvEQ&h=nvfycqC1boA4Z2qd5vr2rmeonmEIQwJ-et3wWIAv_6o - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5c5ee22f-a277-4038-858e-0737513819a5?api-version=2023-09-15&t=638327051950825903&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=KXs9YRYRl1FLKhZ1iakndK8dI52Zml3WiVuPAtQ1C2wreG-TGFFY-K2otR34BQGBJ2qgn_vR5hdYbiwgvNLvJaQHwYSAbAqveHU_uOIpWYmMEAVqqWDVrgYbGahMN9F44kkkSKZsqpBl2UBqflKc1sYoeSdPHl53Mvx-xea9gPYtJHiWH_5t6Pbse7ybtH6JhoGxcbPRxnZPM3fLrJy2j8oXL2pbHWi36W6V5u-cD_OonNwek_bgT4_0WPi3KmSqftjLyFkOvQXTxzK0uQnNgD2puM48kfsdOKTdR1hsjP_kl2m4raPFZlfqQIa5W1d1VALkPg-_x6jmM8tNs5CvEQ&h=nvfycqC1boA4Z2qd5vr2rmeonmEIQwJ-et3wWIAv_6o - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - 8c99b5af-68ee-11ee-8116-9c7bef43f49d, Request URI: /apps/96175d1f-a5b6-4f23-aadd-8531a857d983/services/83ad2cef-5c72-4d6f-9032-cec15921bd1e/partitions/77a90db1-a1b2-4ca8-a2a5-058764a07eb1/replicas/133402527184489968s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T11:00:28.1296050Z, RequestEndTime: - 2023-10-12T11:00:28.1306115Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T10:59:30.8991155Z\\\",\\\"cpu\\\":0.239,\\\"memory\\\":417532880.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0402,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":743},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:40.9082278Z\\\",\\\"cpu\\\":0.414,\\\"memory\\\":417523928.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0553,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":743},{\\\"dateUtc\\\":\\\"2023-10-12T10:59:50.9183230Z\\\",\\\"cpu\\\":0.291,\\\"memory\\\":417374148.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0537,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":743},{\\\"dateUtc\\\":\\\"2023-10-12T11:00:00.9284461Z\\\",\\\"cpu\\\":0.280,\\\"memory\\\":417380812.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0295,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":742},{\\\"dateUtc\\\":\\\"2023-10-12T11:00:10.9393728Z\\\",\\\"cpu\\\":0.551,\\\"memory\\\":417377384.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0533,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":742},{\\\"dateUtc\\\":\\\"2023-10-12T11:00:20.9486836Z\\\",\\\"cpu\\\":0.270,\\\"memory\\\":417382440.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0621,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":742}]}\\r\\nRequestStart: - 2023-10-12T11:00:28.1297228Z; ResponseTime: 2023-10-12T11:00:28.1306054Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.9:11300/apps/96175d1f-a5b6-4f23-aadd-8531a857d983/services/83ad2cef-5c72-4d6f-9032-cec15921bd1e/partitions/77a90db1-a1b2-4ca8-a2a5-058764a07eb1/replicas/133402527184489968s, - LSN: 12, GlobalCommittedLsn: 12, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#12, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.161, ActivityId: - 8c99b5af-68ee-11ee-8116-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 11:00:00 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 11:00:00 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:00:00 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:00:00 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:00:28.1296513Z\\\", - \\\"durationInMs\\\": 0.008},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:00:28.1296593Z\\\", \\\"durationInMs\\\": - 0.0016},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:00:28.1296609Z\\\", - \\\"durationInMs\\\": 0.0546},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:00:28.1297155Z\\\", \\\"durationInMs\\\": 0.4971},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:00:28.1302126Z\\\", - \\\"durationInMs\\\": 0.0602},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:00:28.1302728Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:00:28.0948357Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:00:28.0948658Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:00:28.1292162Z\\\"},\\\"requestSizeInBytes\\\":468,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2023-10-12T11:00:28.1297650Z; - ResponseTime: 2023-10-12T11:00:28.1306115Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.11:11000/apps/96175d1f-a5b6-4f23-aadd-8531a857d983/services/83ad2cef-5c72-4d6f-9032-cec15921bd1e/partitions/77a90db1-a1b2-4ca8-a2a5-058764a07eb1/replicas/133402527184489970s, - LSN: 12, GlobalCommittedLsn: 12, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#12, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.252, ActivityId: - 8c99b5af-68ee-11ee-8116-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 11:00:00 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 11:00:00 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:00:00 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:00:00 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:00:28.1297248Z\\\", - \\\"durationInMs\\\": 0.0035},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:00:28.1297283Z\\\", \\\"durationInMs\\\": - 0.0008},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:00:28.1297291Z\\\", - \\\"durationInMs\\\": 0.0314},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:00:28.1297605Z\\\", \\\"durationInMs\\\": 0.4953},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:00:28.1302558Z\\\", - \\\"durationInMs\\\": 0.0483},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:00:28.1303041Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:00:28.0949010Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:00:28.0949172Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:00:28.1280677Z\\\"},\\\"requestSizeInBytes\\\":468,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7074' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database_merge.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database_merge.yaml deleted file mode 100644 index 1342d4c72b4..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database_merge.yaml +++ /dev/null @@ -1,938 +0,0 @@ -interactions: -- request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"throughput": - 30000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '83' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c4417224-f8a9-43c3-8aa4-ce3a062ad66c?api-version=2023-09-15&t=638327063714128224&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mEXteBOlmTB76I6UBKtwpIfPoaHBHHQ8AXUJWiHl2nMLji0Mtun-e5aCXnnlKkZ8diwTj8klBTEW_FSt9gdf1HDlIO6ECtZJhgyOKHy3ur_KD38ceyQlvaAamRU8ne6XQ5vpusupPq1xp4eLFo3paUql5vkcVh0hd3rsqkEB52jWnmf-y6ovRO12zFc1hVfiQUn0x6nBAet6Z23cETh50pra9ZYkn2l36U1L2ffwx0xOY_gynSJU258f4hdTncfweWCZdaZVWOrTeC5XY7DEFASjfIoNlNjj6KvF888KTuv3GjG-k2bYgYTdbz4eu29Hm6t2pX6SubWLR8rnW6Daig&h=dXv0v6KX8LwBX9Jl8TRziYrjr8wtjLwPVfxA_AxZF8U - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:31 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/operationResults/c4417224-f8a9-43c3-8aa4-ce3a062ad66c?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c4417224-f8a9-43c3-8aa4-ce3a062ad66c?api-version=2023-09-15&t=638327063714128224&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mEXteBOlmTB76I6UBKtwpIfPoaHBHHQ8AXUJWiHl2nMLji0Mtun-e5aCXnnlKkZ8diwTj8klBTEW_FSt9gdf1HDlIO6ECtZJhgyOKHy3ur_KD38ceyQlvaAamRU8ne6XQ5vpusupPq1xp4eLFo3paUql5vkcVh0hd3rsqkEB52jWnmf-y6ovRO12zFc1hVfiQUn0x6nBAet6Z23cETh50pra9ZYkn2l36U1L2ffwx0xOY_gynSJU258f4hdTncfweWCZdaZVWOrTeC5XY7DEFASjfIoNlNjj6KvF888KTuv3GjG-k2bYgYTdbz4eu29Hm6t2pX6SubWLR8rnW6Daig&h=dXv0v6KX8LwBX9Jl8TRziYrjr8wtjLwPVfxA_AxZF8U - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c4417224-f8a9-43c3-8aa4-ce3a062ad66c?api-version=2023-09-15&t=638327063714128224&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mEXteBOlmTB76I6UBKtwpIfPoaHBHHQ8AXUJWiHl2nMLji0Mtun-e5aCXnnlKkZ8diwTj8klBTEW_FSt9gdf1HDlIO6ECtZJhgyOKHy3ur_KD38ceyQlvaAamRU8ne6XQ5vpusupPq1xp4eLFo3paUql5vkcVh0hd3rsqkEB52jWnmf-y6ovRO12zFc1hVfiQUn0x6nBAet6Z23cETh50pra9ZYkn2l36U1L2ffwx0xOY_gynSJU258f4hdTncfweWCZdaZVWOrTeC5XY7DEFASjfIoNlNjj6KvF888KTuv3GjG-k2bYgYTdbz4eu29Hm6t2pX6SubWLR8rnW6Daig&h=dXv0v6KX8LwBX9Jl8TRziYrjr8wtjLwPVfxA_AxZF8U - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"DvoCAA==","_self":"dbs/DvoCAA==/","_etag":"\"0000c900-0000-0200-0000-6527d64b0000\"","_colls":"colls/","_users":"users/","_ts":1697109579}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '439' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '265' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/bec4b35b-eabc-4b5d-a38f-93f5e8fca677?api-version=2023-09-15-preview&t=638327064052760394&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=GKlOBgd5di6SXFrk4kY7Sf9w2UZY_PEbRHh-sGTr92qzc-CHk0Q8CqOJd5rHhh-Aq6amgVra9Sc7bbMJsn5hdeCFWnsIFkQDw8vfJOu1905gRR4b-pWmB4SU5DUn7PDOE_IcrTdrgCHMD6pdjSCcEClM4qhM3NB7J4u9j_u51g4ZQBIK1U-ogKxlwa2CD3z3SvRXffXklkBG_v8pWTqczlvC-ae4ao7k0crzT7tcFrN17-aO2FYJAyJkFR6euTCiM-cu5jObvhsjvT44-IqEZSFRnD_-J0HDHd6Q1W02EQrOr46WFjZTMG_FVsB9d0msL1qZ4QKTsZijL-zQ_iVbhQ&h=MVBlSTx7b1IczkYoWUvQJYTdLndmPkkjUIAoNjnVILY - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:05 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/containers/cli000002/operationResults/bec4b35b-eabc-4b5d-a38f-93f5e8fca677?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/bec4b35b-eabc-4b5d-a38f-93f5e8fca677?api-version=2023-09-15-preview&t=638327064052760394&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=GKlOBgd5di6SXFrk4kY7Sf9w2UZY_PEbRHh-sGTr92qzc-CHk0Q8CqOJd5rHhh-Aq6amgVra9Sc7bbMJsn5hdeCFWnsIFkQDw8vfJOu1905gRR4b-pWmB4SU5DUn7PDOE_IcrTdrgCHMD6pdjSCcEClM4qhM3NB7J4u9j_u51g4ZQBIK1U-ogKxlwa2CD3z3SvRXffXklkBG_v8pWTqczlvC-ae4ao7k0crzT7tcFrN17-aO2FYJAyJkFR6euTCiM-cu5jObvhsjvT44-IqEZSFRnD_-J0HDHd6Q1W02EQrOr46WFjZTMG_FVsB9d0msL1qZ4QKTsZijL-zQ_iVbhQ&h=MVBlSTx7b1IczkYoWUvQJYTdLndmPkkjUIAoNjnVILY - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/bec4b35b-eabc-4b5d-a38f-93f5e8fca677?api-version=2023-09-15-preview&t=638327064052760394&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=GKlOBgd5di6SXFrk4kY7Sf9w2UZY_PEbRHh-sGTr92qzc-CHk0Q8CqOJd5rHhh-Aq6amgVra9Sc7bbMJsn5hdeCFWnsIFkQDw8vfJOu1905gRR4b-pWmB4SU5DUn7PDOE_IcrTdrgCHMD6pdjSCcEClM4qhM3NB7J4u9j_u51g4ZQBIK1U-ogKxlwa2CD3z3SvRXffXklkBG_v8pWTqczlvC-ae4ao7k0crzT7tcFrN17-aO2FYJAyJkFR6euTCiM-cu5jObvhsjvT44-IqEZSFRnD_-J0HDHd6Q1W02EQrOr46WFjZTMG_FVsB9d0msL1qZ4QKTsZijL-zQ_iVbhQ&h=MVBlSTx7b1IczkYoWUvQJYTdLndmPkkjUIAoNjnVILY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/containers/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"DvoCAJW6BTY=","_ts":1697109610,"_self":"dbs/DvoCAA==/colls/DvoCAJW6BTY=/","_etag":"\"0000cf00-0000-0200-0000-6527d66a0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"2","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]},{"id":"1","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1272' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"throughput": 3000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database throughput update - Connection: - - keep-alive - Content-Length: - - '50' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/59ccd384-c3cc-454a-b62a-e38d9dabbc65?api-version=2023-09-15&t=638327064384986002&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=FokxD0Jp89yG6taKdPcJ32Uwue-HrMc8C5O7aazPZbXXTN5WlQy4N5BfX0Os4twtUdCpM9dad9tSUrhLzOBRpwWrfgj_MU_4xRUKteAJoYs8rr7xDlvaMCWrucKuR-rq368wHsH7BsiNkO_oEUXAJ7cg2AJt0Hrdaq6s_QEjvixYMb3iL8cF1JzAzbmFqMZPOfg3ktHmPOAXBcD6KD1cT9tSz3jUCtCD4dfoT1bMFe1gsJqt-JPsiMw6r9SooWvvbOPeQgNDWFVQHS2lMCMfdS7CF-uT-CgAdeGzDegS_Lf-SCcKDyaL-DqedARFkTQHe6f0r3ZYiLQcWBcR3yp4ZA&h=u0Wawz4QpheD3HQyN3luYDMIZfeMCrPlZQ7n-S-sfGg - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:38 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/throughputSettings/default/operationResults/59ccd384-c3cc-454a-b62a-e38d9dabbc65?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/59ccd384-c3cc-454a-b62a-e38d9dabbc65?api-version=2023-09-15&t=638327064384986002&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=FokxD0Jp89yG6taKdPcJ32Uwue-HrMc8C5O7aazPZbXXTN5WlQy4N5BfX0Os4twtUdCpM9dad9tSUrhLzOBRpwWrfgj_MU_4xRUKteAJoYs8rr7xDlvaMCWrucKuR-rq368wHsH7BsiNkO_oEUXAJ7cg2AJt0Hrdaq6s_QEjvixYMb3iL8cF1JzAzbmFqMZPOfg3ktHmPOAXBcD6KD1cT9tSz3jUCtCD4dfoT1bMFe1gsJqt-JPsiMw6r9SooWvvbOPeQgNDWFVQHS2lMCMfdS7CF-uT-CgAdeGzDegS_Lf-SCcKDyaL-DqedARFkTQHe6f0r3ZYiLQcWBcR3yp4ZA&h=u0Wawz4QpheD3HQyN3luYDMIZfeMCrPlZQ7n-S-sfGg - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/59ccd384-c3cc-454a-b62a-e38d9dabbc65?api-version=2023-09-15&t=638327064384986002&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=FokxD0Jp89yG6taKdPcJ32Uwue-HrMc8C5O7aazPZbXXTN5WlQy4N5BfX0Os4twtUdCpM9dad9tSUrhLzOBRpwWrfgj_MU_4xRUKteAJoYs8rr7xDlvaMCWrucKuR-rq368wHsH7BsiNkO_oEUXAJ7cg2AJt0Hrdaq6s_QEjvixYMb3iL8cF1JzAzbmFqMZPOfg3ktHmPOAXBcD6KD1cT9tSz3jUCtCD4dfoT1bMFe1gsJqt-JPsiMw6r9SooWvvbOPeQgNDWFVQHS2lMCMfdS7CF-uT-CgAdeGzDegS_Lf-SCcKDyaL-DqedARFkTQHe6f0r3ZYiLQcWBcR3yp4ZA&h=u0Wawz4QpheD3HQyN3luYDMIZfeMCrPlZQ7n-S-sfGg - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database throughput update - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/throughputSettings/default?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings","name":"fxq4","properties":{"resource":{"throughput":3000,"minimumThroughput":"400","instantMaximumThroughput":"30000","softAllowedMaximumThroughput":"1000000"}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '437' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"DvoCAA==","_self":"dbs/DvoCAA==/","_etag":"\"0000c900-0000-0200-0000-6527d64b0000\"","_colls":"colls/","_users":"users/","_ts":1697109579}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '439' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"isDryRun": false}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database merge - Connection: - - keep-alive - Content-Length: - - '19' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:12 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:12 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:43 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:14 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:45 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:15 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database merge - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/dbmergetest/sqlDatabases/cli000003/partitionMerge/operationResults/86731fff-a695-4ef3-a609-69539dda3f1d?api-version=2023-09-15-preview - response: - body: - string: '{"physicalPartitionStorageInfoCollection":[{"storageInKB":0.0,"id":"cc86de6d-99ff-46ff-8b42-bea95398f00f"},{"storageInKB":0.0,"id":"165b051d-b301-41ec-bb57-fca8803124b4"},{"storageInKB":0.0,"id":"445ae2eb-4f55-4f71-ae74-9f2c196c8ec9"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '236' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_migrate_periodic_to_continuous7days.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_migrate_periodic_to_continuous7days.yaml deleted file mode 100644 index 804bf9b62df..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_migrate_periodic_to_continuous7days.yaml +++ /dev/null @@ -1,3552 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001","name":"cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_migrate_periodic_to_continuous7days","date":"2023-10-12T11:29:35Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '496' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:29:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '246' - Content-Type: - - application/json - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:29:45.6156099Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:29:45.6156099Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:29:45.6156099Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:29:45.6156099Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:29:45.6156099Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/349af5c8-485c-43ee-984c-bfd43ba7167c?api-version=2023-09-15-preview&t=638327069872208431&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mzTZ57TRukvAOSms83iPFMku2YY2wnyJhNm0M5sY9-aZiwv4mbH6BLaWc0XeZRAxPJDutInvsddfrT6vil92rd6x33f5HSOHElbP_6Rd1JdZDi97Vjlsm_9GVSfjOiDCiqqfv-Tfv98VwEozLLZkBSeq4xJDM283brCSRrB5kvHWY2wyOIrvnVEHxid22_D_L4vt_PynERbGDdLNCPEjGJh6D6H_nI6dXJ_2ssZUtqlpjFxE1ys7i9xAF6DA1zb4DbrKJwGuX49qr5k_qjMjblT1HQFba1AqyN7W_WXmaEDZPE80b8qQU2AYzpcAqcmfzpNfqLj6rBo5MMCylYuxJA&h=uq-Wm8VXOsx-zdT1Nc5eaoBisQn9XFrx7Zoohz6TY-U - cache-control: - - no-store, no-cache - content-length: - - '2572' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:47 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004/operationResults/349af5c8-485c-43ee-984c-bfd43ba7167c?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/349af5c8-485c-43ee-984c-bfd43ba7167c?api-version=2023-09-15-preview&t=638327069872208431&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mzTZ57TRukvAOSms83iPFMku2YY2wnyJhNm0M5sY9-aZiwv4mbH6BLaWc0XeZRAxPJDutInvsddfrT6vil92rd6x33f5HSOHElbP_6Rd1JdZDi97Vjlsm_9GVSfjOiDCiqqfv-Tfv98VwEozLLZkBSeq4xJDM283brCSRrB5kvHWY2wyOIrvnVEHxid22_D_L4vt_PynERbGDdLNCPEjGJh6D6H_nI6dXJ_2ssZUtqlpjFxE1ys7i9xAF6DA1zb4DbrKJwGuX49qr5k_qjMjblT1HQFba1AqyN7W_WXmaEDZPE80b8qQU2AYzpcAqcmfzpNfqLj6rBo5MMCylYuxJA&h=uq-Wm8VXOsx-zdT1Nc5eaoBisQn9XFrx7Zoohz6TY-U - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:29:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/349af5c8-485c-43ee-984c-bfd43ba7167c?api-version=2023-09-15-preview&t=638327069872208431&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mzTZ57TRukvAOSms83iPFMku2YY2wnyJhNm0M5sY9-aZiwv4mbH6BLaWc0XeZRAxPJDutInvsddfrT6vil92rd6x33f5HSOHElbP_6Rd1JdZDi97Vjlsm_9GVSfjOiDCiqqfv-Tfv98VwEozLLZkBSeq4xJDM283brCSRrB5kvHWY2wyOIrvnVEHxid22_D_L4vt_PynERbGDdLNCPEjGJh6D6H_nI6dXJ_2ssZUtqlpjFxE1ys7i9xAF6DA1zb4DbrKJwGuX49qr5k_qjMjblT1HQFba1AqyN7W_WXmaEDZPE80b8qQU2AYzpcAqcmfzpNfqLj6rBo5MMCylYuxJA&h=uq-Wm8VXOsx-zdT1Nc5eaoBisQn9XFrx7Zoohz6TY-U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:30:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/349af5c8-485c-43ee-984c-bfd43ba7167c?api-version=2023-09-15-preview&t=638327069872208431&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mzTZ57TRukvAOSms83iPFMku2YY2wnyJhNm0M5sY9-aZiwv4mbH6BLaWc0XeZRAxPJDutInvsddfrT6vil92rd6x33f5HSOHElbP_6Rd1JdZDi97Vjlsm_9GVSfjOiDCiqqfv-Tfv98VwEozLLZkBSeq4xJDM283brCSRrB5kvHWY2wyOIrvnVEHxid22_D_L4vt_PynERbGDdLNCPEjGJh6D6H_nI6dXJ_2ssZUtqlpjFxE1ys7i9xAF6DA1zb4DbrKJwGuX49qr5k_qjMjblT1HQFba1AqyN7W_WXmaEDZPE80b8qQU2AYzpcAqcmfzpNfqLj6rBo5MMCylYuxJA&h=uq-Wm8VXOsx-zdT1Nc5eaoBisQn9XFrx7Zoohz6TY-U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:30:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/349af5c8-485c-43ee-984c-bfd43ba7167c?api-version=2023-09-15-preview&t=638327069872208431&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mzTZ57TRukvAOSms83iPFMku2YY2wnyJhNm0M5sY9-aZiwv4mbH6BLaWc0XeZRAxPJDutInvsddfrT6vil92rd6x33f5HSOHElbP_6Rd1JdZDi97Vjlsm_9GVSfjOiDCiqqfv-Tfv98VwEozLLZkBSeq4xJDM283brCSRrB5kvHWY2wyOIrvnVEHxid22_D_L4vt_PynERbGDdLNCPEjGJh6D6H_nI6dXJ_2ssZUtqlpjFxE1ys7i9xAF6DA1zb4DbrKJwGuX49qr5k_qjMjblT1HQFba1AqyN7W_WXmaEDZPE80b8qQU2AYzpcAqcmfzpNfqLj6rBo5MMCylYuxJA&h=uq-Wm8VXOsx-zdT1Nc5eaoBisQn9XFrx7Zoohz6TY-U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/349af5c8-485c-43ee-984c-bfd43ba7167c?api-version=2023-09-15-preview&t=638327069872208431&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mzTZ57TRukvAOSms83iPFMku2YY2wnyJhNm0M5sY9-aZiwv4mbH6BLaWc0XeZRAxPJDutInvsddfrT6vil92rd6x33f5HSOHElbP_6Rd1JdZDi97Vjlsm_9GVSfjOiDCiqqfv-Tfv98VwEozLLZkBSeq4xJDM283brCSRrB5kvHWY2wyOIrvnVEHxid22_D_L4vt_PynERbGDdLNCPEjGJh6D6H_nI6dXJ_2ssZUtqlpjFxE1ys7i9xAF6DA1zb4DbrKJwGuX49qr5k_qjMjblT1HQFba1AqyN7W_WXmaEDZPE80b8qQU2AYzpcAqcmfzpNfqLj6rBo5MMCylYuxJA&h=uq-Wm8VXOsx-zdT1Nc5eaoBisQn9XFrx7Zoohz6TY-U - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2979' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2979' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2979' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2979' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous7Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '134' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - cache-control: - - no-store, no-cache - content-length: - - '2978' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:58 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004/operationResults/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:31:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:32:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:40:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:40:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:43:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:43:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/45511654-a463-47dc-a51a-eac3f01a44bd?api-version=2023-09-15-preview&t=638327071187018441&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oB8i79efZ83KDcy5AROa80JJr2QdwRC3lG9-D1TylMF2_G9BfzVACEoQfykiyDsIgbrR0E9Ppl6p7FlVxWWIc7vamUHjsC4O9FuZbUN9LVsWFyuqC26OXdbQqNfIGFdsCwOKF_S4O_VYYPvZro_b_0UaZbFcY4JNj9bCHd_lCISqslQnZFQp5QiaIiC-qJ6Bdkh2P4HyTI5Q6-_4u8Ym0allcWBLe-8BY107caCx-8MMv4GMLnWTq8x0GutcF6B9zwKs9_XmzKe9mXodmxb9czD_8BG4g5R3s9mG9nfr-eUAc3rmNanbn1symfW3DpaU5SnJEpcHxZXyCelcgAKg5g&h=q61qTTjRsS1CSBqHGOzSfWf70gIrOFEMopE7HFzFWUA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2959' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2959' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2959' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2959' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '135' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4ab54f88-bdb4-4aef-8c58-f2a321e17c3a?api-version=2023-09-15-preview&t=638327087102644722&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=eQHT5yriH6WyJtzd0xDyR4duujcduoxmALbWPNVuiFHrvAKmklUmCiV_zXu6BVKT-3oBYOF0JUaqRDMQyG4mAXyYGSG-jo0CZGrXcva8vonY5Hmi1elFBUoT9gDDL3_nJ-7h4AV7iZWfv5IO8eq5KVvC9rdbo8k3VSXJScy1KkeXBm94D7lWb2ZHkPbEdP--3K1s8irbY8tZqDg0hpsSIifJIdAmIM83t5vWlRxa4eI6ypg9cHd8xcZu1WQV7eamyH601xb2k4mTcijEgYzcWp__YhSNXSkkcpAixhAcl8TRQN2c-LTr6JwvtbuDmiO4rKRdiEg62H1nAjcGaNIOFA&h=T95iaPz8vheLjqKkJiRO3iMrTnM2-u-0JB6p_6Ng1hU - cache-control: - - no-store, no-cache - content-length: - - '2958' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:30 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004/operationResults/4ab54f88-bdb4-4aef-8c58-f2a321e17c3a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4ab54f88-bdb4-4aef-8c58-f2a321e17c3a?api-version=2023-09-15-preview&t=638327087102644722&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=eQHT5yriH6WyJtzd0xDyR4duujcduoxmALbWPNVuiFHrvAKmklUmCiV_zXu6BVKT-3oBYOF0JUaqRDMQyG4mAXyYGSG-jo0CZGrXcva8vonY5Hmi1elFBUoT9gDDL3_nJ-7h4AV7iZWfv5IO8eq5KVvC9rdbo8k3VSXJScy1KkeXBm94D7lWb2ZHkPbEdP--3K1s8irbY8tZqDg0hpsSIifJIdAmIM83t5vWlRxa4eI6ypg9cHd8xcZu1WQV7eamyH601xb2k4mTcijEgYzcWp__YhSNXSkkcpAixhAcl8TRQN2c-LTr6JwvtbuDmiO4rKRdiEg62H1nAjcGaNIOFA&h=T95iaPz8vheLjqKkJiRO3iMrTnM2-u-0JB6p_6Ng1hU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4ab54f88-bdb4-4aef-8c58-f2a321e17c3a?api-version=2023-09-15-preview&t=638327087102644722&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=eQHT5yriH6WyJtzd0xDyR4duujcduoxmALbWPNVuiFHrvAKmklUmCiV_zXu6BVKT-3oBYOF0JUaqRDMQyG4mAXyYGSG-jo0CZGrXcva8vonY5Hmi1elFBUoT9gDDL3_nJ-7h4AV7iZWfv5IO8eq5KVvC9rdbo8k3VSXJScy1KkeXBm94D7lWb2ZHkPbEdP--3K1s8irbY8tZqDg0hpsSIifJIdAmIM83t5vWlRxa4eI6ypg9cHd8xcZu1WQV7eamyH601xb2k4mTcijEgYzcWp__YhSNXSkkcpAixhAcl8TRQN2c-LTr6JwvtbuDmiO4rKRdiEg62H1nAjcGaNIOFA&h=T95iaPz8vheLjqKkJiRO3iMrTnM2-u-0JB6p_6Ng1hU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2960' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2960' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_migrate_periodic_to_continuous7days000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-periodic-000004","name":"cli-periodic-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:31:09.3130145+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-periodic-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-periodic-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-periodic-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:31:09.3130145+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2960' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore.yaml deleted file mode 100644 index f7d3d460146..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore.yaml +++ /dev/null @@ -1,7341 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001","name":"cli_test_cosmosdb_sql_normal_database_prov_container_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_normal_database_prov_container_restore","date":"2023-10-12T10:52:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:52:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '342' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:52:26.9643619Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:52:26.9643619Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:52:26.9643619Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:26.9643619Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:26.9643619Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b7e1b6b-fdf1-4b73-afce-88af29fd009b?api-version=2023-09-15-preview&t=638327047492432376&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gDg8An7YQQUEp7NQdJtYxF6-OSh9ltpI3NZkM-sttjq1NGZdnUlIzX1ohQbFeSKGr59cMjE3gyBzP5shyfjedjntiLHgOGqYWtByaqEx3xeZKSbd84Ede-BUf23xumxAZI_-2g67c5wuaGj0A_Dg4SeBIPQdkLkz47oLvxVGUpXUfrRL2tj24HO12Zp15CWcTwb7-ASRpYqf-sAxIman6aIH_1Ej50N0g8yjJl71LuqD6v9d_8yrRiGW98zuyYbpwj8owRKq-lFhtY-ZRJIVe9gV-T2LrymvWQcuig3CMaDemMLR4_38zfSkLp9fR4kTWlagNGv8K-lsMRG5_-iLSA&h=G3WRUN-aludVRBOT6eyDxZWmxcDxTTf-8pqmHVRyEd0 - cache-control: - - no-store, no-cache - content-length: - - '2453' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/3b7e1b6b-fdf1-4b73-afce-88af29fd009b?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b7e1b6b-fdf1-4b73-afce-88af29fd009b?api-version=2023-09-15-preview&t=638327047492432376&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gDg8An7YQQUEp7NQdJtYxF6-OSh9ltpI3NZkM-sttjq1NGZdnUlIzX1ohQbFeSKGr59cMjE3gyBzP5shyfjedjntiLHgOGqYWtByaqEx3xeZKSbd84Ede-BUf23xumxAZI_-2g67c5wuaGj0A_Dg4SeBIPQdkLkz47oLvxVGUpXUfrRL2tj24HO12Zp15CWcTwb7-ASRpYqf-sAxIman6aIH_1Ej50N0g8yjJl71LuqD6v9d_8yrRiGW98zuyYbpwj8owRKq-lFhtY-ZRJIVe9gV-T2LrymvWQcuig3CMaDemMLR4_38zfSkLp9fR4kTWlagNGv8K-lsMRG5_-iLSA&h=G3WRUN-aludVRBOT6eyDxZWmxcDxTTf-8pqmHVRyEd0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b7e1b6b-fdf1-4b73-afce-88af29fd009b?api-version=2023-09-15-preview&t=638327047492432376&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gDg8An7YQQUEp7NQdJtYxF6-OSh9ltpI3NZkM-sttjq1NGZdnUlIzX1ohQbFeSKGr59cMjE3gyBzP5shyfjedjntiLHgOGqYWtByaqEx3xeZKSbd84Ede-BUf23xumxAZI_-2g67c5wuaGj0A_Dg4SeBIPQdkLkz47oLvxVGUpXUfrRL2tj24HO12Zp15CWcTwb7-ASRpYqf-sAxIman6aIH_1Ej50N0g8yjJl71LuqD6v9d_8yrRiGW98zuyYbpwj8owRKq-lFhtY-ZRJIVe9gV-T2LrymvWQcuig3CMaDemMLR4_38zfSkLp9fR4kTWlagNGv8K-lsMRG5_-iLSA&h=G3WRUN-aludVRBOT6eyDxZWmxcDxTTf-8pqmHVRyEd0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b7e1b6b-fdf1-4b73-afce-88af29fd009b?api-version=2023-09-15-preview&t=638327047492432376&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gDg8An7YQQUEp7NQdJtYxF6-OSh9ltpI3NZkM-sttjq1NGZdnUlIzX1ohQbFeSKGr59cMjE3gyBzP5shyfjedjntiLHgOGqYWtByaqEx3xeZKSbd84Ede-BUf23xumxAZI_-2g67c5wuaGj0A_Dg4SeBIPQdkLkz47oLvxVGUpXUfrRL2tj24HO12Zp15CWcTwb7-ASRpYqf-sAxIman6aIH_1Ej50N0g8yjJl71LuqD6v9d_8yrRiGW98zuyYbpwj8owRKq-lFhtY-ZRJIVe9gV-T2LrymvWQcuig3CMaDemMLR4_38zfSkLp9fR4kTWlagNGv8K-lsMRG5_-iLSA&h=G3WRUN-aludVRBOT6eyDxZWmxcDxTTf-8pqmHVRyEd0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b7e1b6b-fdf1-4b73-afce-88af29fd009b?api-version=2023-09-15-preview&t=638327047492432376&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gDg8An7YQQUEp7NQdJtYxF6-OSh9ltpI3NZkM-sttjq1NGZdnUlIzX1ohQbFeSKGr59cMjE3gyBzP5shyfjedjntiLHgOGqYWtByaqEx3xeZKSbd84Ede-BUf23xumxAZI_-2g67c5wuaGj0A_Dg4SeBIPQdkLkz47oLvxVGUpXUfrRL2tj24HO12Zp15CWcTwb7-ASRpYqf-sAxIman6aIH_1Ej50N0g8yjJl71LuqD6v9d_8yrRiGW98zuyYbpwj8owRKq-lFhtY-ZRJIVe9gV-T2LrymvWQcuig3CMaDemMLR4_38zfSkLp9fR4kTWlagNGv8K-lsMRG5_-iLSA&h=G3WRUN-aludVRBOT6eyDxZWmxcDxTTf-8pqmHVRyEd0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b7e1b6b-fdf1-4b73-afce-88af29fd009b?api-version=2023-09-15-preview&t=638327047492432376&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gDg8An7YQQUEp7NQdJtYxF6-OSh9ltpI3NZkM-sttjq1NGZdnUlIzX1ohQbFeSKGr59cMjE3gyBzP5shyfjedjntiLHgOGqYWtByaqEx3xeZKSbd84Ede-BUf23xumxAZI_-2g67c5wuaGj0A_Dg4SeBIPQdkLkz47oLvxVGUpXUfrRL2tj24HO12Zp15CWcTwb7-ASRpYqf-sAxIman6aIH_1Ej50N0g8yjJl71LuqD6v9d_8yrRiGW98zuyYbpwj8owRKq-lFhtY-ZRJIVe9gV-T2LrymvWQcuig3CMaDemMLR4_38zfSkLp9fR4kTWlagNGv8K-lsMRG5_-iLSA&h=G3WRUN-aludVRBOT6eyDxZWmxcDxTTf-8pqmHVRyEd0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b7e1b6b-fdf1-4b73-afce-88af29fd009b?api-version=2023-09-15-preview&t=638327047492432376&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=gDg8An7YQQUEp7NQdJtYxF6-OSh9ltpI3NZkM-sttjq1NGZdnUlIzX1ohQbFeSKGr59cMjE3gyBzP5shyfjedjntiLHgOGqYWtByaqEx3xeZKSbd84Ede-BUf23xumxAZI_-2g67c5wuaGj0A_Dg4SeBIPQdkLkz47oLvxVGUpXUfrRL2tj24HO12Zp15CWcTwb7-ASRpYqf-sAxIman6aIH_1Ej50N0g8yjJl71LuqD6v9d_8yrRiGW98zuyYbpwj8owRKq-lFhtY-ZRJIVe9gV-T2LrymvWQcuig3CMaDemMLR4_38zfSkLp9fR4kTWlagNGv8K-lsMRG5_-iLSA&h=G3WRUN-aludVRBOT6eyDxZWmxcDxTTf-8pqmHVRyEd0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:21.7732947Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:21.7732947Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:21.7732947Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:21.7732947Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:21.7732947Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2811' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:21.7732947Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:21.7732947Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:21.7732947Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:21.7732947Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:21.7732947Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2811' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26ee68ab-0045-412b-8bad-8a84d5055aad?api-version=2023-09-15&t=638327049054963163&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=FB15tOLDC908EwSqKzoIT-iz8SPQ43Q3GhCG1bJ_XOO6FIi5Plk6qQtGtYUCktTGlg0eHz-HFEfjax6yIu96s-3dpw_1Eq4KKgbrTXNpjQmJxcllagJpDO1JQqr0lUvv4MsEThXdBgPXtnjqSZlnFBrXnuL5xqlxn_dljWSPPhpNnZEpo6E-XG1cUE7tGEfgHw1SOcZ1NmgK9zfuNIuKRN5upx1Ok_eXWFkY4En5G9ZtOBmOi6tWgiNjP_XEdbOUfU2OodkFIRnUUvWTf1YuBuylK3bQ6bsV5rOTSDCNu0EXXv9oIZpmZi55qeJ806XmIL1QEK6kgmwkCRW9Lwokag&h=8SP2z7pj2Faxd47RSICkFuGFcwVKqIrTKoKQYmug94o - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:04 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/26ee68ab-0045-412b-8bad-8a84d5055aad?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26ee68ab-0045-412b-8bad-8a84d5055aad?api-version=2023-09-15&t=638327049054963163&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=FB15tOLDC908EwSqKzoIT-iz8SPQ43Q3GhCG1bJ_XOO6FIi5Plk6qQtGtYUCktTGlg0eHz-HFEfjax6yIu96s-3dpw_1Eq4KKgbrTXNpjQmJxcllagJpDO1JQqr0lUvv4MsEThXdBgPXtnjqSZlnFBrXnuL5xqlxn_dljWSPPhpNnZEpo6E-XG1cUE7tGEfgHw1SOcZ1NmgK9zfuNIuKRN5upx1Ok_eXWFkY4En5G9ZtOBmOi6tWgiNjP_XEdbOUfU2OodkFIRnUUvWTf1YuBuylK3bQ6bsV5rOTSDCNu0EXXv9oIZpmZi55qeJ806XmIL1QEK6kgmwkCRW9Lwokag&h=8SP2z7pj2Faxd47RSICkFuGFcwVKqIrTKoKQYmug94o - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26ee68ab-0045-412b-8bad-8a84d5055aad?api-version=2023-09-15&t=638327049054963163&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=FB15tOLDC908EwSqKzoIT-iz8SPQ43Q3GhCG1bJ_XOO6FIi5Plk6qQtGtYUCktTGlg0eHz-HFEfjax6yIu96s-3dpw_1Eq4KKgbrTXNpjQmJxcllagJpDO1JQqr0lUvv4MsEThXdBgPXtnjqSZlnFBrXnuL5xqlxn_dljWSPPhpNnZEpo6E-XG1cUE7tGEfgHw1SOcZ1NmgK9zfuNIuKRN5upx1Ok_eXWFkY4En5G9ZtOBmOi6tWgiNjP_XEdbOUfU2OodkFIRnUUvWTf1YuBuylK3bQ6bsV5rOTSDCNu0EXXv9oIZpmZi55qeJ806XmIL1QEK6kgmwkCRW9Lwokag&h=8SP2z7pj2Faxd47RSICkFuGFcwVKqIrTKoKQYmug94o - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"wn0mAA==","_self":"dbs/wn0mAA==/","_etag":"\"00000410-0000-0700-0000-6527d08e0000\"","_colls":"colls/","_users":"users/","_ts":1697108110}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '493' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - e037c166-68ed-11ee-9c38-9c7bef43f49d, Request URI: /apps/630d1ec5-1e0c-4e41-bd4d-59c2f41fda5e/services/1e454efe-277f-4908-bf7e-6009305ad7dd/partitions/6e8a4bfe-d312-4514-b9ec-440424ef1f00/replicas/133415799117922184s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T10:55:39.1747523Z, RequestEndTime: - 2023-10-12T10:55:39.1776174Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T10:54:48.5314587Z\\\",\\\"cpu\\\":0.567,\\\"memory\\\":469648248.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.101,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3257},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:58.5415637Z\\\",\\\"cpu\\\":0.510,\\\"memory\\\":469648448.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0508,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3258},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:08.5517227Z\\\",\\\"cpu\\\":0.450,\\\"memory\\\":469655764.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1453,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3258},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:18.5618797Z\\\",\\\"cpu\\\":0.939,\\\"memory\\\":469664656.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.043,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3254},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:28.5720591Z\\\",\\\"cpu\\\":0.586,\\\"memory\\\":469653908.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0943,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3255},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:38.5820345Z\\\",\\\"cpu\\\":0.910,\\\"memory\\\":469659888.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0434,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":3255}]}\\r\\nRequestStart: - 2023-10-12T10:55:39.1750168Z; ResponseTime: 2023-10-12T10:55:39.1776076Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.22:11300/apps/630d1ec5-1e0c-4e41-bd4d-59c2f41fda5e/services/1e454efe-277f-4908-bf7e-6009305ad7dd/partitions/6e8a4bfe-d312-4514-b9ec-440424ef1f00/replicas/133415799117922184s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.098, ActivityId: - e037c166-68ed-11ee-9c38-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 10:55:39 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 10:55:39 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 10:55:39 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:55:39 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:39.1749223Z\\\", - \\\"durationInMs\\\": 0.0175},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:39.1749398Z\\\", \\\"durationInMs\\\": - 0.0026},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:39.1749424Z\\\", - \\\"durationInMs\\\": 0.0653},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:39.1750077Z\\\", \\\"durationInMs\\\": 2.2804},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:39.1772881Z\\\", - \\\"durationInMs\\\": 0.0491},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:39.1773372Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:55:38.9067129Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:55:38.9067424Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:55:38.9598841Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T10:55:39.1750708Z; - ResponseTime: 2023-10-12T10:55:39.1776174Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.31:11000/apps/630d1ec5-1e0c-4e41-bd4d-59c2f41fda5e/services/1e454efe-277f-4908-bf7e-6009305ad7dd/partitions/6e8a4bfe-d312-4514-b9ec-440424ef1f00/replicas/133415799117922183s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.059, ActivityId: - e037c166-68ed-11ee-9c38-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 10:55:39 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 10:55:39 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 10:55:39 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:55:39 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:39.1750181Z\\\", - \\\"durationInMs\\\": 0.005},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:39.1750231Z\\\", \\\"durationInMs\\\": - 0.0019},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:39.1750250Z\\\", - \\\"durationInMs\\\": 0.0402},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:39.1750652Z\\\", \\\"durationInMs\\\": 1.6253},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:39.1766905Z\\\", - \\\"durationInMs\\\": 0.1457},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:39.1768362Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:55:39.0559623Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:55:39.0559789Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:55:39.1085895Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7099' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], - "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": ["/path/to/key1"]}, - {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": {"mode": "lastWriterWins", - "conflictResolutionPath": "/path"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '479' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/879c539b-6c44-4af6-a9fa-725f0091f7a7?api-version=2023-09-15-preview&t=638327049412824290&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Ia9WFE1P00OXc01vKqzRjv0-Iu9RwJtr1zSQlkGn2b5AmXph-2azM8yOT1nMdmUQ8ZelwFtyg6iev7q0S-Vz_gxkH0mTGD2ZSGm0XCuI5u_HUDJa4ywawpf3ld5cJl7N2r9PQPiO3oV4k4ykXD9McYWF5fHwkdTuQE_mH4aAZsl3MPdDgIXKyWjBIpR1zrUUEqLX_5CSf1m3M0syaBSlWVe_7dwVd0AvQctrSLDy4TwVnSic0qUW0184-FD4jN3Gq_HsyccOqmBEro8hlmaJbnWJQpWm3ooFAw1hAkskvMDdDvWV3oZmN4chiRGcJwvBv906BWEY1jXdnGmjcd6U-w&h=jh2K6oLjCxt1yOtF7wJNse5y6bMI0SAFH_qtZnPBhHg - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:40 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/879c539b-6c44-4af6-a9fa-725f0091f7a7?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/879c539b-6c44-4af6-a9fa-725f0091f7a7?api-version=2023-09-15-preview&t=638327049412824290&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Ia9WFE1P00OXc01vKqzRjv0-Iu9RwJtr1zSQlkGn2b5AmXph-2azM8yOT1nMdmUQ8ZelwFtyg6iev7q0S-Vz_gxkH0mTGD2ZSGm0XCuI5u_HUDJa4ywawpf3ld5cJl7N2r9PQPiO3oV4k4ykXD9McYWF5fHwkdTuQE_mH4aAZsl3MPdDgIXKyWjBIpR1zrUUEqLX_5CSf1m3M0syaBSlWVe_7dwVd0AvQctrSLDy4TwVnSic0qUW0184-FD4jN3Gq_HsyccOqmBEro8hlmaJbnWJQpWm3ooFAw1hAkskvMDdDvWV3oZmN4chiRGcJwvBv906BWEY1jXdnGmjcd6U-w&h=jh2K6oLjCxt1yOtF7wJNse5y6bMI0SAFH_qtZnPBhHg - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/879c539b-6c44-4af6-a9fa-725f0091f7a7?api-version=2023-09-15-preview&t=638327049412824290&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Ia9WFE1P00OXc01vKqzRjv0-Iu9RwJtr1zSQlkGn2b5AmXph-2azM8yOT1nMdmUQ8ZelwFtyg6iev7q0S-Vz_gxkH0mTGD2ZSGm0XCuI5u_HUDJa4ywawpf3ld5cJl7N2r9PQPiO3oV4k4ykXD9McYWF5fHwkdTuQE_mH4aAZsl3MPdDgIXKyWjBIpR1zrUUEqLX_5CSf1m3M0syaBSlWVe_7dwVd0AvQctrSLDy4TwVnSic0qUW0184-FD4jN3Gq_HsyccOqmBEro8hlmaJbnWJQpWm3ooFAw1hAkskvMDdDvWV3oZmN4chiRGcJwvBv906BWEY1jXdnGmjcd6U-w&h=jh2K6oLjCxt1yOtF7wJNse5y6bMI0SAFH_qtZnPBhHg - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697108147,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00000710-0000-0700-0000-6527d0b30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1262' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697108147,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00000710-0000-0700-0000-6527d0b30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1262' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/headquarters/employees/?"}, {"path": "/\"_etag\"/?"}]}, "partitionKey": - {"paths": ["/thePartitionKey"], "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": - [{"paths": ["/path/to/key1"]}, {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": - {"mode": "lastWriterWins", "conflictResolutionPath": "/path", "conflictResolutionProcedure": - ""}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - Content-Length: - - '540' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b30682b9-892d-49eb-a2a5-c76784084f01?api-version=2023-09-15-preview&t=638327049757422029&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sjgF1JV1I0WRexjD3h66cw1tW-_Eap739FVpZe8ylzavPFMvCH0ggZJslckmYj3uelfk2OMI__f5MaDp6ar4LWKXq2-yxPEQKLNZ4axA-zkt3yO4kU8juMDMDlOrZywXg1ywghdXnT22BuKioPx2J3eR7a481Up7SjO4aQ9qNKAQlP8oJj9mx-6X-zviPS32_5RW3HaPhhyJARcYW8vgqPPm-4Sd12kJliR2tn8BVRsm3pXUEzQe1m529JmyJcwP1BGOyw-jU5BmablRacSI_EB0H3MZFIkw9thwUq_PjV6YJFatDC2TclzqgkuflL1RkEIjMmmL8CYvEab0tFzMbw&h=mkdNnambTYjyvVkpQqnWSuMJGTbyHZ0GJTelc6LLYNs - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:14 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/b30682b9-892d-49eb-a2a5-c76784084f01?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b30682b9-892d-49eb-a2a5-c76784084f01?api-version=2023-09-15-preview&t=638327049757422029&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sjgF1JV1I0WRexjD3h66cw1tW-_Eap739FVpZe8ylzavPFMvCH0ggZJslckmYj3uelfk2OMI__f5MaDp6ar4LWKXq2-yxPEQKLNZ4axA-zkt3yO4kU8juMDMDlOrZywXg1ywghdXnT22BuKioPx2J3eR7a481Up7SjO4aQ9qNKAQlP8oJj9mx-6X-zviPS32_5RW3HaPhhyJARcYW8vgqPPm-4Sd12kJliR2tn8BVRsm3pXUEzQe1m529JmyJcwP1BGOyw-jU5BmablRacSI_EB0H3MZFIkw9thwUq_PjV6YJFatDC2TclzqgkuflL1RkEIjMmmL8CYvEab0tFzMbw&h=mkdNnambTYjyvVkpQqnWSuMJGTbyHZ0GJTelc6LLYNs - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b30682b9-892d-49eb-a2a5-c76784084f01?api-version=2023-09-15-preview&t=638327049757422029&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=sjgF1JV1I0WRexjD3h66cw1tW-_Eap739FVpZe8ylzavPFMvCH0ggZJslckmYj3uelfk2OMI__f5MaDp6ar4LWKXq2-yxPEQKLNZ4axA-zkt3yO4kU8juMDMDlOrZywXg1ywghdXnT22BuKioPx2J3eR7a481Up7SjO4aQ9qNKAQlP8oJj9mx-6X-zviPS32_5RW3HaPhhyJARcYW8vgqPPm-4Sd12kJliR2tn8BVRsm3pXUEzQe1m529JmyJcwP1BGOyw-jU5BmablRacSI_EB0H3MZFIkw9thwUq_PjV6YJFatDC2TclzqgkuflL1RkEIjMmmL8CYvEab0tFzMbw&h=mkdNnambTYjyvVkpQqnWSuMJGTbyHZ0GJTelc6LLYNs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697108147,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00000710-0000-0700-0000-6527d0b30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1262' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697108147,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00000710-0000-0700-0000-6527d0b30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1262' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697108147,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00000710-0000-0700-0000-6527d0b30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697108147,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00000710-0000-0700-0000-6527d0b30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1264' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c150b4a0-cc36-4c86-a03b-0869ffd5589f?api-version=2023-09-15&t=638327053136347478&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pTwH0ewIOalLJsuSYt65-FMS7j4ayZaYAa-6iBJIiWzlcKMeSqTigvlk7anxZFHJfKfyUNctyUQ44Ty_RrXbFueIX6yxZsW_oQffSFTumPQj6Roh5xjG5zcIkutmvoA08SdjDoQMHbUxlXx_yqrNuwE4H0HzDH_xNUc3usDscfrNWzLktBL_d2_a7TOkKNYTtppzBV-aoUk-h8xDpa4NvAOk0-5so2UG8SOACyaJh8Jfe-wFcextPgGWv0__krN0cWiqNVmvow73VtmOR12GUg4jHw-z-Tuaj8DB9K_NBFaDnfERfB_mor2DA07-8x7r-wfsMNApnOCzPcQIEtyBTg&h=O7ndxKJyl-optWu0ccNUwEYTOcgM54w0GgY7f_BZBcw - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:53 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/c150b4a0-cc36-4c86-a03b-0869ffd5589f?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c150b4a0-cc36-4c86-a03b-0869ffd5589f?api-version=2023-09-15&t=638327053136347478&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pTwH0ewIOalLJsuSYt65-FMS7j4ayZaYAa-6iBJIiWzlcKMeSqTigvlk7anxZFHJfKfyUNctyUQ44Ty_RrXbFueIX6yxZsW_oQffSFTumPQj6Roh5xjG5zcIkutmvoA08SdjDoQMHbUxlXx_yqrNuwE4H0HzDH_xNUc3usDscfrNWzLktBL_d2_a7TOkKNYTtppzBV-aoUk-h8xDpa4NvAOk0-5so2UG8SOACyaJh8Jfe-wFcextPgGWv0__krN0cWiqNVmvow73VtmOR12GUg4jHw-z-Tuaj8DB9K_NBFaDnfERfB_mor2DA07-8x7r-wfsMNApnOCzPcQIEtyBTg&h=O7ndxKJyl-optWu0ccNUwEYTOcgM54w0GgY7f_BZBcw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c150b4a0-cc36-4c86-a03b-0869ffd5589f?api-version=2023-09-15&t=638327053136347478&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pTwH0ewIOalLJsuSYt65-FMS7j4ayZaYAa-6iBJIiWzlcKMeSqTigvlk7anxZFHJfKfyUNctyUQ44Ty_RrXbFueIX6yxZsW_oQffSFTumPQj6Roh5xjG5zcIkutmvoA08SdjDoQMHbUxlXx_yqrNuwE4H0HzDH_xNUc3usDscfrNWzLktBL_d2_a7TOkKNYTtppzBV-aoUk-h8xDpa4NvAOk0-5so2UG8SOACyaJh8Jfe-wFcextPgGWv0__krN0cWiqNVmvow73VtmOR12GUg4jHw-z-Tuaj8DB9K_NBFaDnfERfB_mor2DA07-8x7r-wfsMNApnOCzPcQIEtyBTg&h=O7ndxKJyl-optWu0ccNUwEYTOcgM54w0GgY7f_BZBcw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:02:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:02:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","oldestRestorableTime":"2023-10-12T10:59:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:02:28Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:02:29Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '287654' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:02:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b", - "restoreTimestampInUtc": "2023-10-12T10:56:50.504174Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/844d22dd-d66e-4fa1-858f-7ed434fb6a3a?api-version=2023-09-15-preview&t=638327053560069197&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PQUGw-rdg5YgAWuzl5ndL5qogL1sqOC3ZhmyzP4BPv3FVCdSljfJW6W98ySK8pLyHqLg-xsYx-4CugbreADNJnJJSPGfIDqmz7BL-JzIelSWHZ1m6WMF5K75rdT4qK_QplN92nV6gSzwRfk65V0pyLZFTr71J3arIXXNwN2urWiu7uNV4aVOo51NqKv8tqRG4Pm0Je1i7zA3XYF3SlOQYd7XdN41AVQwcFqH2-Rn3Zu1-_G9-oiUNbCmRe4B3_Ld8WwffKv-ScCqriaBkxpU7nZFlu2h6q2QoR1xG6qhfP4RMdio_lgGpBf5jSolnMISzDUk2sasrgk49T6AuT3BJQ&h=Q-aqM4pkp_1drE90j8NBonxvAVVFQVOz44Edaa75SrQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"d422c927-68ee-11ee-9c82-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:50.504174+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b"},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697108736,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00001410-0000-0700-0000-6527d3000000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1579' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"d422c927-68ee-11ee-9c82-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:50.504174+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b"},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697108736,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00001410-0000-0700-0000-6527d3000000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1476' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/107f5c62-8ce0-4927-a008-52c208a6ca8c?api-version=2023-09-15&t=638327057906803847&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=PAR1ubnGY8gcFrbM6YmrUXi2sxNxiFIj05Z6uhtGXnQrYvza9zUNPrgJ-nRTwx4Fi6rp9zfvXNHmsEtMdD0BZY7FxVNW88i6HeFc7F0ycSn43Z49o_ZDfUYxLHCWvlm2OEPUHIpg0_sDhI1NTatiQtFsjLYLfo249bu8yefdMxsDKPpHE333_hgcQgkdK_j8HiF1NfN0eUdSFxy4_ppnxx2J02oA5F7GFRwFFKhbRySHhm9Geo6E90zRH34jvRabgKPk3E0wupgZr7u_lDH2P-I_SQ3kukN9caJPMJYHhOORBn4x7ipTgAsx2diEtbAsgz4363ujx9PCnejr1rxckQ&h=lx9SwY2t4d2j9SsOqXSBN2Mv95rqhhm9LRc2KENNYxc - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:49 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/107f5c62-8ce0-4927-a008-52c208a6ca8c?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/107f5c62-8ce0-4927-a008-52c208a6ca8c?api-version=2023-09-15&t=638327057906803847&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=PAR1ubnGY8gcFrbM6YmrUXi2sxNxiFIj05Z6uhtGXnQrYvza9zUNPrgJ-nRTwx4Fi6rp9zfvXNHmsEtMdD0BZY7FxVNW88i6HeFc7F0ycSn43Z49o_ZDfUYxLHCWvlm2OEPUHIpg0_sDhI1NTatiQtFsjLYLfo249bu8yefdMxsDKPpHE333_hgcQgkdK_j8HiF1NfN0eUdSFxy4_ppnxx2J02oA5F7GFRwFFKhbRySHhm9Geo6E90zRH34jvRabgKPk3E0wupgZr7u_lDH2P-I_SQ3kukN9caJPMJYHhOORBn4x7ipTgAsx2diEtbAsgz4363ujx9PCnejr1rxckQ&h=lx9SwY2t4d2j9SsOqXSBN2Mv95rqhhm9LRc2KENNYxc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/107f5c62-8ce0-4927-a008-52c208a6ca8c?api-version=2023-09-15&t=638327057906803847&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=PAR1ubnGY8gcFrbM6YmrUXi2sxNxiFIj05Z6uhtGXnQrYvza9zUNPrgJ-nRTwx4Fi6rp9zfvXNHmsEtMdD0BZY7FxVNW88i6HeFc7F0ycSn43Z49o_ZDfUYxLHCWvlm2OEPUHIpg0_sDhI1NTatiQtFsjLYLfo249bu8yefdMxsDKPpHE333_hgcQgkdK_j8HiF1NfN0eUdSFxy4_ppnxx2J02oA5F7GFRwFFKhbRySHhm9Geo6E90zRH34jvRabgKPk3E0wupgZr7u_lDH2P-I_SQ3kukN9caJPMJYHhOORBn4x7ipTgAsx2diEtbAsgz4363ujx9PCnejr1rxckQ&h=lx9SwY2t4d2j9SsOqXSBN2Mv95rqhhm9LRc2KENNYxc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:10:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:10:26Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:10:25Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '288438' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:10:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b", - "restoreTimestampInUtc": "2023-10-12T10:56:50.504174Z"}, "createMode": "Restore"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - Content-Length: - - '337' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020a0e40-31c5-4c1d-be23-9ecf322be21e?api-version=2023-09-15-preview&t=638327058348124847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SfY5aiiG9TrIJEWlomLYMHzQlfqk0smlFxqwBxLV2LyfGJR8EkQ1NjH3rqmjoPkYeiUlVROXxz14qnWwmxGXtHTMRSSl-uRCZWjmqjBxJk5m32fKVbtpFqRVBMXRIaTVyDP37YIkRxCEJ71cfc6SgTUZlRQHnBDeWKPw9enU51iq8LOJsToUZifBKJgOceR7oLBymO-deHln4hYpRQLvR-zJeLeUw1kDAQe5he7IiCKngjSCesPx8wc7PaiSB6T1SnEC1XRnwXt_VgUk0Vd_bBmBevaeczAQdWsSlgm1-Tb5RBYjaiG6oOcQiWMeWuimzFjxfsW2sqjg2P1RhrL0Iw&h=wWS0Wx0pwiVRGj6Im7Mfilg_iCFsW-UypBGMmLD-nno - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:34 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/020a0e40-31c5-4c1d-be23-9ecf322be21e?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020a0e40-31c5-4c1d-be23-9ecf322be21e?api-version=2023-09-15-preview&t=638327058348124847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SfY5aiiG9TrIJEWlomLYMHzQlfqk0smlFxqwBxLV2LyfGJR8EkQ1NjH3rqmjoPkYeiUlVROXxz14qnWwmxGXtHTMRSSl-uRCZWjmqjBxJk5m32fKVbtpFqRVBMXRIaTVyDP37YIkRxCEJ71cfc6SgTUZlRQHnBDeWKPw9enU51iq8LOJsToUZifBKJgOceR7oLBymO-deHln4hYpRQLvR-zJeLeUw1kDAQe5he7IiCKngjSCesPx8wc7PaiSB6T1SnEC1XRnwXt_VgUk0Vd_bBmBevaeczAQdWsSlgm1-Tb5RBYjaiG6oOcQiWMeWuimzFjxfsW2sqjg2P1RhrL0Iw&h=wWS0Wx0pwiVRGj6Im7Mfilg_iCFsW-UypBGMmLD-nno - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020a0e40-31c5-4c1d-be23-9ecf322be21e?api-version=2023-09-15-preview&t=638327058348124847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SfY5aiiG9TrIJEWlomLYMHzQlfqk0smlFxqwBxLV2LyfGJR8EkQ1NjH3rqmjoPkYeiUlVROXxz14qnWwmxGXtHTMRSSl-uRCZWjmqjBxJk5m32fKVbtpFqRVBMXRIaTVyDP37YIkRxCEJ71cfc6SgTUZlRQHnBDeWKPw9enU51iq8LOJsToUZifBKJgOceR7oLBymO-deHln4hYpRQLvR-zJeLeUw1kDAQe5he7IiCKngjSCesPx8wc7PaiSB6T1SnEC1XRnwXt_VgUk0Vd_bBmBevaeczAQdWsSlgm1-Tb5RBYjaiG6oOcQiWMeWuimzFjxfsW2sqjg2P1RhrL0Iw&h=wWS0Wx0pwiVRGj6Im7Mfilg_iCFsW-UypBGMmLD-nno - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020a0e40-31c5-4c1d-be23-9ecf322be21e?api-version=2023-09-15-preview&t=638327058348124847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SfY5aiiG9TrIJEWlomLYMHzQlfqk0smlFxqwBxLV2LyfGJR8EkQ1NjH3rqmjoPkYeiUlVROXxz14qnWwmxGXtHTMRSSl-uRCZWjmqjBxJk5m32fKVbtpFqRVBMXRIaTVyDP37YIkRxCEJ71cfc6SgTUZlRQHnBDeWKPw9enU51iq8LOJsToUZifBKJgOceR7oLBymO-deHln4hYpRQLvR-zJeLeUw1kDAQe5he7IiCKngjSCesPx8wc7PaiSB6T1SnEC1XRnwXt_VgUk0Vd_bBmBevaeczAQdWsSlgm1-Tb5RBYjaiG6oOcQiWMeWuimzFjxfsW2sqjg2P1RhrL0Iw&h=wWS0Wx0pwiVRGj6Im7Mfilg_iCFsW-UypBGMmLD-nno - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020a0e40-31c5-4c1d-be23-9ecf322be21e?api-version=2023-09-15-preview&t=638327058348124847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SfY5aiiG9TrIJEWlomLYMHzQlfqk0smlFxqwBxLV2LyfGJR8EkQ1NjH3rqmjoPkYeiUlVROXxz14qnWwmxGXtHTMRSSl-uRCZWjmqjBxJk5m32fKVbtpFqRVBMXRIaTVyDP37YIkRxCEJ71cfc6SgTUZlRQHnBDeWKPw9enU51iq8LOJsToUZifBKJgOceR7oLBymO-deHln4hYpRQLvR-zJeLeUw1kDAQe5he7IiCKngjSCesPx8wc7PaiSB6T1SnEC1XRnwXt_VgUk0Vd_bBmBevaeczAQdWsSlgm1-Tb5RBYjaiG6oOcQiWMeWuimzFjxfsW2sqjg2P1RhrL0Iw&h=wWS0Wx0pwiVRGj6Im7Mfilg_iCFsW-UypBGMmLD-nno - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020a0e40-31c5-4c1d-be23-9ecf322be21e?api-version=2023-09-15-preview&t=638327058348124847&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=SfY5aiiG9TrIJEWlomLYMHzQlfqk0smlFxqwBxLV2LyfGJR8EkQ1NjH3rqmjoPkYeiUlVROXxz14qnWwmxGXtHTMRSSl-uRCZWjmqjBxJk5m32fKVbtpFqRVBMXRIaTVyDP37YIkRxCEJ71cfc6SgTUZlRQHnBDeWKPw9enU51iq8LOJsToUZifBKJgOceR7oLBymO-deHln4hYpRQLvR-zJeLeUw1kDAQe5he7IiCKngjSCesPx8wc7PaiSB6T1SnEC1XRnwXt_VgUk0Vd_bBmBevaeczAQdWsSlgm1-Tb5RBYjaiG6oOcQiWMeWuimzFjxfsW2sqjg2P1RhrL0Iw&h=wWS0Wx0pwiVRGj6Im7Mfilg_iCFsW-UypBGMmLD-nno - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"wn0mAA==","_self":"dbs/wn0mAA==/","_etag":"\"00001b10-0000-0700-0000-6527d4570000\"","_colls":"colls/","_users":"users/","_ts":1697109079}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '493' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"wn0mAA==","_self":"dbs/wn0mAA==/","_etag":"\"00001b10-0000-0700-0000-6527d4570000\"","_colls":"colls/","_users":"users/","_ts":1697109079}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '493' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:12:42Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:12:42Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:12:42Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:12:42Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:12:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:12:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:12:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:12:44Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '288615' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:12:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b", - "restoreTimestampInUtc": "2023-10-12T10:56:50.504174Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:51 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/137c6adf-96f2-4980-93a3-f1a0b658abbe?api-version=2023-09-15-preview&t=638327059715285934&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Cc1QEXZ7F0gpfDKiHjxTcECghloETAuPPPX5XtIyH06Nwx9mm3DXcC2EIejzh1nyJk7F8uoyQVX9MjuPJKu8R81xAtoOR_LtJPkrMEWWmJkHyz2KPNAXLiU6SJz-xvPrCJNwT9KkGRWp3rqgGplQGyuxsGdsQyXS5AzAGQSzmzWbqqRIY6xY-iUO6eBykL_QcA0Tl3oTJEazLhRhs2v4AxF-LM6pmdmBGcze6zkOcazP6UbUL3mFSwHPqgrurSdEjNvCYDpI-xgkUwzMiBEswUGCmy-6yRCr7RfTyr0PHVqW_H4QxArNPeF__Z_UGXiqojWH1JnkpiFsbJrpFYIOkA&h=maHPv9N4F6kDijicNg3MEeslnLuDS2xmUsIZTB_NKmk - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"42968e59-68f0-11ee-b30d-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:50.504174+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b"},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697109476,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00002110-0000-0700-0000-6527d5e40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1579' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"42968e59-68f0-11ee-b30d-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:50.504174+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b"},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697109476,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00002110-0000-0700-0000-6527d5e40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1476' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"42968e59-68f0-11ee-b30d-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:50.504174+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b"},"geospatialConfig":{"type":"Geography"},"_rid":"wn0mANpILTU=","_ts":1697109476,"_self":"dbs/wn0mAA==/colls/wn0mANpILTU=/","_etag":"\"00002110-0000-0700-0000-6527d5e40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1579' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_restore.yaml deleted file mode 100644 index a1e85491290..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_restore.yaml +++ /dev/null @@ -1,2672 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_normal_database_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001","name":"cli_test_cosmosdb_sql_normal_database_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_normal_database_restore","date":"2023-10-12T11:22:09Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '459' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:22:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '342' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:22:18.6346692Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"815137b0-4645-4866-bb5d-815320a1fc1e","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:22:18.6346692Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:22:18.6346692Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:22:18.6346692Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:22:18.6346692Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85d64eb1-0858-4b73-b9d8-2b9e40b2471f?api-version=2023-09-15-preview&t=638327065407057173&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GACYIeYzAhl5RhBhpcZBUaxWh2xg0pIOj9-R0BX6mzK5zQFC9Y6PnPgClIILa4HOPyArmAJ9U6Kc2RlOHpM8PvDtkhmBimpw7fiXd8HF8hDNROo5dYhiag8fCLRSHta1Fxxi6qQ6D9JVLH97Q42G6G9v5AQGCrYswxF6fXDrUJwVgILXVhL6WdQW5JV6LwV_KSzwwYF6SEHeJ9XafZ0xZQPHk04Ybx8FpJDWCCfVLZ_QuJmORCJPO0FdJIJQjaZyAm-2Cv_j6R2E_H_3EG2YahIcFyaDsAoJ0DoVloBXG6vgCMUL00l_kknAznb8SkVb4L5amjbFANr2uKnnPADFAA&h=ni3MFoJ-q6ElXytv3M3v9hjDuAmnj5ApCBupFSqstAo - cache-control: - - no-store, no-cache - content-length: - - '2438' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:19 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/85d64eb1-0858-4b73-b9d8-2b9e40b2471f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85d64eb1-0858-4b73-b9d8-2b9e40b2471f?api-version=2023-09-15-preview&t=638327065407057173&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GACYIeYzAhl5RhBhpcZBUaxWh2xg0pIOj9-R0BX6mzK5zQFC9Y6PnPgClIILa4HOPyArmAJ9U6Kc2RlOHpM8PvDtkhmBimpw7fiXd8HF8hDNROo5dYhiag8fCLRSHta1Fxxi6qQ6D9JVLH97Q42G6G9v5AQGCrYswxF6fXDrUJwVgILXVhL6WdQW5JV6LwV_KSzwwYF6SEHeJ9XafZ0xZQPHk04Ybx8FpJDWCCfVLZ_QuJmORCJPO0FdJIJQjaZyAm-2Cv_j6R2E_H_3EG2YahIcFyaDsAoJ0DoVloBXG6vgCMUL00l_kknAznb8SkVb4L5amjbFANr2uKnnPADFAA&h=ni3MFoJ-q6ElXytv3M3v9hjDuAmnj5ApCBupFSqstAo - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85d64eb1-0858-4b73-b9d8-2b9e40b2471f?api-version=2023-09-15-preview&t=638327065407057173&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GACYIeYzAhl5RhBhpcZBUaxWh2xg0pIOj9-R0BX6mzK5zQFC9Y6PnPgClIILa4HOPyArmAJ9U6Kc2RlOHpM8PvDtkhmBimpw7fiXd8HF8hDNROo5dYhiag8fCLRSHta1Fxxi6qQ6D9JVLH97Q42G6G9v5AQGCrYswxF6fXDrUJwVgILXVhL6WdQW5JV6LwV_KSzwwYF6SEHeJ9XafZ0xZQPHk04Ybx8FpJDWCCfVLZ_QuJmORCJPO0FdJIJQjaZyAm-2Cv_j6R2E_H_3EG2YahIcFyaDsAoJ0DoVloBXG6vgCMUL00l_kknAznb8SkVb4L5amjbFANr2uKnnPADFAA&h=ni3MFoJ-q6ElXytv3M3v9hjDuAmnj5ApCBupFSqstAo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85d64eb1-0858-4b73-b9d8-2b9e40b2471f?api-version=2023-09-15-preview&t=638327065407057173&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GACYIeYzAhl5RhBhpcZBUaxWh2xg0pIOj9-R0BX6mzK5zQFC9Y6PnPgClIILa4HOPyArmAJ9U6Kc2RlOHpM8PvDtkhmBimpw7fiXd8HF8hDNROo5dYhiag8fCLRSHta1Fxxi6qQ6D9JVLH97Q42G6G9v5AQGCrYswxF6fXDrUJwVgILXVhL6WdQW5JV6LwV_KSzwwYF6SEHeJ9XafZ0xZQPHk04Ybx8FpJDWCCfVLZ_QuJmORCJPO0FdJIJQjaZyAm-2Cv_j6R2E_H_3EG2YahIcFyaDsAoJ0DoVloBXG6vgCMUL00l_kknAznb8SkVb4L5amjbFANr2uKnnPADFAA&h=ni3MFoJ-q6ElXytv3M3v9hjDuAmnj5ApCBupFSqstAo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85d64eb1-0858-4b73-b9d8-2b9e40b2471f?api-version=2023-09-15-preview&t=638327065407057173&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GACYIeYzAhl5RhBhpcZBUaxWh2xg0pIOj9-R0BX6mzK5zQFC9Y6PnPgClIILa4HOPyArmAJ9U6Kc2RlOHpM8PvDtkhmBimpw7fiXd8HF8hDNROo5dYhiag8fCLRSHta1Fxxi6qQ6D9JVLH97Q42G6G9v5AQGCrYswxF6fXDrUJwVgILXVhL6WdQW5JV6LwV_KSzwwYF6SEHeJ9XafZ0xZQPHk04Ybx8FpJDWCCfVLZ_QuJmORCJPO0FdJIJQjaZyAm-2Cv_j6R2E_H_3EG2YahIcFyaDsAoJ0DoVloBXG6vgCMUL00l_kknAznb8SkVb4L5amjbFANr2uKnnPADFAA&h=ni3MFoJ-q6ElXytv3M3v9hjDuAmnj5ApCBupFSqstAo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85d64eb1-0858-4b73-b9d8-2b9e40b2471f?api-version=2023-09-15-preview&t=638327065407057173&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GACYIeYzAhl5RhBhpcZBUaxWh2xg0pIOj9-R0BX6mzK5zQFC9Y6PnPgClIILa4HOPyArmAJ9U6Kc2RlOHpM8PvDtkhmBimpw7fiXd8HF8hDNROo5dYhiag8fCLRSHta1Fxxi6qQ6D9JVLH97Q42G6G9v5AQGCrYswxF6fXDrUJwVgILXVhL6WdQW5JV6LwV_KSzwwYF6SEHeJ9XafZ0xZQPHk04Ybx8FpJDWCCfVLZ_QuJmORCJPO0FdJIJQjaZyAm-2Cv_j6R2E_H_3EG2YahIcFyaDsAoJ0DoVloBXG6vgCMUL00l_kknAznb8SkVb4L5amjbFANr2uKnnPADFAA&h=ni3MFoJ-q6ElXytv3M3v9hjDuAmnj5ApCBupFSqstAo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85d64eb1-0858-4b73-b9d8-2b9e40b2471f?api-version=2023-09-15-preview&t=638327065407057173&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=GACYIeYzAhl5RhBhpcZBUaxWh2xg0pIOj9-R0BX6mzK5zQFC9Y6PnPgClIILa4HOPyArmAJ9U6Kc2RlOHpM8PvDtkhmBimpw7fiXd8HF8hDNROo5dYhiag8fCLRSHta1Fxxi6qQ6D9JVLH97Q42G6G9v5AQGCrYswxF6fXDrUJwVgILXVhL6WdQW5JV6LwV_KSzwwYF6SEHeJ9XafZ0xZQPHk04Ybx8FpJDWCCfVLZ_QuJmORCJPO0FdJIJQjaZyAm-2Cv_j6R2E_H_3EG2YahIcFyaDsAoJ0DoVloBXG6vgCMUL00l_kknAznb8SkVb4L5amjbFANr2uKnnPADFAA&h=ni3MFoJ-q6ElXytv3M3v9hjDuAmnj5ApCBupFSqstAo - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:24:15.0764549Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"815137b0-4645-4866-bb5d-815320a1fc1e","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:24:15.0764549Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:24:15.0764549Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:24:15.0764549Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:24:15.0764549Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2796' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:24:15.0764549Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"815137b0-4645-4866-bb5d-815320a1fc1e","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:24:15.0764549Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:24:15.0764549Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:24:15.0764549Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:24:15.0764549Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2796' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - f721180a-68f1-11ee-8d84-9c7bef43f49d, Request URI: /apps/502b60a8-504e-4087-985e-df2f5536f5b9/services/f91fef80-ada6-4e73-8467-e4d32e956bf6/partitions/29dcfed9-9f4e-45c1-bb6b-c28ad3db3110/replicas/133412985081256046s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T11:24:55.8658390Z, RequestEndTime: - 2023-10-12T11:24:55.8685478Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T11:23:59.9202843Z\\\",\\\"cpu\\\":0.810,\\\"memory\\\":473245272.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0723,\\\"availableThreads\\\":32764,\\\"minThreads\\\":48,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":693},{\\\"dateUtc\\\":\\\"2023-10-12T11:24:09.9308390Z\\\",\\\"cpu\\\":0.907,\\\"memory\\\":473237112.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1489,\\\"availableThreads\\\":32764,\\\"minThreads\\\":48,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":693},{\\\"dateUtc\\\":\\\"2023-10-12T11:24:19.9414351Z\\\",\\\"cpu\\\":1.336,\\\"memory\\\":473290608.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1815,\\\"availableThreads\\\":32762,\\\"minThreads\\\":48,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":693},{\\\"dateUtc\\\":\\\"2023-10-12T11:24:29.9520877Z\\\",\\\"cpu\\\":0.488,\\\"memory\\\":473289852.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0226,\\\"availableThreads\\\":32764,\\\"minThreads\\\":48,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":695},{\\\"dateUtc\\\":\\\"2023-10-12T11:24:39.9626087Z\\\",\\\"cpu\\\":0.520,\\\"memory\\\":473277904.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1427,\\\"availableThreads\\\":32764,\\\"minThreads\\\":48,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":699},{\\\"dateUtc\\\":\\\"2023-10-12T11:24:49.9732430Z\\\",\\\"cpu\\\":0.670,\\\"memory\\\":473284960.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.2008,\\\"availableThreads\\\":32764,\\\"minThreads\\\":48,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":707}]}\\r\\nRequestStart: - 2023-10-12T11:24:55.8661175Z; ResponseTime: 2023-10-12T11:24:55.8685378Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/502b60a8-504e-4087-985e-df2f5536f5b9/services/f91fef80-ada6-4e73-8467-e4d32e956bf6/partitions/29dcfed9-9f4e-45c1-bb6b-c28ad3db3110/replicas/133412985081256046s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.062, ActivityId: - f721180a-68f1-11ee-8d84-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:24:55 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 11:24:55 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:24:55 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:24:55 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:24:55.8660208Z\\\", - \\\"durationInMs\\\": 0.0108},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:24:55.8660316Z\\\", \\\"durationInMs\\\": - 0.0032},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:24:55.8660348Z\\\", - \\\"durationInMs\\\": 0.0722},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:24:55.8661070Z\\\", \\\"durationInMs\\\": 1.5416},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:24:55.8676486Z\\\", - \\\"durationInMs\\\": 0.1742},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:24:55.8678228Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:24:55.7101963Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:24:55.7102101Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:24:55.7659675Z\\\"},\\\"requestSizeInBytes\\\":472,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2023-10-12T11:24:55.8661686Z; - ResponseTime: 2023-10-12T11:24:55.8685478Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.0.25:11300/apps/502b60a8-504e-4087-985e-df2f5536f5b9/services/f91fef80-ada6-4e73-8467-e4d32e956bf6/partitions/29dcfed9-9f4e-45c1-bb6b-c28ad3db3110/replicas/133412985081256047s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.305, ActivityId: - f721180a-68f1-11ee-8d84-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:24:55 AM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 11:24:55 AM),(port: 11300 | status: Unknown - | lkt: 10/12/2023 11:24:55 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:24:55 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:24:55.8661196Z\\\", - \\\"durationInMs\\\": 0.0045},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:24:55.8661241Z\\\", \\\"durationInMs\\\": - 0.0013},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:24:55.8661254Z\\\", - \\\"durationInMs\\\": 0.0382},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:24:55.8661636Z\\\", \\\"durationInMs\\\": 1.7797},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:24:55.8679433Z\\\", - \\\"durationInMs\\\": 0.0953},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:24:55.8680386Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:24:55.7101315Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:24:55.7101607Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:24:55.7733140Z\\\"},\\\"requestSizeInBytes\\\":472,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7070' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/911d76e9-a2dc-4b99-93b1-a2e3e36f27b8?api-version=2023-09-15&t=638327066987614908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TD0u78LBvIkHeB5UoCyRgTVNDnGaAOhUcJLYbn0OqeT3x_F9uyFxrZkSy1L0mkp4xi3gO4sucIE-fKXWF2Xb5z_H_FYey8jzFfk7nC8lk3FTA_koDvOLnajRkUceFBnuAKeJqhj6iyCIW5Bye7epgpViUTbwNlq4LWP9cfSTZ51a530oe4ffXhap7ATgehKhPwpVAxEHuRxOaysgY1mBgbUGDTE1hj_5a6TfyOKMpXqD1_PiBYHPWHKrZv4GVIzB-0EyyEzSgAtqy7ezP-gT1Ol7DyWOBua3q7yxfoxTCs7XM0107HdkkcAQo-N9ndD-5x-EewVYboSUWjswgXP1AQ&h=9iy9SHkhx-WEl3S-M4qyQYNRt8M12KFcNC2kncohaW4 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:58 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/911d76e9-a2dc-4b99-93b1-a2e3e36f27b8?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/911d76e9-a2dc-4b99-93b1-a2e3e36f27b8?api-version=2023-09-15&t=638327066987614908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TD0u78LBvIkHeB5UoCyRgTVNDnGaAOhUcJLYbn0OqeT3x_F9uyFxrZkSy1L0mkp4xi3gO4sucIE-fKXWF2Xb5z_H_FYey8jzFfk7nC8lk3FTA_koDvOLnajRkUceFBnuAKeJqhj6iyCIW5Bye7epgpViUTbwNlq4LWP9cfSTZ51a530oe4ffXhap7ATgehKhPwpVAxEHuRxOaysgY1mBgbUGDTE1hj_5a6TfyOKMpXqD1_PiBYHPWHKrZv4GVIzB-0EyyEzSgAtqy7ezP-gT1Ol7DyWOBua3q7yxfoxTCs7XM0107HdkkcAQo-N9ndD-5x-EewVYboSUWjswgXP1AQ&h=9iy9SHkhx-WEl3S-M4qyQYNRt8M12KFcNC2kncohaW4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/911d76e9-a2dc-4b99-93b1-a2e3e36f27b8?api-version=2023-09-15&t=638327066987614908&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TD0u78LBvIkHeB5UoCyRgTVNDnGaAOhUcJLYbn0OqeT3x_F9uyFxrZkSy1L0mkp4xi3gO4sucIE-fKXWF2Xb5z_H_FYey8jzFfk7nC8lk3FTA_koDvOLnajRkUceFBnuAKeJqhj6iyCIW5Bye7epgpViUTbwNlq4LWP9cfSTZ51a530oe4ffXhap7ATgehKhPwpVAxEHuRxOaysgY1mBgbUGDTE1hj_5a6TfyOKMpXqD1_PiBYHPWHKrZv4GVIzB-0EyyEzSgAtqy7ezP-gT1Ol7DyWOBua3q7yxfoxTCs7XM0107HdkkcAQo-N9ndD-5x-EewVYboSUWjswgXP1AQ&h=9iy9SHkhx-WEl3S-M4qyQYNRt8M12KFcNC2kncohaW4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"V+MnAA==","_self":"dbs/V+MnAA==/","_etag":"\"00008103-0000-0700-0000-6527d7900000\"","_colls":"colls/","_users":"users/","_ts":1697109904}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '478' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"V+MnAA==","_self":"dbs/V+MnAA==/","_etag":"\"00008103-0000-0700-0000-6527d7900000\"","_colls":"colls/","_users":"users/","_ts":1697109904}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '478' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"V+MnAA==","_self":"dbs/V+MnAA==/","_etag":"\"00008103-0000-0700-0000-6527d7900000\"","_colls":"colls/","_users":"users/","_ts":1697109904}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '490' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"V+MnAA==","_self":"dbs/V+MnAA==/","_etag":"\"00008103-0000-0700-0000-6527d7900000\"","_colls":"colls/","_users":"users/","_ts":1697109904}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '478' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3aabf6b3-176a-4682-8041-7bd100357d51?api-version=2023-09-15&t=638327067377879433&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CsHtY9YywVmzDbEOCjNb6gMdxH8tXNB6Pf4F1V9_bdtD6HxleYMnM6oIB21mUUbQmS3MKUg0mhMuRcbjz7L1f_D_k6u_pL7BzcvcX6kgCWLb5PHUU_Xd_FO-minGM3AbK27Pirgx_zletNjFhY9Zytj2tDd8iYt-X1essfDWLTj5WJ43X8Q3ghSDCT8aD4LdpjSQIhrpG6DkSvI80k-RzmTZX0_X_nfxynLo9M9Cw0k3g7_X1DPGKV5SVqiWr0yUT-PYme9eoXlpjno3OC_ZplV2afmG2iNh7bLmXSCIJOA-rm5cxv57cZcJ4p981HotsxWYzOxQ5NGqvRjQPV_7UQ&h=44zQQF9SxmVLfqpjrlIz4qPlFFSl-eM6lpdRKyzhk54 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:37 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/3aabf6b3-176a-4682-8041-7bd100357d51?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3aabf6b3-176a-4682-8041-7bd100357d51?api-version=2023-09-15&t=638327067377879433&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CsHtY9YywVmzDbEOCjNb6gMdxH8tXNB6Pf4F1V9_bdtD6HxleYMnM6oIB21mUUbQmS3MKUg0mhMuRcbjz7L1f_D_k6u_pL7BzcvcX6kgCWLb5PHUU_Xd_FO-minGM3AbK27Pirgx_zletNjFhY9Zytj2tDd8iYt-X1essfDWLTj5WJ43X8Q3ghSDCT8aD4LdpjSQIhrpG6DkSvI80k-RzmTZX0_X_nfxynLo9M9Cw0k3g7_X1DPGKV5SVqiWr0yUT-PYme9eoXlpjno3OC_ZplV2afmG2iNh7bLmXSCIJOA-rm5cxv57cZcJ4p981HotsxWYzOxQ5NGqvRjQPV_7UQ&h=44zQQF9SxmVLfqpjrlIz4qPlFFSl-eM6lpdRKyzhk54 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3aabf6b3-176a-4682-8041-7bd100357d51?api-version=2023-09-15&t=638327067377879433&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=CsHtY9YywVmzDbEOCjNb6gMdxH8tXNB6Pf4F1V9_bdtD6HxleYMnM6oIB21mUUbQmS3MKUg0mhMuRcbjz7L1f_D_k6u_pL7BzcvcX6kgCWLb5PHUU_Xd_FO-minGM3AbK27Pirgx_zletNjFhY9Zytj2tDd8iYt-X1essfDWLTj5WJ43X8Q3ghSDCT8aD4LdpjSQIhrpG6DkSvI80k-RzmTZX0_X_nfxynLo9M9Cw0k3g7_X1DPGKV5SVqiWr0yUT-PYme9eoXlpjno3OC_ZplV2afmG2iNh7bLmXSCIJOA-rm5cxv57cZcJ4p981HotsxWYzOxQ5NGqvRjQPV_7UQ&h=44zQQF9SxmVLfqpjrlIz4qPlFFSl-eM6lpdRKyzhk54 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","oldestRestorableTime":"2023-10-12T11:13:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","oldestRestorableTime":"2023-10-12T11:25:24Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z"}]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","oldestRestorableTime":"2023-10-12T11:25:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1b0b8cd9-a889-4c9b-b889-7bd093310e25","creationTime":"2023-10-12T11:25:54Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:26:11Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"cli000003","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","oldestRestorableTime":"2023-10-12T11:24:16Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:26:13Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:26:12Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '292073' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:26:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e", - "restoreTimestampInUtc": "2023-10-12T11:25:34.433464Z"}, "createMode": "Restore"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - Content-Length: - - '337' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b27b41bf-de76-4229-abc1-bb9df0cfe20a?api-version=2023-09-15-preview&t=638327067806719369&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EE97D22teKnJKOwPAj5crVozb5kEN72_WaNCiOOm3MRMn9IHkIW6wVEDmZICMy5cRyaXhFoJdsMuTQ8ZjnzvqmsuafQ9jXpPxE78GRdWPUVyRKZMoLo6MuvrvLttQ-WQtdfqSNzubu095LD2-hx-Zfq_g34_EFUzC-4Sfv4eIsC8DNfYfCGnqgYa2KQWcjSpHhCmH2Epe4q-PZw5H5M79Z8moNJC1-fmdYvTYHtYi8K01FouM6PZSugkACOlKTe51huhE1YMftq8_JIFy0ftyHAas7rTPQzzhWcLJY5eIR0UJPVyPquiz43zkR9VXIGArgjVNX8DL3P4FvH7z1ypPg&h=qt6FdmKPiu7f2VGNK4mW1GqZKOQbS-vdBkwYVMtSYEM - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:19 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/b27b41bf-de76-4229-abc1-bb9df0cfe20a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b27b41bf-de76-4229-abc1-bb9df0cfe20a?api-version=2023-09-15-preview&t=638327067806719369&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EE97D22teKnJKOwPAj5crVozb5kEN72_WaNCiOOm3MRMn9IHkIW6wVEDmZICMy5cRyaXhFoJdsMuTQ8ZjnzvqmsuafQ9jXpPxE78GRdWPUVyRKZMoLo6MuvrvLttQ-WQtdfqSNzubu095LD2-hx-Zfq_g34_EFUzC-4Sfv4eIsC8DNfYfCGnqgYa2KQWcjSpHhCmH2Epe4q-PZw5H5M79Z8moNJC1-fmdYvTYHtYi8K01FouM6PZSugkACOlKTe51huhE1YMftq8_JIFy0ftyHAas7rTPQzzhWcLJY5eIR0UJPVyPquiz43zkR9VXIGArgjVNX8DL3P4FvH7z1ypPg&h=qt6FdmKPiu7f2VGNK4mW1GqZKOQbS-vdBkwYVMtSYEM - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b27b41bf-de76-4229-abc1-bb9df0cfe20a?api-version=2023-09-15-preview&t=638327067806719369&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EE97D22teKnJKOwPAj5crVozb5kEN72_WaNCiOOm3MRMn9IHkIW6wVEDmZICMy5cRyaXhFoJdsMuTQ8ZjnzvqmsuafQ9jXpPxE78GRdWPUVyRKZMoLo6MuvrvLttQ-WQtdfqSNzubu095LD2-hx-Zfq_g34_EFUzC-4Sfv4eIsC8DNfYfCGnqgYa2KQWcjSpHhCmH2Epe4q-PZw5H5M79Z8moNJC1-fmdYvTYHtYi8K01FouM6PZSugkACOlKTe51huhE1YMftq8_JIFy0ftyHAas7rTPQzzhWcLJY5eIR0UJPVyPquiz43zkR9VXIGArgjVNX8DL3P4FvH7z1ypPg&h=qt6FdmKPiu7f2VGNK4mW1GqZKOQbS-vdBkwYVMtSYEM - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:26:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b27b41bf-de76-4229-abc1-bb9df0cfe20a?api-version=2023-09-15-preview&t=638327067806719369&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EE97D22teKnJKOwPAj5crVozb5kEN72_WaNCiOOm3MRMn9IHkIW6wVEDmZICMy5cRyaXhFoJdsMuTQ8ZjnzvqmsuafQ9jXpPxE78GRdWPUVyRKZMoLo6MuvrvLttQ-WQtdfqSNzubu095LD2-hx-Zfq_g34_EFUzC-4Sfv4eIsC8DNfYfCGnqgYa2KQWcjSpHhCmH2Epe4q-PZw5H5M79Z8moNJC1-fmdYvTYHtYi8K01FouM6PZSugkACOlKTe51huhE1YMftq8_JIFy0ftyHAas7rTPQzzhWcLJY5eIR0UJPVyPquiz43zkR9VXIGArgjVNX8DL3P4FvH7z1ypPg&h=qt6FdmKPiu7f2VGNK4mW1GqZKOQbS-vdBkwYVMtSYEM - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b27b41bf-de76-4229-abc1-bb9df0cfe20a?api-version=2023-09-15-preview&t=638327067806719369&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EE97D22teKnJKOwPAj5crVozb5kEN72_WaNCiOOm3MRMn9IHkIW6wVEDmZICMy5cRyaXhFoJdsMuTQ8ZjnzvqmsuafQ9jXpPxE78GRdWPUVyRKZMoLo6MuvrvLttQ-WQtdfqSNzubu095LD2-hx-Zfq_g34_EFUzC-4Sfv4eIsC8DNfYfCGnqgYa2KQWcjSpHhCmH2Epe4q-PZw5H5M79Z8moNJC1-fmdYvTYHtYi8K01FouM6PZSugkACOlKTe51huhE1YMftq8_JIFy0ftyHAas7rTPQzzhWcLJY5eIR0UJPVyPquiz43zkR9VXIGArgjVNX8DL3P4FvH7z1ypPg&h=qt6FdmKPiu7f2VGNK4mW1GqZKOQbS-vdBkwYVMtSYEM - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b27b41bf-de76-4229-abc1-bb9df0cfe20a?api-version=2023-09-15-preview&t=638327067806719369&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=EE97D22teKnJKOwPAj5crVozb5kEN72_WaNCiOOm3MRMn9IHkIW6wVEDmZICMy5cRyaXhFoJdsMuTQ8ZjnzvqmsuafQ9jXpPxE78GRdWPUVyRKZMoLo6MuvrvLttQ-WQtdfqSNzubu095LD2-hx-Zfq_g34_EFUzC-4Sfv4eIsC8DNfYfCGnqgYa2KQWcjSpHhCmH2Epe4q-PZw5H5M79Z8moNJC1-fmdYvTYHtYi8K01FouM6PZSugkACOlKTe51huhE1YMftq8_JIFy0ftyHAas7rTPQzzhWcLJY5eIR0UJPVyPquiz43zkR9VXIGArgjVNX8DL3P4FvH7z1ypPg&h=qt6FdmKPiu7f2VGNK4mW1GqZKOQbS-vdBkwYVMtSYEM - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"V+MnAA==","_self":"dbs/V+MnAA==/","_etag":"\"00008503-0000-0700-0000-6527d8040000\"","_colls":"colls/","_users":"users/","_ts":1697110020}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '478' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"V+MnAA==","_self":"dbs/V+MnAA==/","_etag":"\"00008503-0000-0700-0000-6527d8040000\"","_colls":"colls/","_users":"users/","_ts":1697110020}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '478' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"V+MnAA==","_self":"dbs/V+MnAA==/","_etag":"\"00008503-0000-0700-0000-6527d8040000\"","_colls":"colls/","_users":"users/","_ts":1697110020}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '490' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_oldestRestorableTime.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_oldestRestorableTime.yaml deleted file mode 100644 index 402f9879683..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_oldestRestorableTime.yaml +++ /dev/null @@ -1,2031 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_oldestRestorableTime000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001","name":"cli_test_cosmosdb_sql_oldestRestorableTime000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_oldestRestorableTime","date":"2023-10-12T11:52:29Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '451' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:52:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous7Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '343' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:52:37.4055271Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:52:37.4055271Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:52:37.4055271Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:37.4055271Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:37.4055271Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2f5ee01f-6300-4356-be4c-d87ff747d1b2?api-version=2023-09-15-preview&t=638327083589183436&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Gds_AIb8vceC-k9CGkV3lvmYq_LBTkAbTw3_uvHSIfGH0sR1rHyzjDtiTXrRNTiouVvk116owwSFrgf7vnghjgQkwYCPozm9iMjReEdBJvfYZkv4Q_pDv0jR90gcFLGDiXEOf3KH9LHFbPeFPJqwWh4nCsZ8JLakYt8ocfR6slfjwfV2VRU2n0Mxq67115zIvtr3YYqZSp7HzYn5GUij-goUQiSWCEzeftyKb5PthXPrOyVx4lsi1mbTbAjKJKgVNtlQtPvVEyUMoqNBOLMlcIQdM99av2ueL4353p1Th6gqCzkwAbbkUeXtzW5xW849Yj4sid1zxmEHtbZWl57dfQ&h=C1kEOYrLGH3xIndsLeHiwV8TDiIGvKCVQSLyyyygp1o - cache-control: - - no-store, no-cache - content-length: - - '2526' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:38 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004/operationResults/2f5ee01f-6300-4356-be4c-d87ff747d1b2?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1191' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2f5ee01f-6300-4356-be4c-d87ff747d1b2?api-version=2023-09-15-preview&t=638327083589183436&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Gds_AIb8vceC-k9CGkV3lvmYq_LBTkAbTw3_uvHSIfGH0sR1rHyzjDtiTXrRNTiouVvk116owwSFrgf7vnghjgQkwYCPozm9iMjReEdBJvfYZkv4Q_pDv0jR90gcFLGDiXEOf3KH9LHFbPeFPJqwWh4nCsZ8JLakYt8ocfR6slfjwfV2VRU2n0Mxq67115zIvtr3YYqZSp7HzYn5GUij-goUQiSWCEzeftyKb5PthXPrOyVx4lsi1mbTbAjKJKgVNtlQtPvVEyUMoqNBOLMlcIQdM99av2ueL4353p1Th6gqCzkwAbbkUeXtzW5xW849Yj4sid1zxmEHtbZWl57dfQ&h=C1kEOYrLGH3xIndsLeHiwV8TDiIGvKCVQSLyyyygp1o - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2f5ee01f-6300-4356-be4c-d87ff747d1b2?api-version=2023-09-15-preview&t=638327083589183436&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Gds_AIb8vceC-k9CGkV3lvmYq_LBTkAbTw3_uvHSIfGH0sR1rHyzjDtiTXrRNTiouVvk116owwSFrgf7vnghjgQkwYCPozm9iMjReEdBJvfYZkv4Q_pDv0jR90gcFLGDiXEOf3KH9LHFbPeFPJqwWh4nCsZ8JLakYt8ocfR6slfjwfV2VRU2n0Mxq67115zIvtr3YYqZSp7HzYn5GUij-goUQiSWCEzeftyKb5PthXPrOyVx4lsi1mbTbAjKJKgVNtlQtPvVEyUMoqNBOLMlcIQdM99av2ueL4353p1Th6gqCzkwAbbkUeXtzW5xW849Yj4sid1zxmEHtbZWl57dfQ&h=C1kEOYrLGH3xIndsLeHiwV8TDiIGvKCVQSLyyyygp1o - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2f5ee01f-6300-4356-be4c-d87ff747d1b2?api-version=2023-09-15-preview&t=638327083589183436&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Gds_AIb8vceC-k9CGkV3lvmYq_LBTkAbTw3_uvHSIfGH0sR1rHyzjDtiTXrRNTiouVvk116owwSFrgf7vnghjgQkwYCPozm9iMjReEdBJvfYZkv4Q_pDv0jR90gcFLGDiXEOf3KH9LHFbPeFPJqwWh4nCsZ8JLakYt8ocfR6slfjwfV2VRU2n0Mxq67115zIvtr3YYqZSp7HzYn5GUij-goUQiSWCEzeftyKb5PthXPrOyVx4lsi1mbTbAjKJKgVNtlQtPvVEyUMoqNBOLMlcIQdM99av2ueL4353p1Th6gqCzkwAbbkUeXtzW5xW849Yj4sid1zxmEHtbZWl57dfQ&h=C1kEOYrLGH3xIndsLeHiwV8TDiIGvKCVQSLyyyygp1o - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2f5ee01f-6300-4356-be4c-d87ff747d1b2?api-version=2023-09-15-preview&t=638327083589183436&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Gds_AIb8vceC-k9CGkV3lvmYq_LBTkAbTw3_uvHSIfGH0sR1rHyzjDtiTXrRNTiouVvk116owwSFrgf7vnghjgQkwYCPozm9iMjReEdBJvfYZkv4Q_pDv0jR90gcFLGDiXEOf3KH9LHFbPeFPJqwWh4nCsZ8JLakYt8ocfR6slfjwfV2VRU2n0Mxq67115zIvtr3YYqZSp7HzYn5GUij-goUQiSWCEzeftyKb5PthXPrOyVx4lsi1mbTbAjKJKgVNtlQtPvVEyUMoqNBOLMlcIQdM99av2ueL4353p1Th6gqCzkwAbbkUeXtzW5xW849Yj4sid1zxmEHtbZWl57dfQ&h=C1kEOYrLGH3xIndsLeHiwV8TDiIGvKCVQSLyyyygp1o - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2f5ee01f-6300-4356-be4c-d87ff747d1b2?api-version=2023-09-15-preview&t=638327083589183436&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Gds_AIb8vceC-k9CGkV3lvmYq_LBTkAbTw3_uvHSIfGH0sR1rHyzjDtiTXrRNTiouVvk116owwSFrgf7vnghjgQkwYCPozm9iMjReEdBJvfYZkv4Q_pDv0jR90gcFLGDiXEOf3KH9LHFbPeFPJqwWh4nCsZ8JLakYt8ocfR6slfjwfV2VRU2n0Mxq67115zIvtr3YYqZSp7HzYn5GUij-goUQiSWCEzeftyKb5PthXPrOyVx4lsi1mbTbAjKJKgVNtlQtPvVEyUMoqNBOLMlcIQdM99av2ueL4353p1Th6gqCzkwAbbkUeXtzW5xW849Yj4sid1zxmEHtbZWl57dfQ&h=C1kEOYrLGH3xIndsLeHiwV8TDiIGvKCVQSLyyyygp1o - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:23.0659866Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2952' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:23.0659866Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2952' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:23.0659866Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2952' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_oldestRestorableTime000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001","name":"cli_test_cosmosdb_sql_oldestRestorableTime000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_oldestRestorableTime","date":"2023-10-12T11:52:29Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '451' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:54:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous7Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '343' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:23.0659866Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/241f73dc-e412-436b-8a68-6309a72239f7?api-version=2023-09-15-preview&t=638327084916445616&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=WoK7BmxiuJ_Nx54vC15lDYj2unARBlaRBp_VGWblXLpdun1ZDMNZNAPPWGxijLGojU_ZdDBgMduHhaQAMD88F1D0Wkbt1oubCkW-9MJUaEabaHRZzn_4Hk-WriE1d4y9X6bBUjd0aJ82LmzbNIjd2tPn9Nlg-eFJw18qEX9HVuWuq4Frdxh7JWUp2G5Zg2NNvPm9VxWPv9oupJ5SEYVUV1YV1c9gYXKbRnFj2ymQIC_tCPOMPFO9Kr1wysxsE1MH9CmlI1v2E1DO6LGtH58bo4UzpMPY48vggO6y_RR4V-zf8I-wLLNT24DuyJ_GpkU9oHIAAo1pQpBHKH0lfxFabA&h=iL7Nf4iNWnugYv3RFNsWHLGbwTd1xf9xTtNcciUXoOA - cache-control: - - no-store, no-cache - content-length: - - '2951' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:51 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004/operationResults/241f73dc-e412-436b-8a68-6309a72239f7?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/241f73dc-e412-436b-8a68-6309a72239f7?api-version=2023-09-15-preview&t=638327084916445616&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=WoK7BmxiuJ_Nx54vC15lDYj2unARBlaRBp_VGWblXLpdun1ZDMNZNAPPWGxijLGojU_ZdDBgMduHhaQAMD88F1D0Wkbt1oubCkW-9MJUaEabaHRZzn_4Hk-WriE1d4y9X6bBUjd0aJ82LmzbNIjd2tPn9Nlg-eFJw18qEX9HVuWuq4Frdxh7JWUp2G5Zg2NNvPm9VxWPv9oupJ5SEYVUV1YV1c9gYXKbRnFj2ymQIC_tCPOMPFO9Kr1wysxsE1MH9CmlI1v2E1DO6LGtH58bo4UzpMPY48vggO6y_RR4V-zf8I-wLLNT24DuyJ_GpkU9oHIAAo1pQpBHKH0lfxFabA&h=iL7Nf4iNWnugYv3RFNsWHLGbwTd1xf9xTtNcciUXoOA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/241f73dc-e412-436b-8a68-6309a72239f7?api-version=2023-09-15-preview&t=638327084916445616&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=WoK7BmxiuJ_Nx54vC15lDYj2unARBlaRBp_VGWblXLpdun1ZDMNZNAPPWGxijLGojU_ZdDBgMduHhaQAMD88F1D0Wkbt1oubCkW-9MJUaEabaHRZzn_4Hk-WriE1d4y9X6bBUjd0aJ82LmzbNIjd2tPn9Nlg-eFJw18qEX9HVuWuq4Frdxh7JWUp2G5Zg2NNvPm9VxWPv9oupJ5SEYVUV1YV1c9gYXKbRnFj2ymQIC_tCPOMPFO9Kr1wysxsE1MH9CmlI1v2E1DO6LGtH58bo4UzpMPY48vggO6y_RR4V-zf8I-wLLNT24DuyJ_GpkU9oHIAAo1pQpBHKH0lfxFabA&h=iL7Nf4iNWnugYv3RFNsWHLGbwTd1xf9xTtNcciUXoOA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:23.0659866+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2977' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:23.0659866+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2977' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_oldestRestorableTime000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-continuous7-000004","name":"cli-continuous7-000004","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:23.0659866+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-continuous7-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-continuous7-000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-continuous7-000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:23.0659866+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2977' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account show - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e3badb-0b4e-4cc0-88c7-811b1e41805d?api-version=2023-09-15-preview - response: - body: - string: '{"name":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","location":"East US - 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e3badb-0b4e-4cc0-88c7-811b1e41805d","properties":{"accountName":"cli-continuous7-000004","apiType":"Sql","creationTime":"2023-10-12T11:54:24+00:00","oldestRestorableTime":"2023-10-12T11:54:24+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"550016db-042d-4095-96cc-c36635c28d51","creationTime":"2023-10-12T11:54:24Z"}]}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '639' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:55:27Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:55:27Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:55:27Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:55:27Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","oldestRestorableTime":"2023-10-12T11:35:17Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","oldestRestorableTime":"2023-10-12T11:35:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:55:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:55:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","oldestRestorableTime":"2023-10-12T11:35:19+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}},{"name":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e3badb-0b4e-4cc0-88c7-811b1e41805d","properties":{"accountName":"cli-continuous7-000004","apiType":"Sql","creationTime":"2023-10-12T11:54:24+00:00","oldestRestorableTime":"2023-10-12T11:54:24+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"550016db-042d-4095-96cc-c36635c28d51","creationTime":"2023-10-12T11:54:24Z"}]}},{"name":"e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","properties":{"accountName":"cli3zn75ryyhtmt","apiType":"Table, - Sql","creationTime":"2023-10-12T11:54:57Z","oldestRestorableTime":"2023-10-12T11:54:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5b46be33-e8ff-4c76-b9b4-5b2a1d6cdcfb","creationTime":"2023-10-12T11:54:57Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z","deletionTime":"2023-10-12T11:30:47Z"}]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1b0b8cd9-a889-4c9b-b889-7bd093310e25","creationTime":"2023-10-12T11:25:54Z","deletionTime":"2023-10-12T11:30:56Z"}]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ed392ee-a218-46d0-82d0-8fadee0ba43b","creationTime":"2023-10-12T11:30:28Z","deletionTime":"2023-10-12T11:33:27Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"660c29e5-8d7d-496d-84c7-50e7c655fae1","creationTime":"2023-10-12T11:31:23Z","deletionTime":"2023-10-12T11:34:15Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z","deletionTime":"2023-10-12T11:35:08Z"}]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ba9a28f0-933f-4c5c-918a-f136dd6570f0","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","deletionTime":"2023-10-12T11:54:07Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[]}},{"name":"86847e11-666e-4b55-ac44-8804d38f49cb","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/86847e11-666e-4b55-ac44-8804d38f49cb","properties":{"accountName":"cliusrbtic7kqu7","apiType":"Table, - Sql","creationTime":"2023-10-12T11:52:18Z","deletionTime":"2023-10-12T11:54:07Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","deletionTime":"2023-10-12T11:50:37Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","deletionTime":"2023-10-12T11:53:51Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:55:28Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '299849' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:55:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_priority_based_execution.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_priority_based_execution.yaml deleted file mode 100644 index c88fa2ee087..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_priority_based_execution.yaml +++ /dev/null @@ -1,2798 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cosmosTest?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest","name":"cosmosTest","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DONT - CREATE NEW RESOURCES HERE":"TRUE"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 12:00:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "enablePriorityBasedExecution": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '282' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2176dc71-24d0-4c15-9534-93a8f236f707?api-version=2023-09-15-preview&t=638327088611575364&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=lN3ojKXTJqC6E7zk24IewiPvjeVVvaKf2zTx4JqF5-c4ny-I0BJ0F_8Phdbe625Cgpwl8lwcn9P_kFQJMC1AkWSjBCF5OwsET_eEfL4qHK67jiDh5CoSHUJIVF1vmW0NUmwVYu3AFcm-MGHGA7bsfxcyR49cUgq31qcNsrkvOAkZ1LNm_pAm3s4apgxKCQsdv2QYzFs2ToG5PrZ30sOE4nI1mfWPui5F_SPUS2ZITy5PcJRNSWivaSsIAwpa6oFz3wFsqrOcZ0u-zcu6TT5KuraAPASZ1VVjdf14JJ19XxKxR30V4KOZC_rboFhehQTZV5AAq3EH5CNHTvipg-FMjw&h=_ZT09ZOHkP2XJYg5E9xr5JjHRXLphiLZnsXGpCkGuzo - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:01 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test/operationResults/2176dc71-24d0-4c15-9534-93a8f236f707?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2176dc71-24d0-4c15-9534-93a8f236f707?api-version=2023-09-15-preview&t=638327088611575364&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=lN3ojKXTJqC6E7zk24IewiPvjeVVvaKf2zTx4JqF5-c4ny-I0BJ0F_8Phdbe625Cgpwl8lwcn9P_kFQJMC1AkWSjBCF5OwsET_eEfL4qHK67jiDh5CoSHUJIVF1vmW0NUmwVYu3AFcm-MGHGA7bsfxcyR49cUgq31qcNsrkvOAkZ1LNm_pAm3s4apgxKCQsdv2QYzFs2ToG5PrZ30sOE4nI1mfWPui5F_SPUS2ZITy5PcJRNSWivaSsIAwpa6oFz3wFsqrOcZ0u-zcu6TT5KuraAPASZ1VVjdf14JJ19XxKxR30V4KOZC_rboFhehQTZV5AAq3EH5CNHTvipg-FMjw&h=_ZT09ZOHkP2XJYg5E9xr5JjHRXLphiLZnsXGpCkGuzo - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2176dc71-24d0-4c15-9534-93a8f236f707?api-version=2023-09-15-preview&t=638327088611575364&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=lN3ojKXTJqC6E7zk24IewiPvjeVVvaKf2zTx4JqF5-c4ny-I0BJ0F_8Phdbe625Cgpwl8lwcn9P_kFQJMC1AkWSjBCF5OwsET_eEfL4qHK67jiDh5CoSHUJIVF1vmW0NUmwVYu3AFcm-MGHGA7bsfxcyR49cUgq31qcNsrkvOAkZ1LNm_pAm3s4apgxKCQsdv2QYzFs2ToG5PrZ30sOE4nI1mfWPui5F_SPUS2ZITy5PcJRNSWivaSsIAwpa6oFz3wFsqrOcZ0u-zcu6TT5KuraAPASZ1VVjdf14JJ19XxKxR30V4KOZC_rboFhehQTZV5AAq3EH5CNHTvipg-FMjw&h=_ZT09ZOHkP2XJYg5E9xr5JjHRXLphiLZnsXGpCkGuzo - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2176dc71-24d0-4c15-9534-93a8f236f707?api-version=2023-09-15-preview&t=638327088611575364&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=lN3ojKXTJqC6E7zk24IewiPvjeVVvaKf2zTx4JqF5-c4ny-I0BJ0F_8Phdbe625Cgpwl8lwcn9P_kFQJMC1AkWSjBCF5OwsET_eEfL4qHK67jiDh5CoSHUJIVF1vmW0NUmwVYu3AFcm-MGHGA7bsfxcyR49cUgq31qcNsrkvOAkZ1LNm_pAm3s4apgxKCQsdv2QYzFs2ToG5PrZ30sOE4nI1mfWPui5F_SPUS2ZITy5PcJRNSWivaSsIAwpa6oFz3wFsqrOcZ0u-zcu6TT5KuraAPASZ1VVjdf14JJ19XxKxR30V4KOZC_rboFhehQTZV5AAq3EH5CNHTvipg-FMjw&h=_ZT09ZOHkP2XJYg5E9xr5JjHRXLphiLZnsXGpCkGuzo - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "defaultPriorityLevel": "Low"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '68' - Content-Type: - - application/json - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8d52e18-1746-46fb-925b-1455fd416e50?api-version=2023-09-15-preview&t=638327089327920191&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=YcjZKjZ6IhFksD8bfWyLkftYRrqdZclwEukXB0jRwBBuHiAarS2WvnsUvmjPXqjWHQMk8HOvtaQ903H_xzt8Jn8B9Sz7ZXZ1hOz-5Y-rIr6_1f8C8dn03AewTJceMiAhLigicy5YFZv4TK9Bqccq0ZcoVCvLZyPXHNKtl1oUfD8k_9BUSRg-Q9jZ75DiLJBQ1oD6Uz4JFSgqnwlvIqrWicWlBTqXquwtcBYkT9matGHo5cYXHHvuPuElhdkjXX9jhXGjZENZhzSyNkJgDVWRB1AocF7M0bFNdQq0XJeOTgZILtXgS9Jq2_73qprFKBhSKiZJ9s-djDT1qgeEbPzWCQ&h=k_VS3k_49mhWeNqEv_4RPtJUEf48TtWiwfJrLdLbQWY - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:12 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test/operationResults/f8d52e18-1746-46fb-925b-1455fd416e50?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8d52e18-1746-46fb-925b-1455fd416e50?api-version=2023-09-15-preview&t=638327089327920191&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=YcjZKjZ6IhFksD8bfWyLkftYRrqdZclwEukXB0jRwBBuHiAarS2WvnsUvmjPXqjWHQMk8HOvtaQ903H_xzt8Jn8B9Sz7ZXZ1hOz-5Y-rIr6_1f8C8dn03AewTJceMiAhLigicy5YFZv4TK9Bqccq0ZcoVCvLZyPXHNKtl1oUfD8k_9BUSRg-Q9jZ75DiLJBQ1oD6Uz4JFSgqnwlvIqrWicWlBTqXquwtcBYkT9matGHo5cYXHHvuPuElhdkjXX9jhXGjZENZhzSyNkJgDVWRB1AocF7M0bFNdQq0XJeOTgZILtXgS9Jq2_73qprFKBhSKiZJ9s-djDT1qgeEbPzWCQ&h=k_VS3k_49mhWeNqEv_4RPtJUEf48TtWiwfJrLdLbQWY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8d52e18-1746-46fb-925b-1455fd416e50?api-version=2023-09-15-preview&t=638327089327920191&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=YcjZKjZ6IhFksD8bfWyLkftYRrqdZclwEukXB0jRwBBuHiAarS2WvnsUvmjPXqjWHQMk8HOvtaQ903H_xzt8Jn8B9Sz7ZXZ1hOz-5Y-rIr6_1f8C8dn03AewTJceMiAhLigicy5YFZv4TK9Bqccq0ZcoVCvLZyPXHNKtl1oUfD8k_9BUSRg-Q9jZ75DiLJBQ1oD6Uz4JFSgqnwlvIqrWicWlBTqXquwtcBYkT9matGHo5cYXHHvuPuElhdkjXX9jhXGjZENZhzSyNkJgDVWRB1AocF7M0bFNdQq0XJeOTgZILtXgS9Jq2_73qprFKBhSKiZJ9s-djDT1qgeEbPzWCQ&h=k_VS3k_49mhWeNqEv_4RPtJUEf48TtWiwfJrLdLbQWY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f8d52e18-1746-46fb-925b-1455fd416e50?api-version=2023-09-15-preview&t=638327089327920191&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=YcjZKjZ6IhFksD8bfWyLkftYRrqdZclwEukXB0jRwBBuHiAarS2WvnsUvmjPXqjWHQMk8HOvtaQ903H_xzt8Jn8B9Sz7ZXZ1hOz-5Y-rIr6_1f8C8dn03AewTJceMiAhLigicy5YFZv4TK9Bqccq0ZcoVCvLZyPXHNKtl1oUfD8k_9BUSRg-Q9jZ75DiLJBQ1oD6Uz4JFSgqnwlvIqrWicWlBTqXquwtcBYkT9matGHo5cYXHHvuPuElhdkjXX9jhXGjZENZhzSyNkJgDVWRB1AocF7M0bFNdQq0XJeOTgZILtXgS9Jq2_73qprFKBhSKiZJ9s-djDT1qgeEbPzWCQ&h=k_VS3k_49mhWeNqEv_4RPtJUEf48TtWiwfJrLdLbQWY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "enablePriorityBasedExecution": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '76' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/09d79215-4501-453d-bdac-3ed5abf17116?api-version=2023-09-15-preview&t=638327090045413090&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cPYJ-n8ywzyzbdPK3koW3GqN54e2v1mQmDZBxANPSLgrcwxQwNDerIvoTFxQvlQMgNyLLfy7V0dZnhXUfnrQPe2cAP6POJg02wJyY7hjm6BO1lKVcGK5mkeGA9cLTzZMvpxl5VSG5RusGEDLpOCqTfT-KEQviY1YuIA9iQaAV5voQOflC5hzeqW4ecSb4Jg3AC7dDr1O_aLJxX6rMS3pJJvq9cEqM9w5ECTAB-URzIh2mKHTQyuNjWKZPsc-9QLZYtFUxWD-bofTnG7Xqd67JmMzNsx9SiChWc7BWCF_b3kekGzWqjKH7OlJbczNCEq3HgyoWY-KNqcMm0XIlcZCfQ&h=tkT6yabrPPn7OFovuiwuCnA18RFt76cPbXUGhMnIyAU - cache-control: - - no-store, no-cache - content-length: - - '3036' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:23 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test/operationResults/09d79215-4501-453d-bdac-3ed5abf17116?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/09d79215-4501-453d-bdac-3ed5abf17116?api-version=2023-09-15-preview&t=638327090045413090&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cPYJ-n8ywzyzbdPK3koW3GqN54e2v1mQmDZBxANPSLgrcwxQwNDerIvoTFxQvlQMgNyLLfy7V0dZnhXUfnrQPe2cAP6POJg02wJyY7hjm6BO1lKVcGK5mkeGA9cLTzZMvpxl5VSG5RusGEDLpOCqTfT-KEQviY1YuIA9iQaAV5voQOflC5hzeqW4ecSb4Jg3AC7dDr1O_aLJxX6rMS3pJJvq9cEqM9w5ECTAB-URzIh2mKHTQyuNjWKZPsc-9QLZYtFUxWD-bofTnG7Xqd67JmMzNsx9SiChWc7BWCF_b3kekGzWqjKH7OlJbczNCEq3HgyoWY-KNqcMm0XIlcZCfQ&h=tkT6yabrPPn7OFovuiwuCnA18RFt76cPbXUGhMnIyAU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/09d79215-4501-453d-bdac-3ed5abf17116?api-version=2023-09-15-preview&t=638327090045413090&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cPYJ-n8ywzyzbdPK3koW3GqN54e2v1mQmDZBxANPSLgrcwxQwNDerIvoTFxQvlQMgNyLLfy7V0dZnhXUfnrQPe2cAP6POJg02wJyY7hjm6BO1lKVcGK5mkeGA9cLTzZMvpxl5VSG5RusGEDLpOCqTfT-KEQviY1YuIA9iQaAV5voQOflC5hzeqW4ecSb4Jg3AC7dDr1O_aLJxX6rMS3pJJvq9cEqM9w5ECTAB-URzIh2mKHTQyuNjWKZPsc-9QLZYtFUxWD-bofTnG7Xqd67JmMzNsx9SiChWc7BWCF_b3kekGzWqjKH7OlJbczNCEq3HgyoWY-KNqcMm0XIlcZCfQ&h=tkT6yabrPPn7OFovuiwuCnA18RFt76cPbXUGhMnIyAU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/09d79215-4501-453d-bdac-3ed5abf17116?api-version=2023-09-15-preview&t=638327090045413090&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=cPYJ-n8ywzyzbdPK3koW3GqN54e2v1mQmDZBxANPSLgrcwxQwNDerIvoTFxQvlQMgNyLLfy7V0dZnhXUfnrQPe2cAP6POJg02wJyY7hjm6BO1lKVcGK5mkeGA9cLTzZMvpxl5VSG5RusGEDLpOCqTfT-KEQviY1YuIA9iQaAV5voQOflC5hzeqW4ecSb4Jg3AC7dDr1O_aLJxX6rMS3pJJvq9cEqM9w5ECTAB-URzIh2mKHTQyuNjWKZPsc-9QLZYtFUxWD-bofTnG7Xqd67JmMzNsx9SiChWc7BWCF_b3kekGzWqjKH7OlJbczNCEq3HgyoWY-KNqcMm0XIlcZCfQ&h=tkT6yabrPPn7OFovuiwuCnA18RFt76cPbXUGhMnIyAU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "enablePriorityBasedExecution": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '75' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/13a96a37-3572-4142-8fd2-046b0de11336?api-version=2023-09-15-preview&t=638327090766240929&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AP59-dyrxd0NP5lKQ3RuYp7eXapgRDdocK_CAJ3lgxP8jkw3IbyXoy47RK-fd3dCvowpulEREgqXBKvX0ly3V6we1EX4KCYfyMJ2a2b6BiW-55Qd4RUFtlJJom-TEFlADvXuOFEioN2k37A5zyMW9QpXqcMNJ1gMvzl1z5hrggaERANYDoldj5JkWICPNNHfCMU-SeLIsO7bBM9fgHHZAuRPUObXslxyhrXJH4StlL2bwcw6gvV60Z_quTW4qOETPHj-j0c4YF_8rSSNeBprgIpvxB1j5MtV7KQVA1u3lhNbjsCBG9KCjEjFVNi1YGM3qHYDEd2yKtVBJovr8GxknQ&h=0xF6vspMis5Nq2-oFFS9-3rCZxtPPSQKN4-UJHft--Y - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:36 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test/operationResults/13a96a37-3572-4142-8fd2-046b0de11336?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/13a96a37-3572-4142-8fd2-046b0de11336?api-version=2023-09-15-preview&t=638327090766240929&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AP59-dyrxd0NP5lKQ3RuYp7eXapgRDdocK_CAJ3lgxP8jkw3IbyXoy47RK-fd3dCvowpulEREgqXBKvX0ly3V6we1EX4KCYfyMJ2a2b6BiW-55Qd4RUFtlJJom-TEFlADvXuOFEioN2k37A5zyMW9QpXqcMNJ1gMvzl1z5hrggaERANYDoldj5JkWICPNNHfCMU-SeLIsO7bBM9fgHHZAuRPUObXslxyhrXJH4StlL2bwcw6gvV60Z_quTW4qOETPHj-j0c4YF_8rSSNeBprgIpvxB1j5MtV7KQVA1u3lhNbjsCBG9KCjEjFVNi1YGM3qHYDEd2yKtVBJovr8GxknQ&h=0xF6vspMis5Nq2-oFFS9-3rCZxtPPSQKN4-UJHft--Y - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/13a96a37-3572-4142-8fd2-046b0de11336?api-version=2023-09-15-preview&t=638327090766240929&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AP59-dyrxd0NP5lKQ3RuYp7eXapgRDdocK_CAJ3lgxP8jkw3IbyXoy47RK-fd3dCvowpulEREgqXBKvX0ly3V6we1EX4KCYfyMJ2a2b6BiW-55Qd4RUFtlJJom-TEFlADvXuOFEioN2k37A5zyMW9QpXqcMNJ1gMvzl1z5hrggaERANYDoldj5JkWICPNNHfCMU-SeLIsO7bBM9fgHHZAuRPUObXslxyhrXJH4StlL2bwcw6gvV60Z_quTW4qOETPHj-j0c4YF_8rSSNeBprgIpvxB1j5MtV7KQVA1u3lhNbjsCBG9KCjEjFVNi1YGM3qHYDEd2yKtVBJovr8GxknQ&h=0xF6vspMis5Nq2-oFFS9-3rCZxtPPSQKN4-UJHft--Y - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/13a96a37-3572-4142-8fd2-046b0de11336?api-version=2023-09-15-preview&t=638327090766240929&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=AP59-dyrxd0NP5lKQ3RuYp7eXapgRDdocK_CAJ3lgxP8jkw3IbyXoy47RK-fd3dCvowpulEREgqXBKvX0ly3V6we1EX4KCYfyMJ2a2b6BiW-55Qd4RUFtlJJom-TEFlADvXuOFEioN2k37A5zyMW9QpXqcMNJ1gMvzl1z5hrggaERANYDoldj5JkWICPNNHfCMU-SeLIsO7bBM9fgHHZAuRPUObXslxyhrXJH4StlL2bwcw6gvV60Z_quTW4qOETPHj-j0c4YF_8rSSNeBprgIpvxB1j5MtV7KQVA1u3lhNbjsCBG9KCjEjFVNi1YGM3qHYDEd2yKtVBJovr8GxknQ&h=0xF6vspMis5Nq2-oFFS9-3rCZxtPPSQKN4-UJHft--Y - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-priority-based-execution - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3037' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"apiProperties": {}, "defaultPriorityLevel": "High"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '69' - Content-Type: - - application/json - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"Low","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ea26f4f6-0bbe-44a0-927e-b272e418b0a1?api-version=2023-09-15-preview&t=638327091472016793&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Yk54Wl-xFudolmoza--7OP9XfJoWQZU4snZrE1wLdSmZWw4sMd_3FfPt0JgjWgjFyRw76pnNznRVrf-0z7QM2d1gkDFg_AQLzokf6VWHtVjI8d2KKcikOKC6uPVjC1IIkrAcUSBkbp7RcmUxP75WYX71BG9SG1HHMD4gP0tr8o89j7nk_2EOf4une7Kw_lRuKe-LrShHLFiAK_GLHgg3zGOjV1Jj-XxtkfIYZaywz7rIH3kM-897ItU3RBDyFf79XJwS8sxhrF1x7p89vDNgL6e1PoEN4IIbV09OBLvVFx6K2b471ybtoJYoFABjOCjrllFXz2jnP8jTce-QTnXIsw&h=iXfR1vRlJpln7Xp0JqwadeQp8fdEsP11oMnXoti1Dvs - cache-control: - - no-store, no-cache - content-length: - - '3036' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:46 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test/operationResults/ea26f4f6-0bbe-44a0-927e-b272e418b0a1?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ea26f4f6-0bbe-44a0-927e-b272e418b0a1?api-version=2023-09-15-preview&t=638327091472016793&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Yk54Wl-xFudolmoza--7OP9XfJoWQZU4snZrE1wLdSmZWw4sMd_3FfPt0JgjWgjFyRw76pnNznRVrf-0z7QM2d1gkDFg_AQLzokf6VWHtVjI8d2KKcikOKC6uPVjC1IIkrAcUSBkbp7RcmUxP75WYX71BG9SG1HHMD4gP0tr8o89j7nk_2EOf4une7Kw_lRuKe-LrShHLFiAK_GLHgg3zGOjV1Jj-XxtkfIYZaywz7rIH3kM-897ItU3RBDyFf79XJwS8sxhrF1x7p89vDNgL6e1PoEN4IIbV09OBLvVFx6K2b471ybtoJYoFABjOCjrllFXz2jnP8jTce-QTnXIsw&h=iXfR1vRlJpln7Xp0JqwadeQp8fdEsP11oMnXoti1Dvs - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ea26f4f6-0bbe-44a0-927e-b272e418b0a1?api-version=2023-09-15-preview&t=638327091472016793&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Yk54Wl-xFudolmoza--7OP9XfJoWQZU4snZrE1wLdSmZWw4sMd_3FfPt0JgjWgjFyRw76pnNznRVrf-0z7QM2d1gkDFg_AQLzokf6VWHtVjI8d2KKcikOKC6uPVjC1IIkrAcUSBkbp7RcmUxP75WYX71BG9SG1HHMD4gP0tr8o89j7nk_2EOf4une7Kw_lRuKe-LrShHLFiAK_GLHgg3zGOjV1Jj-XxtkfIYZaywz7rIH3kM-897ItU3RBDyFf79XJwS8sxhrF1x7p89vDNgL6e1PoEN4IIbV09OBLvVFx6K2b471ybtoJYoFABjOCjrllFXz2jnP8jTce-QTnXIsw&h=iXfR1vRlJpln7Xp0JqwadeQp8fdEsP11oMnXoti1Dvs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ea26f4f6-0bbe-44a0-927e-b272e418b0a1?api-version=2023-09-15-preview&t=638327091472016793&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=Yk54Wl-xFudolmoza--7OP9XfJoWQZU4snZrE1wLdSmZWw4sMd_3FfPt0JgjWgjFyRw76pnNznRVrf-0z7QM2d1gkDFg_AQLzokf6VWHtVjI8d2KKcikOKC6uPVjC1IIkrAcUSBkbp7RcmUxP75WYX71BG9SG1HHMD4gP0tr8o89j7nk_2EOf4une7Kw_lRuKe-LrShHLFiAK_GLHgg3zGOjV1Jj-XxtkfIYZaywz7rIH3kM-897ItU3RBDyFf79XJwS8sxhrF1x7p89vDNgL6e1PoEN4IIbV09OBLvVFx6K2b471ybtoJYoFABjOCjrllFXz2jnP8jTce-QTnXIsw&h=iXfR1vRlJpln7Xp0JqwadeQp8fdEsP11oMnXoti1Dvs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-priority-level - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test","name":"priority-based-execution-test","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:48:55.463862+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","sqlEndpoint":"https://priority-based-execution-test.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5ae2b895-8e1a-4710-a153-723f8bd2ecb1","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":true,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"priority-based-execution-test-westus","locationName":"West - US","documentEndpoint":"https://priority-based-execution-test-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"priority-based-execution-test-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:48:55.463862+00:00"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3038' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/priority-based-execution-test?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:53 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationResults/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136465614&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=DhLSdWKsRvO65nKYcoQtE30SKsl0FlKGIQPC_lVJfNeR5D55xo_WaooWIcx9WuVywko2rW6r7jjHu3gILBmoGX0Q-SyJhMMZowyN0fzr6-3O648npblyZreac53TuUH0x0VIOnVQbuNnW2xKTvqfV5ntv0Wl3bLZFFycW9tFiMBykWxeX_a6Bj_9mAE3etfun9gRsfE6tkDpkZzEcQ7GpN13ABbDUX6zRR1q67ydgIN3lf395O4Ni7FZ3OEuMG1I0aweAR2PMxLQ0U1IxX21THiiFh7IUfpPoldWuKUfuYH8kxNbURiBIV2o8YgkQVUqA1DuNYViXAuYvO1qIVND-A&h=syNWH-cnnOpFNe3TSvXU4CxaW_oza6LZZ1Phk6XC55c - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:08:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:08:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:09:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:09:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:10:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:10:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:11:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:11:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:12:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:12:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:13:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:13:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb delete - Connection: - - keep-alive - ParameterSetName: - - -n -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/abbc1071-be36-4d24-939a-48da9ed21ebb?api-version=2023-09-15&t=638327092136309362&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=nZUmYQA1VwtK6kZgQrRINUCg_OSJUkbcJykmrf1xwk8nKyJn4D5SWBLjjqtQ13fR12OrFf0BnJZDwjroNO9Wcqmpjj7PF7Ow1rAm78yKiZc_7evlf6aKx2Tp1fa_YE-STA0pxcJLF_n0SKmluFasHcaZa4c-jRJShES0OXKxE97TQ7yXYw6LkP4kZ_K3Uq9Uy47WYoXNNucqV7ci_fNAsm_t2jdpDL2U6hq1M1SkJTlp7mR_vQ4JRcE5dbVqFqmAsSMTV36-VAt4inUDSG6D9h1X-s-yy9xhn-0do-XASDDUFVCGvMFhLX5lihjf6mYgyk0Wkg2YzWBiD2X_YyQeBg&h=5C20yuGRQB1fJTmMMoA6s1PtCNkUeQQsWJhR50OhOwE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:14:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_prov_container_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_prov_container_restore.yaml deleted file mode 100644 index accb38e8374..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_prov_container_restore.yaml +++ /dev/null @@ -1,7621 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001","name":"cli_test_cosmosdb_sql_shared_database_prov_container_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_shared_database_prov_container_restore","date":"2023-10-12T10:52:14Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:52:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", - "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": - "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '342' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:52:27.0472363Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:52:27.0472363Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:52:27.0472363Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.0472363Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:52:27.0472363Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/193622a2-2ae1-47c1-8b24-03474f4d8e3b?api-version=2023-09-15-preview&t=638327047487751075&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L770b5zEN1nnlyKzGkBQ-gFUCN9ebFp22EDM4M4yUfcCtjkA4QcAqnZGXKY6RXfj-oxC0EYNEou82kQ7n3d_kzRPIFQn5sFr8m4Iv8UN4Ze7PpUYwYT3jhfnFnUD5-8sZAf8QxgT5-R616KxiAgZ9kInrGh6zeQsOE0NI5YHadJ2i0rGp1iG70IPXFS-rpGMYqxpWf-PRpGHU5fI1NEA1WAme298oBh92nnA788WxukP29uQWUSyJdQrfKqaYSjmWCIluuB1Y38h1y7OJTgz8RQIDpxZX3QWWBsCF11ofbTno0Pr3E7Cuz4PQPwGStB55H1BXZn_LmoWhrpUSfAZDg&h=NklWtVUF7C9qmW8T9mEwrYpyFt9zI8dj0_W4LRmet6U - cache-control: - - no-store, no-cache - content-length: - - '2453' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:28 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/193622a2-2ae1-47c1-8b24-03474f4d8e3b?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/193622a2-2ae1-47c1-8b24-03474f4d8e3b?api-version=2023-09-15-preview&t=638327047487751075&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L770b5zEN1nnlyKzGkBQ-gFUCN9ebFp22EDM4M4yUfcCtjkA4QcAqnZGXKY6RXfj-oxC0EYNEou82kQ7n3d_kzRPIFQn5sFr8m4Iv8UN4Ze7PpUYwYT3jhfnFnUD5-8sZAf8QxgT5-R616KxiAgZ9kInrGh6zeQsOE0NI5YHadJ2i0rGp1iG70IPXFS-rpGMYqxpWf-PRpGHU5fI1NEA1WAme298oBh92nnA788WxukP29uQWUSyJdQrfKqaYSjmWCIluuB1Y38h1y7OJTgz8RQIDpxZX3QWWBsCF11ofbTno0Pr3E7Cuz4PQPwGStB55H1BXZn_LmoWhrpUSfAZDg&h=NklWtVUF7C9qmW8T9mEwrYpyFt9zI8dj0_W4LRmet6U - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/193622a2-2ae1-47c1-8b24-03474f4d8e3b?api-version=2023-09-15-preview&t=638327047487751075&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L770b5zEN1nnlyKzGkBQ-gFUCN9ebFp22EDM4M4yUfcCtjkA4QcAqnZGXKY6RXfj-oxC0EYNEou82kQ7n3d_kzRPIFQn5sFr8m4Iv8UN4Ze7PpUYwYT3jhfnFnUD5-8sZAf8QxgT5-R616KxiAgZ9kInrGh6zeQsOE0NI5YHadJ2i0rGp1iG70IPXFS-rpGMYqxpWf-PRpGHU5fI1NEA1WAme298oBh92nnA788WxukP29uQWUSyJdQrfKqaYSjmWCIluuB1Y38h1y7OJTgz8RQIDpxZX3QWWBsCF11ofbTno0Pr3E7Cuz4PQPwGStB55H1BXZn_LmoWhrpUSfAZDg&h=NklWtVUF7C9qmW8T9mEwrYpyFt9zI8dj0_W4LRmet6U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:52:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/193622a2-2ae1-47c1-8b24-03474f4d8e3b?api-version=2023-09-15-preview&t=638327047487751075&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L770b5zEN1nnlyKzGkBQ-gFUCN9ebFp22EDM4M4yUfcCtjkA4QcAqnZGXKY6RXfj-oxC0EYNEou82kQ7n3d_kzRPIFQn5sFr8m4Iv8UN4Ze7PpUYwYT3jhfnFnUD5-8sZAf8QxgT5-R616KxiAgZ9kInrGh6zeQsOE0NI5YHadJ2i0rGp1iG70IPXFS-rpGMYqxpWf-PRpGHU5fI1NEA1WAme298oBh92nnA788WxukP29uQWUSyJdQrfKqaYSjmWCIluuB1Y38h1y7OJTgz8RQIDpxZX3QWWBsCF11ofbTno0Pr3E7Cuz4PQPwGStB55H1BXZn_LmoWhrpUSfAZDg&h=NklWtVUF7C9qmW8T9mEwrYpyFt9zI8dj0_W4LRmet6U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/193622a2-2ae1-47c1-8b24-03474f4d8e3b?api-version=2023-09-15-preview&t=638327047487751075&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L770b5zEN1nnlyKzGkBQ-gFUCN9ebFp22EDM4M4yUfcCtjkA4QcAqnZGXKY6RXfj-oxC0EYNEou82kQ7n3d_kzRPIFQn5sFr8m4Iv8UN4Ze7PpUYwYT3jhfnFnUD5-8sZAf8QxgT5-R616KxiAgZ9kInrGh6zeQsOE0NI5YHadJ2i0rGp1iG70IPXFS-rpGMYqxpWf-PRpGHU5fI1NEA1WAme298oBh92nnA788WxukP29uQWUSyJdQrfKqaYSjmWCIluuB1Y38h1y7OJTgz8RQIDpxZX3QWWBsCF11ofbTno0Pr3E7Cuz4PQPwGStB55H1BXZn_LmoWhrpUSfAZDg&h=NklWtVUF7C9qmW8T9mEwrYpyFt9zI8dj0_W4LRmet6U - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:53:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/193622a2-2ae1-47c1-8b24-03474f4d8e3b?api-version=2023-09-15-preview&t=638327047487751075&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L770b5zEN1nnlyKzGkBQ-gFUCN9ebFp22EDM4M4yUfcCtjkA4QcAqnZGXKY6RXfj-oxC0EYNEou82kQ7n3d_kzRPIFQn5sFr8m4Iv8UN4Ze7PpUYwYT3jhfnFnUD5-8sZAf8QxgT5-R616KxiAgZ9kInrGh6zeQsOE0NI5YHadJ2i0rGp1iG70IPXFS-rpGMYqxpWf-PRpGHU5fI1NEA1WAme298oBh92nnA788WxukP29uQWUSyJdQrfKqaYSjmWCIluuB1Y38h1y7OJTgz8RQIDpxZX3QWWBsCF11ofbTno0Pr3E7Cuz4PQPwGStB55H1BXZn_LmoWhrpUSfAZDg&h=NklWtVUF7C9qmW8T9mEwrYpyFt9zI8dj0_W4LRmet6U - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:23.9957898Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:23.9957898Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:23.9957898Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:23.9957898Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:23.9957898Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2811' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:54:23.9957898Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West - US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:54:23.9957898Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:54:23.9957898Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:23.9957898Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:54:23.9957898Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2811' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {"throughput": - 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1a307465-bd13-4946-9891-79e73b1c3cae?api-version=2023-09-15&t=638327048750841269&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=p0a4rHZUCcj_fQu2IGToCPe3_nMzv6TEK4-ElHV-eQcvOjhIdLWX_0JcHxfNmPqJDlZ551cHSzxha4q-vvSjw4zcAabJdONBAXyTEEbf98LbRXLOF6D_DCkfgFWxxyPvLLxZh0z3QGsjk38IPonF_hh6x9L2nyqqzHedNv0Akw0h02vk-xo-QloKE6u0H5pSsnnDiZAxNBQYQ29YcSQ-tsPstXE-mTk5855IZTIDf9A18ErygLO3V9JsXd8n2dGZTrQfM6Tx74fpJbjBviNhWvk_X1dzT-A_IkJJaSkWI-ZkBy1J7UquQLJb6y9h1HJoR7JlmIXaOyAj8HWrGJuJ8w&h=eTgjJdcjzSFVCtcxCXQdAXDKAu7BvwAaZMNwzWVp3pQ - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:34 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/1a307465-bd13-4946-9891-79e73b1c3cae?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1a307465-bd13-4946-9891-79e73b1c3cae?api-version=2023-09-15&t=638327048750841269&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=p0a4rHZUCcj_fQu2IGToCPe3_nMzv6TEK4-ElHV-eQcvOjhIdLWX_0JcHxfNmPqJDlZ551cHSzxha4q-vvSjw4zcAabJdONBAXyTEEbf98LbRXLOF6D_DCkfgFWxxyPvLLxZh0z3QGsjk38IPonF_hh6x9L2nyqqzHedNv0Akw0h02vk-xo-QloKE6u0H5pSsnnDiZAxNBQYQ29YcSQ-tsPstXE-mTk5855IZTIDf9A18ErygLO3V9JsXd8n2dGZTrQfM6Tx74fpJbjBviNhWvk_X1dzT-A_IkJJaSkWI-ZkBy1J7UquQLJb6y9h1HJoR7JlmIXaOyAj8HWrGJuJ8w&h=eTgjJdcjzSFVCtcxCXQdAXDKAu7BvwAaZMNwzWVp3pQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:54:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1a307465-bd13-4946-9891-79e73b1c3cae?api-version=2023-09-15&t=638327048750841269&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=p0a4rHZUCcj_fQu2IGToCPe3_nMzv6TEK4-ElHV-eQcvOjhIdLWX_0JcHxfNmPqJDlZ551cHSzxha4q-vvSjw4zcAabJdONBAXyTEEbf98LbRXLOF6D_DCkfgFWxxyPvLLxZh0z3QGsjk38IPonF_hh6x9L2nyqqzHedNv0Akw0h02vk-xo-QloKE6u0H5pSsnnDiZAxNBQYQ29YcSQ-tsPstXE-mTk5855IZTIDf9A18ErygLO3V9JsXd8n2dGZTrQfM6Tx74fpJbjBviNhWvk_X1dzT-A_IkJJaSkWI-ZkBy1J7UquQLJb6y9h1HJoR7JlmIXaOyAj8HWrGJuJ8w&h=eTgjJdcjzSFVCtcxCXQdAXDKAu7BvwAaZMNwzWVp3pQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Fdd7AA==","_self":"dbs/Fdd7AA==/","_etag":"\"00007fc8-0000-0700-0000-6527d0740000\"","_colls":"colls/","_users":"users/","_ts":1697108084}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '493' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - ce19154b-68ed-11ee-b693-9c7bef43f49d, Request URI: /apps/a4486783-0b00-4778-b422-99ce68be0b8b/services/2fddca72-e44b-4d94-b86c-31e54d7e6575/partitions/1a5c474c-49a9-4a62-b077-bf1c7bac6a92/replicas/133261111133536340s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T10:55:08.6252116Z, RequestEndTime: - 2023-10-12T10:55:08.6281355Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T10:54:12.3686526Z\\\",\\\"cpu\\\":1.859,\\\"memory\\\":413829536.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0504,\\\"availableThreads\\\":32764,\\\"minThreads\\\":40,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":714},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:22.3787985Z\\\",\\\"cpu\\\":0.772,\\\"memory\\\":413820192.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0594,\\\"availableThreads\\\":32764,\\\"minThreads\\\":40,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":711},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:32.3888504Z\\\",\\\"cpu\\\":1.183,\\\"memory\\\":413785712.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0483,\\\"availableThreads\\\":32764,\\\"minThreads\\\":40,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":712},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:42.3990077Z\\\",\\\"cpu\\\":0.867,\\\"memory\\\":413778528.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0595,\\\"availableThreads\\\":32764,\\\"minThreads\\\":40,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":712},{\\\"dateUtc\\\":\\\"2023-10-12T10:54:52.4091479Z\\\",\\\"cpu\\\":0.679,\\\"memory\\\":413784520.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0819,\\\"availableThreads\\\":32764,\\\"minThreads\\\":40,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":710},{\\\"dateUtc\\\":\\\"2023-10-12T10:55:02.4192347Z\\\",\\\"cpu\\\":2.040,\\\"memory\\\":413771688.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0765,\\\"availableThreads\\\":32764,\\\"minThreads\\\":40,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":714}]}\\r\\nRequestStart: - 2023-10-12T10:55:08.6255048Z; ResponseTime: 2023-10-12T10:55:08.6281252Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/a4486783-0b00-4778-b422-99ce68be0b8b/services/2fddca72-e44b-4d94-b86c-31e54d7e6575/partitions/1a5c474c-49a9-4a62-b077-bf1c7bac6a92/replicas/133261111133536340s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.285, ActivityId: - ce19154b-68ed-11ee-b693-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 10:55:08 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 10:55:08 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:55:08 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:55:08 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:08.6253715Z\\\", - \\\"durationInMs\\\": 0.0118},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:08.6253833Z\\\", \\\"durationInMs\\\": - 0.0019},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:08.6253852Z\\\", - \\\"durationInMs\\\": 0.0704},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:08.6254556Z\\\", \\\"durationInMs\\\": 1.7405},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:08.6271961Z\\\", - \\\"durationInMs\\\": 0.157},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:08.6273531Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:55:08.4960677Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:55:08.4961002Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:55:08.5452853Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T10:55:08.6255903Z; - ResponseTime: 2023-10-12T10:55:08.6281355Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.0.23:11300/apps/a4486783-0b00-4778-b422-99ce68be0b8b/services/2fddca72-e44b-4d94-b86c-31e54d7e6575/partitions/1a5c474c-49a9-4a62-b077-bf1c7bac6a92/replicas/133244781038797794s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.437, ActivityId: - ce19154b-68ed-11ee-b693-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 10:55:08 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 10:55:08 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 10:55:08 AM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 10:55:08 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:08.6255069Z\\\", - \\\"durationInMs\\\": 0.0058},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:08.6255127Z\\\", \\\"durationInMs\\\": - 0.0017},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:08.6255144Z\\\", - \\\"durationInMs\\\": 0.0485},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:08.6255629Z\\\", \\\"durationInMs\\\": 2.0695},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T10:55:08.6276324Z\\\", - \\\"durationInMs\\\": 0.1204},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T10:55:08.6277528Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T10:55:08.3499350Z\\\",\\\"lastSend\\\":\\\"2023-10-12T10:55:08.3499842Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T10:55:08.4027529Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7095' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], - "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": ["/path/to/key1"]}, - {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": {"mode": "lastWriterWins", - "conflictResolutionPath": "/path"}}, "options": {"throughput": 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '497' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/89803333-f3a2-44c6-b158-2490d608947c?api-version=2023-09-15-preview&t=638327049108016945&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=rPAK9rjtHMD6IE7F1tQqen8qdCrWDPkjEE-M7WgADid4oD5ZxC8RuQcHKVHce6X53j40yL_SRddk6Ua0Z0hySyuXJutvAphUz0j0Y5qkArm7lmoj5kPshiSxx0n4pulMEb_bH8Ubg4bOw22zWxF0GPz97nPUkqyK5LQnTxx3JdcJRqTPPr1P_6tWREAJnM4u9EzbnDWC4UrTHtyPw4mhjYRd7acdwuDqRBh0Or6nr4s1DRnA2etMl7ZsHvx1el8IClV5q8IkWuGFc24M05CBJjymMurN0cn0z79N6_3PyWEawfck8oVKt27u4J3DsisgNiqUkNdGfgSOQ91dG_A3Mw&h=wKu8YLnBHoaJF7L0cmpqbN7Vju9ADVwb7tE2r5zWsOU - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:10 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/89803333-f3a2-44c6-b158-2490d608947c?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/89803333-f3a2-44c6-b158-2490d608947c?api-version=2023-09-15-preview&t=638327049108016945&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=rPAK9rjtHMD6IE7F1tQqen8qdCrWDPkjEE-M7WgADid4oD5ZxC8RuQcHKVHce6X53j40yL_SRddk6Ua0Z0hySyuXJutvAphUz0j0Y5qkArm7lmoj5kPshiSxx0n4pulMEb_bH8Ubg4bOw22zWxF0GPz97nPUkqyK5LQnTxx3JdcJRqTPPr1P_6tWREAJnM4u9EzbnDWC4UrTHtyPw4mhjYRd7acdwuDqRBh0Or6nr4s1DRnA2etMl7ZsHvx1el8IClV5q8IkWuGFc24M05CBJjymMurN0cn0z79N6_3PyWEawfck8oVKt27u4J3DsisgNiqUkNdGfgSOQ91dG_A3Mw&h=wKu8YLnBHoaJF7L0cmpqbN7Vju9ADVwb7tE2r5zWsOU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/89803333-f3a2-44c6-b158-2490d608947c?api-version=2023-09-15-preview&t=638327049108016945&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=rPAK9rjtHMD6IE7F1tQqen8qdCrWDPkjEE-M7WgADid4oD5ZxC8RuQcHKVHce6X53j40yL_SRddk6Ua0Z0hySyuXJutvAphUz0j0Y5qkArm7lmoj5kPshiSxx0n4pulMEb_bH8Ubg4bOw22zWxF0GPz97nPUkqyK5LQnTxx3JdcJRqTPPr1P_6tWREAJnM4u9EzbnDWC4UrTHtyPw4mhjYRd7acdwuDqRBh0Or6nr4s1DRnA2etMl7ZsHvx1el8IClV5q8IkWuGFc24M05CBJjymMurN0cn0z79N6_3PyWEawfck8oVKt27u4J3DsisgNiqUkNdGfgSOQ91dG_A3Mw&h=wKu8YLnBHoaJF7L0cmpqbN7Vju9ADVwb7tE2r5zWsOU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697108119,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"000084c8-0000-0700-0000-6527d0970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1262' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697108119,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"000084c8-0000-0700-0000-6527d0970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1262' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/headquarters/employees/?"}, {"path": "/\"_etag\"/?"}]}, "partitionKey": - {"paths": ["/thePartitionKey"], "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": - [{"paths": ["/path/to/key1"]}, {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": - {"mode": "lastWriterWins", "conflictResolutionPath": "/path", "conflictResolutionProcedure": - ""}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - Content-Length: - - '540' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2f6184-f463-4ac4-b7b3-d521ea24f035?api-version=2023-09-15-preview&t=638327049460435823&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kwCE-YsJROuCa2xzQh1GDHqZdzJ0p2NxihKG0SyEDVNWe1GV4tsIf-gD1GZmVpzhNzrM6ZZHHHXElvhYsCUePiKEcyGkxpKh1O52xYL1uziABl3uwm-7vXLNCzEmq00jQ79dTVOEEhsKVKsHfxJeGw1VFHTku6U4nN0f7I6nTdW5BCQ_Hx6saaCIf8F3HTPQlTbRuToGfR78516D0BQr8vC91Zm1BEAXpmxGdUFeDBXnV9wikNoIzvliw0QxhAILp6-LuKM22u2wBCzOKu_8Ge5OR6DnSlVToh8ElQpcbP_tP7S-oQPU23OamOambP6m8d-6cgb51tc3M_ZI-uhuhg&h=rENcBIeQIhSigQI_aa8TRUeuIPYEReRkht5i0M0-vWM - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:45 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/0a2f6184-f463-4ac4-b7b3-d521ea24f035?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2f6184-f463-4ac4-b7b3-d521ea24f035?api-version=2023-09-15-preview&t=638327049460435823&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kwCE-YsJROuCa2xzQh1GDHqZdzJ0p2NxihKG0SyEDVNWe1GV4tsIf-gD1GZmVpzhNzrM6ZZHHHXElvhYsCUePiKEcyGkxpKh1O52xYL1uziABl3uwm-7vXLNCzEmq00jQ79dTVOEEhsKVKsHfxJeGw1VFHTku6U4nN0f7I6nTdW5BCQ_Hx6saaCIf8F3HTPQlTbRuToGfR78516D0BQr8vC91Zm1BEAXpmxGdUFeDBXnV9wikNoIzvliw0QxhAILp6-LuKM22u2wBCzOKu_8Ge5OR6DnSlVToh8ElQpcbP_tP7S-oQPU23OamOambP6m8d-6cgb51tc3M_ZI-uhuhg&h=rENcBIeQIhSigQI_aa8TRUeuIPYEReRkht5i0M0-vWM - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:55:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2f6184-f463-4ac4-b7b3-d521ea24f035?api-version=2023-09-15-preview&t=638327049460435823&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=kwCE-YsJROuCa2xzQh1GDHqZdzJ0p2NxihKG0SyEDVNWe1GV4tsIf-gD1GZmVpzhNzrM6ZZHHHXElvhYsCUePiKEcyGkxpKh1O52xYL1uziABl3uwm-7vXLNCzEmq00jQ79dTVOEEhsKVKsHfxJeGw1VFHTku6U4nN0f7I6nTdW5BCQ_Hx6saaCIf8F3HTPQlTbRuToGfR78516D0BQr8vC91Zm1BEAXpmxGdUFeDBXnV9wikNoIzvliw0QxhAILp6-LuKM22u2wBCzOKu_8Ge5OR6DnSlVToh8ElQpcbP_tP7S-oQPU23OamOambP6m8d-6cgb51tc3M_ZI-uhuhg&h=rENcBIeQIhSigQI_aa8TRUeuIPYEReRkht5i0M0-vWM - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container update - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697108119,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"000084c8-0000-0700-0000-6527d0970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1262' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697108119,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"000084c8-0000-0700-0000-6527d0970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1264' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697108119,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"000084c8-0000-0700-0000-6527d0970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:56:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697108119,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"000084c8-0000-0700-0000-6527d0970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1264' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f0be0c3a-5ec8-460f-ad61-4a89fba02727?api-version=2023-09-15&t=638327052834588132&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rKxhHhl9kDC9tTPNUpM9TTi6zjy57MT4iPdF1ubMCLAxa5DdnfggFDg8vHSyuoUc9aM5U-2OykGtCZCMrjLHFeMdEVkXSvDYwTavUUGlAmt8ySTPzh9e-T-ihqVhGn8GDYAp89-04HjzqwW8cHO4orT32FoRCdC9gXqMGBuC4r-i6f5J8oK4owmBH2vv6GMFhCCkXKkl6YKdXc_KPZ_DSpuijHxJvMhtWPBA_HoFMaPJ2Or4w217ymQbymhsv2AgowHqO8DkyexPjqx0bsyxr6uo4kCNJqmgJiFr7FZLXWk38o20SPxX59ZRsQFkiDtMorcXfiqKUoyRdFbwYvzXHQ&h=zluXTDlDFFkt-n-tBb4vuXlLd7o28MdhqSjdt_1EvPw - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:22 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/f0be0c3a-5ec8-460f-ad61-4a89fba02727?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f0be0c3a-5ec8-460f-ad61-4a89fba02727?api-version=2023-09-15&t=638327052834588132&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rKxhHhl9kDC9tTPNUpM9TTi6zjy57MT4iPdF1ubMCLAxa5DdnfggFDg8vHSyuoUc9aM5U-2OykGtCZCMrjLHFeMdEVkXSvDYwTavUUGlAmt8ySTPzh9e-T-ihqVhGn8GDYAp89-04HjzqwW8cHO4orT32FoRCdC9gXqMGBuC4r-i6f5J8oK4owmBH2vv6GMFhCCkXKkl6YKdXc_KPZ_DSpuijHxJvMhtWPBA_HoFMaPJ2Or4w217ymQbymhsv2AgowHqO8DkyexPjqx0bsyxr6uo4kCNJqmgJiFr7FZLXWk38o20SPxX59ZRsQFkiDtMorcXfiqKUoyRdFbwYvzXHQ&h=zluXTDlDFFkt-n-tBb4vuXlLd7o28MdhqSjdt_1EvPw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f0be0c3a-5ec8-460f-ad61-4a89fba02727?api-version=2023-09-15&t=638327052834588132&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rKxhHhl9kDC9tTPNUpM9TTi6zjy57MT4iPdF1ubMCLAxa5DdnfggFDg8vHSyuoUc9aM5U-2OykGtCZCMrjLHFeMdEVkXSvDYwTavUUGlAmt8ySTPzh9e-T-ihqVhGn8GDYAp89-04HjzqwW8cHO4orT32FoRCdC9gXqMGBuC4r-i6f5J8oK4owmBH2vv6GMFhCCkXKkl6YKdXc_KPZ_DSpuijHxJvMhtWPBA_HoFMaPJ2Or4w217ymQbymhsv2AgowHqO8DkyexPjqx0bsyxr6uo4kCNJqmgJiFr7FZLXWk38o20SPxX59ZRsQFkiDtMorcXfiqKUoyRdFbwYvzXHQ&h=zluXTDlDFFkt-n-tBb4vuXlLd7o28MdhqSjdt_1EvPw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","oldestRestorableTime":"2023-10-12T10:59:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:01:58Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:01:57Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '287654' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:02:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4", - "restoreTimestampInUtc": "2023-10-12T10:56:19.75318Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - Content-Length: - - '351' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:05 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:03:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:04:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6930f9ac-e150-4036-aa0d-238cba57512c?api-version=2023-09-15-preview&t=638327053259657157&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=eqWxqaUiyg0-0gTAUumcuHLubMaAqpmzuJIsDhIP3RtXXBEEvcDjSa5jAKmLj-HN7C14vk_Vzl9qc6T6633LRtUO-gMgnU6EqXA89bkDbAvVZd3hzQjtRdzAEpczWfzSlBpBvAPv1H1uJrBzGNWvlbwqWI7nIYkWHLCt4VsvSl5o2rXaI02DIUyC4XRfIGpMQ40zCg0VA2eaDYJQV8EvxUebDSqkzHMkoISWbzaI3bgLh0gOSwZmLj-eVqbU3G_N66iUlQ5Il_qlKxQ1PwwIwIfTdkpdxcT8NyllEvu6zy9oAJVQU1AZOK-WYX-WbF1wW9pUHLqSstlndnOyulQJEg&h=EjO1ht3qkxIh-aal_YivjCtyi0OFzv_skofTZYXXuVA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"c1d212fc-68ee-11ee-b5fd-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:19.75318+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4"},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697108707,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"000092c8-0000-0700-0000-6527d2e30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1578' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"c1d212fc-68ee-11ee-b5fd-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:19.75318+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4"},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697108707,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"000092c8-0000-0700-0000-6527d2e30000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6425760a-f8df-4cad-a9c2-8633e6de67bd?api-version=2023-09-15&t=638327057564712847&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=C5A39GZujO71dYB719MwumwkobWvHIQ6SEcgu9kUS7yK3PnjIS1cGhzWbWIzN57T9H-b-uMt3Zi4HGM2qipavCoRbViz7Qj1luneodfLclDhpm5jNsMxDJqLqqfMh6Hfl_QpVuiMx0lWeHAlI5_UfifGSeovgKNMce2TAi-hsaqhO8q_jXEeRlrWVN1b3roFEKWtuZrarIo2_qb16TrfJWSRD0CRE_cL2kiixTCyF3iNydAvNLpul0yZ7EQcmoJLLfSuKZ2KWnwlEedidc_W6G4p79ZbQL8EcvnAPvB1_FkBtWRTN39FBiTDodnhqyCCED6Qljm4OvtbQK9kxvlXpw&h=Kr6-gDnydxBuYEvKJIVz9ZMn1uSQbAIhxPit9mJwpg4 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:15 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/6425760a-f8df-4cad-a9c2-8633e6de67bd?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6425760a-f8df-4cad-a9c2-8633e6de67bd?api-version=2023-09-15&t=638327057564712847&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=C5A39GZujO71dYB719MwumwkobWvHIQ6SEcgu9kUS7yK3PnjIS1cGhzWbWIzN57T9H-b-uMt3Zi4HGM2qipavCoRbViz7Qj1luneodfLclDhpm5jNsMxDJqLqqfMh6Hfl_QpVuiMx0lWeHAlI5_UfifGSeovgKNMce2TAi-hsaqhO8q_jXEeRlrWVN1b3roFEKWtuZrarIo2_qb16TrfJWSRD0CRE_cL2kiixTCyF3iNydAvNLpul0yZ7EQcmoJLLfSuKZ2KWnwlEedidc_W6G4p79ZbQL8EcvnAPvB1_FkBtWRTN39FBiTDodnhqyCCED6Qljm4OvtbQK9kxvlXpw&h=Kr6-gDnydxBuYEvKJIVz9ZMn1uSQbAIhxPit9mJwpg4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6425760a-f8df-4cad-a9c2-8633e6de67bd?api-version=2023-09-15&t=638327057564712847&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=C5A39GZujO71dYB719MwumwkobWvHIQ6SEcgu9kUS7yK3PnjIS1cGhzWbWIzN57T9H-b-uMt3Zi4HGM2qipavCoRbViz7Qj1luneodfLclDhpm5jNsMxDJqLqqfMh6Hfl_QpVuiMx0lWeHAlI5_UfifGSeovgKNMce2TAi-hsaqhO8q_jXEeRlrWVN1b3roFEKWtuZrarIo2_qb16TrfJWSRD0CRE_cL2kiixTCyF3iNydAvNLpul0yZ7EQcmoJLLfSuKZ2KWnwlEedidc_W6G4p79ZbQL8EcvnAPvB1_FkBtWRTN39FBiTDodnhqyCCED6Qljm4OvtbQK9kxvlXpw&h=Kr6-gDnydxBuYEvKJIVz9ZMn1uSQbAIhxPit9mJwpg4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:09:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:09:49Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:09:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:09:49Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:09:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:09:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:09:51Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:09:50Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '288438' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:09:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4", - "restoreTimestampInUtc": "2023-10-12T10:56:19.75318Z"}, "createMode": "Restore"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - Content-Length: - - '336' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:57 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d9124db7-0763-4697-a9fe-72720a7423c4?api-version=2023-09-15-preview&t=638327057981437738&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=ke1A4vfLM_EdmRe1UPSvYbvYhbiBqmHTQLtgZs2ORiF_sORRW_Eqv6mFsxhSpE4y3snDbx7WOuTpedYJKedh2WT8bayBR5qRcG-HDRhpKJBFrBjKYvJK80qKKqZ-qTez1R93XGTyjAu2HJBFxnBSHqkVfkVFg7OtZUc4p-ulJS53dCF9tQwENhLAaC_e7xiMajk2ORlhjyzmeMOLY6iBDJ-jlZOgBhqcycP3X6p7GDO-mG4lSzBObJNR9OyccFb7oybDSIMriG3Bbq8VeXEEdLaYH9oU1sxivxeafmrnh4i_JUeBl8fC2CRP4_PqRbr5tw2Y66a6lED0A_TerKzrMA&h=PH-giou4hqcOpYViFnNuM4wqo_1rV-Bavu1-LeaXDWw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Fdd7AA==","_self":"dbs/Fdd7AA==/","_etag":"\"00009bc8-0000-0700-0000-6527d4b20000\"","_colls":"colls/","_users":"users/","_ts":1697109170}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '493' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Fdd7AA==","_self":"dbs/Fdd7AA==/","_etag":"\"00009bc8-0000-0700-0000-6527d4b20000\"","_colls":"colls/","_users":"users/","_ts":1697109170}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '493' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","oldestRestorableTime":"2023-10-12T11:13:11Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:17:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:17:45Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '289247' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:17:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4", - "restoreTimestampInUtc": "2023-10-12T10:56:19.75318Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - Content-Length: - - '351' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:52 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:20:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:21:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:22:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:23:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:24:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4612dcfd-8a47-416c-9e4f-b034cc1d324d?api-version=2023-09-15-preview&t=638327062730594595&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=MmTDTsqffxHBFXqAwkxgLE3ilQqzSWXoViVCXSwu45Qhuxh_Mgod9qJMlr2d1G0hb0PgFIuGtoPm2xjpYk_P4vXvtJDu3YnbM8LiYtm0CO5pzbTWGz-8bDPfUsi155PtHb-ZcgOoyF8vZtGUOboOyRl786t06xz1RUniM44IvWi072NXoj-bOJFRv37y2u0pz1Ugl-c9RBsl-jh0X6I-zUbUXlFzknNDV80qXi1sYN_I-M9kntcwE9JpPd122v0MdVgzR6yfmdTc6Qz_Xt2vdpbIdq9wlxIiAFKHJtVT3HpMMpp0zTL9V3RqzokZpJ6_rOlE9ppN10u3zqJG5D6njg&h=ibYQF3PJaAh3TiKHBe-DVwTr7qxGB5cQ4zKO6Z3IhBI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f680ffe9-68f0-11ee-9193-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:19.75318+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4"},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697109655,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"0000a8c8-0000-0700-0000-6527d6970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1578' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f680ffe9-68f0-11ee-9193-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:19.75318+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4"},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697109655,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"0000a8c8-0000-0700-0000-6527d6970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1475' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f680ffe9-68f0-11ee-9193-9c7bef43f49d","restoreTimestampInUtc":"2023-10-12T10:56:19.75318+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4"},"geospatialConfig":{"type":"Geography"},"_rid":"Fdd7AOl+HEk=","_ts":1697109655,"_self":"dbs/Fdd7AA==/colls/Fdd7AOl+HEk=/","_etag":"\"0000a8c8-0000-0700-0000-6527d6970000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1578' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:25:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml deleted file mode 100644 index fe193f6df7c..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml +++ /dev/null @@ -1,4668 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_shared_database_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001","name":"cli_test_cosmosdb_sql_shared_database_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_shared_database_restore","date":"2024-02-23T19:45:12Z","module":"azure-cli-extensions-restorewithttldisabled"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '493' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 23 Feb 2024 19:45:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5242285B80D2444A9943A118726B9ACA Ref B: MNZ221060608031 Ref C: 2024-02-23T19:45:15Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westcentralus", "kind": "GlobalDocumentDB", "properties": - {"locations": [{"locationName": "WestCentralUS", "failoverPriority": 0, "isZoneRedundant": - false}], "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": - "Default", "backupPolicy": {"type": "Continuous", "continuousModeProperties": - {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '356' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T19:45:17.856814Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f7671baf-25aa-4e90-98fc-b912944c7c15","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T19:45:17.856814Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T19:45:17.856814Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:45:17.856814Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:45:17.856814Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 - cache-control: - - no-store, no-cache - content-length: - - '2743' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:45:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AKR-3-Up2kaKSAvO6Y_72tC7c-UUFxKm31ZldhKk6i0zgK4ZlrAlPrYXej_g4KPDwfhsmyiYBYwnFaUQpOSOrOyIViRW1nrfAZkxJEJLvn1MQXtFXECvZAo24AWX7u0OOP2Rs1m7HHZPMMriiB6cAHn8fHajCkxIlxDNR1ZvPYQVuedAOzDFabXqxjeYB70OrLMXaKM8anMFjAyLw_8kVIV0FxpXomWbU0L2vDl0rTgJrpkqwgRJNT9FrcQ9d7tC54Kmh6-7mfeYAWzGXdDhuAHIjaG_XKQKiyIYiSjJqU9VA59hdEvdx8CgkJJx0fPUtch8HTvUbH9O16r-PJo6zQ&h=wWT6BmcH6bATkw96al6OsLBT_-4y4KZTKn_n1MXNYqY - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 4EF4A22E77BA43BD998F11D6647AAB36 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:45:15Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:45:18 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9BDA4ADA0A3D479EB1D3206E951E62C8 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:45:19Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:45:48 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 62213D39D95B4E7DA0E5A09A9F249E89 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:45:49Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:46:19 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 00B7684E6BD543AF8CB8628C1CCAC849 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:46:19Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:46:49 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 22EAC1BF036441299264B03ED6EFEB2B Ref B: MNZ221060608031 Ref C: 2024-02-23T19:46:50Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:47:19 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 695FF1C6D39740DC8C6FDB91E32FD4C3 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:47:20Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c2040d1b-2255-4d29-9c14-d0accd4bb20d?api-version=2024-02-15-preview&t=638443143191922877&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eG10F94SpVI-7fU7-Y4bis5MwkGUjOyFGmpbjSv-RiTGmLcflRgJp-TsR8iKYFXTCMHsQ8YIVrnVrQB9vThiHQ1jF3fkrukYq2OFx8ZzpWx8ge2P7kKyVZvm7gF5xcKrj6B8vOoj8URbSSO_P4l73mkLyBAEpwYM63EhvP8idhQRE5xuaGYqMAfG0wibP49WUJhfXIW73yqqkGo8qOVVPwERpBRgcjf3oSK_wUPccVyFRM_QfDLqDRNnq-wXtW31isyuipXAQPM1OSg99HdilHcTozU-f22kkD65-NEnqBQmN6MqtQ4G-PO0zBNCYxCOS8uEHzbJk-MZeOPvEYcshg&h=BaTlgy9bhbDeI5sK6EcbOr1XuYqfFLQ2RfDlUm0j4P0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:47:49 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9BAC1CD6E1E04CFCB135BD3342901DD0 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:47:50Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T19:47:09.6081386Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f7671baf-25aa-4e90-98fc-b912944c7c15","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3127' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:47:50 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: BC73DD7A3B60445CBB83386BB70B3318 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:47:50Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T19:47:09.6081386Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f7671baf-25aa-4e90-98fc-b912944c7c15","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T19:47:09.6081386Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3127' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:47:50 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9B49746AF20E44529AEA05FE47BE1766 Ref B: MNZ221060608031 Ref C: 2024-02-23T19:47:51Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {"throughput": - 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/290640a5-7c69-44f9-b26c-23c6dba34191?api-version=2023-04-15&t=638443144722330015&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gCyRoYtmcwFAetn62EkvmRtArvTzth0mh5EtcBuCZilAx9CJv6JHTsZs3PKRmFBLQhOmVciyPyw6UFj_ggKEsqN5uh9YMILGS7jHxkCK-4cTASl0PZ2AH__292t73BajqYgC7R4lRg71jsA-2TgCcCswL57cJR6UqbzrX62TZMkUSbRkg3J3Nb3sToelBp_XAzEwJs6I-9lbiqnlcBiVU5uRg5UphlLQprAQoaE9uuJa5G_pDUaMFmnUTsjFmtaHtJJmJeRUYNMLMQBKMktfPamk94hUs_r_EhCQ21vKB_h8Yfc7EoZSfOz5QsNqNRl8iPw3Y45AsFh7cs7MXGANtg&h=QH9Zla6sFMY3YTjrowO1FBT6iCR5iKHwd5QA7IHU1fs - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:47:51 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/290640a5-7c69-44f9-b26c-23c6dba34191?api-version=2023-04-15&t=638443144722485372&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FwFk3p5J0yRpW2Ko99dlZTxKmI1sntHjhEcDY9ulu20QHwqBuApNFAxA1m-KoA3BTpZnJbZ4xdcMnv7D6e3KLXV64ep8bkNdhONbWJOMrBujKnRKenRU_7IBxPMWGhV63X4eAWaPFv3ebjijwpUOXaSu_nRnGFvV7BcqSp-bEytugrMeAwIxdvz64n_GBxww3_6EF9R6IGAV2MBKUbVuHq-YBqxI0i8_1y_jU9jnOG4pf7rCCaJsLrwloHLyP6vQlxapKK9qh3abIVZHe1EucgHoJT8O9gFQDn9oBG-88xe82yDQtD0HTcyEFxcauQdczp2Aoe7rV_ft99p53OkwUA&h=_jG_s9llhpQIO_JfbnIPo0PmeI15SIroiF0TNSjwVSY - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F2F3947C19ED4AD39A70E57DF93C24EF Ref B: MNZ221060610009 Ref C: 2024-02-23T19:47:51Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/290640a5-7c69-44f9-b26c-23c6dba34191?api-version=2023-04-15&t=638443144722330015&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gCyRoYtmcwFAetn62EkvmRtArvTzth0mh5EtcBuCZilAx9CJv6JHTsZs3PKRmFBLQhOmVciyPyw6UFj_ggKEsqN5uh9YMILGS7jHxkCK-4cTASl0PZ2AH__292t73BajqYgC7R4lRg71jsA-2TgCcCswL57cJR6UqbzrX62TZMkUSbRkg3J3Nb3sToelBp_XAzEwJs6I-9lbiqnlcBiVU5uRg5UphlLQprAQoaE9uuJa5G_pDUaMFmnUTsjFmtaHtJJmJeRUYNMLMQBKMktfPamk94hUs_r_EhCQ21vKB_h8Yfc7EoZSfOz5QsNqNRl8iPw3Y45AsFh7cs7MXGANtg&h=QH9Zla6sFMY3YTjrowO1FBT6iCR5iKHwd5QA7IHU1fs - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:47:51 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 6E65786489D541E980E2593C76039B15 Ref B: MNZ221060610009 Ref C: 2024-02-23T19:47:52Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/290640a5-7c69-44f9-b26c-23c6dba34191?api-version=2023-04-15&t=638443144722330015&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gCyRoYtmcwFAetn62EkvmRtArvTzth0mh5EtcBuCZilAx9CJv6JHTsZs3PKRmFBLQhOmVciyPyw6UFj_ggKEsqN5uh9YMILGS7jHxkCK-4cTASl0PZ2AH__292t73BajqYgC7R4lRg71jsA-2TgCcCswL57cJR6UqbzrX62TZMkUSbRkg3J3Nb3sToelBp_XAzEwJs6I-9lbiqnlcBiVU5uRg5UphlLQprAQoaE9uuJa5G_pDUaMFmnUTsjFmtaHtJJmJeRUYNMLMQBKMktfPamk94hUs_r_EhCQ21vKB_h8Yfc7EoZSfOz5QsNqNRl8iPw3Y45AsFh7cs7MXGANtg&h=QH9Zla6sFMY3YTjrowO1FBT6iCR5iKHwd5QA7IHU1fs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:22 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: F281E57D47DC42519ED86296AC68EC77 Ref B: MNZ221060610009 Ref C: 2024-02-23T19:48:22Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ZlVbAA==","_self":"dbs/ZlVbAA==/","_etag":"\"0000c306-0000-0600-0000-65d8f6730000\"","_colls":"colls/","_users":"users/","_ts":1708717683}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '478' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:22 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: D9C854C270FD4DB7BC0521E0D0C8147A Ref B: MNZ221060610009 Ref C: 2024-02-23T19:48:22Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - 80c7acf3-d284-11ee-9111-6045bdd9660e, Request URI: /apps/a620de26-8c06-41bb-a0d6-8f63dd8f7a6f/services/8f0bad88-abe8-4c2d-89e1-ec2367a05804/partitions/0f971aa2-f01b-4b47-9a6a-6bc25c3826b1/replicas/133531869101690309s, - RequestStats: \\r\\nRequestStartTime: 2024-02-23T19:48:23.9547994Z, RequestEndTime: - 2024-02-23T19:48:23.9561859Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-02-23T19:47:31.5732362Z\\\",\\\"cpu\\\":0.049,\\\"memory\\\":423722728.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0726,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":324},{\\\"dateUtc\\\":\\\"2024-02-23T19:47:41.5829730Z\\\",\\\"cpu\\\":0.110,\\\"memory\\\":423744784.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0588,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":324},{\\\"dateUtc\\\":\\\"2024-02-23T19:47:51.5930803Z\\\",\\\"cpu\\\":0.124,\\\"memory\\\":423730756.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0533,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":323},{\\\"dateUtc\\\":\\\"2024-02-23T19:48:01.6030212Z\\\",\\\"cpu\\\":0.063,\\\"memory\\\":423740868.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0365,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":323},{\\\"dateUtc\\\":\\\"2024-02-23T19:48:11.6127523Z\\\",\\\"cpu\\\":0.098,\\\"memory\\\":423740816.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0598,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":323},{\\\"dateUtc\\\":\\\"2024-02-23T19:48:21.6228498Z\\\",\\\"cpu\\\":0.100,\\\"memory\\\":423668276.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0391,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":323}]}\\r\\nRequestStart: - 2024-02-23T19:48:23.9549892Z; ResponseTime: 2024-02-23T19:48:23.9561810Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/a620de26-8c06-41bb-a0d6-8f63dd8f7a6f/services/8f0bad88-abe8-4c2d-89e1-ec2367a05804/partitions/0f971aa2-f01b-4b47-9a6a-6bc25c3826b1/replicas/133531869101690309s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.712, ActivityId: - 80c7acf3-d284-11ee-9111-6045bdd9660e, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 2/23/2024 7:48:23 PM),(port: 11300 - | status: Unknown | lkt: 2/23/2024 7:48:23 PM),(port: 11300 | status: Unknown - | lkt: 2/23/2024 7:48:23 PM),(port: 11000 | status: Unknown | lkt: 2/23/2024 - 7:48:23 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549150Z\\\", - \\\"durationInMs\\\": 0.0075},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549225Z\\\", \\\"durationInMs\\\": - 0.0012},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549237Z\\\", - \\\"durationInMs\\\": 0.057},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2024-02-23T19:48:23.9549807Z\\\", \\\"durationInMs\\\": 0.8815},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9558622Z\\\", - \\\"durationInMs\\\": 0.0691},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2024-02-23T19:48:23.9559313Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-02-23T19:48:23.9217924Z\\\",\\\"lastSend\\\":\\\"2024-02-23T19:48:23.9218439Z\\\",\\\"lastReceive\\\":\\\"2024-02-23T19:48:23.9510447Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-02-23T19:48:23.9550293Z; - ResponseTime: 2024-02-23T19:48:23.9561859Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.9:11000/apps/a620de26-8c06-41bb-a0d6-8f63dd8f7a6f/services/8f0bad88-abe8-4c2d-89e1-ec2367a05804/partitions/0f971aa2-f01b-4b47-9a6a-6bc25c3826b1/replicas/133531869101690307s, - LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.732, ActivityId: - 80c7acf3-d284-11ee-9111-6045bdd9660e, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 2/23/2024 7:48:23 PM),(port: 11300 - | status: Unknown | lkt: 2/23/2024 7:48:23 PM),(port: 11300 | status: Unknown - | lkt: 2/23/2024 7:48:23 PM),(port: 11000 | status: Unknown | lkt: 2/23/2024 - 7:48:23 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549909Z\\\", - \\\"durationInMs\\\": 0.0029},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549938Z\\\", \\\"durationInMs\\\": - 0.0008},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9549946Z\\\", - \\\"durationInMs\\\": 0.0303},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2024-02-23T19:48:23.9550249Z\\\", \\\"durationInMs\\\": 1.011},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-02-23T19:48:23.9560359Z\\\", - \\\"durationInMs\\\": 0.0352},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2024-02-23T19:48:23.9560711Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-02-23T19:48:23.9218968Z\\\",\\\"lastSend\\\":\\\"2024-02-23T19:48:23.9219149Z\\\",\\\"lastReceive\\\":\\\"2024-02-23T19:48:23.9535678Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7077' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:23 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 3A9AF4BEDE0F4CB489652BE608A54C41 Ref B: BL2AA2010201021 Ref C: 2024-02-23T19:48:23Z' - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], - "kind": "Hash"}, "defaultTtl": 1800, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": - ["/path/to/key1"]}, {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": - {"mode": "lastWriterWins", "conflictResolutionPath": "/path"}}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '499' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e0ea3f0-3884-4805-96d1-4d67afa5e362?api-version=2024-02-15-preview&t=638443145050000410&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=t0uAAy4el5HHKI-6s-j_7j72nj6ww7Y7PpLiTdvuCFKvpU3Xh7nRbD9L8fLB-_IvWxJwkmNiMAb0xegYtSqftlyusI3SOjOgrlK0hsEX7uifjpG9k1AzsrZF4gQa6S0MURrGntJLWp_mmqckFy9nPfteR2hwmB8LzMBXhssozVwDByGIGfcFhRWEDBbgGjJ_FPpfywTGtJGvT-j6YAp6F6kLZCZOb0jvgCp9zLIYu3a8OwYfDvMxgkRz62kLjS3-mGXxjlbvEPcc76lNgLEy8aS8FrF24MXlaL4qNedNiTgvWu47UqdPFgZCxzI9QCrmcmlEKHv_33LZRE_WE8yQkA&h=evabWVv25MJHrEj8yT-D68oSnfYPE8K9CKGn9ICx0h0 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:24 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/2e0ea3f0-3884-4805-96d1-4d67afa5e362?api-version=2024-02-15-preview&t=638443145050157859&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=gLgyoINQgFUajsf966sJ6_Y7oD6hdZB45qKwmRPL-Q5_noElH979mAzxetnqQKDHJ_pcH8II5gRLPpUfBlYVCRgiR3PMDWVwdfO_0Q0dEHvIel4na6WuqlvYbzYm0Qv87Qer7RxNY4_F57Y-J65RgDHpGeFcUOnTy_nGCy7iHV89NdFQvWhLediTUc90KODmu10AjWwXcBUhOZ39sjuoQt4LjRQCijRVL-2Fm7IhRB37gFcCIvK32kIH9-D617IYWY0Y5DaeIgn1dhlL29loIWFDggdkCo5s3H-OqXzoKi8KAx07ndRS4SBW09TQCyUpKf7rCWVkD4qMKjP_whD-HQ&h=HFh86I_OtuxpRHZYm8xwR6XeFJEFoiH7mCPqsY6qP8Q - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 0491CBCB033A4A528B502572D8AF5B31 Ref B: BL2AA2010205035 Ref C: 2024-02-23T19:48:24Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e0ea3f0-3884-4805-96d1-4d67afa5e362?api-version=2024-02-15-preview&t=638443145050000410&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=t0uAAy4el5HHKI-6s-j_7j72nj6ww7Y7PpLiTdvuCFKvpU3Xh7nRbD9L8fLB-_IvWxJwkmNiMAb0xegYtSqftlyusI3SOjOgrlK0hsEX7uifjpG9k1AzsrZF4gQa6S0MURrGntJLWp_mmqckFy9nPfteR2hwmB8LzMBXhssozVwDByGIGfcFhRWEDBbgGjJ_FPpfywTGtJGvT-j6YAp6F6kLZCZOb0jvgCp9zLIYu3a8OwYfDvMxgkRz62kLjS3-mGXxjlbvEPcc76lNgLEy8aS8FrF24MXlaL4qNedNiTgvWu47UqdPFgZCxzI9QCrmcmlEKHv_33LZRE_WE8yQkA&h=evabWVv25MJHrEj8yT-D68oSnfYPE8K9CKGn9ICx0h0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:24 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B4D627A87754426483A26288F966220C Ref B: BL2AA2010205035 Ref C: 2024-02-23T19:48:25Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e0ea3f0-3884-4805-96d1-4d67afa5e362?api-version=2024-02-15-preview&t=638443145050000410&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=t0uAAy4el5HHKI-6s-j_7j72nj6ww7Y7PpLiTdvuCFKvpU3Xh7nRbD9L8fLB-_IvWxJwkmNiMAb0xegYtSqftlyusI3SOjOgrlK0hsEX7uifjpG9k1AzsrZF4gQa6S0MURrGntJLWp_mmqckFy9nPfteR2hwmB8LzMBXhssozVwDByGIGfcFhRWEDBbgGjJ_FPpfywTGtJGvT-j6YAp6F6kLZCZOb0jvgCp9zLIYu3a8OwYfDvMxgkRz62kLjS3-mGXxjlbvEPcc76lNgLEy8aS8FrF24MXlaL4qNedNiTgvWu47UqdPFgZCxzI9QCrmcmlEKHv_33LZRE_WE8yQkA&h=evabWVv25MJHrEj8yT-D68oSnfYPE8K9CKGn9ICx0h0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:54 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 24513D82CCD146D680AFCADCF663C660 Ref B: BL2AA2010205035 Ref C: 2024-02-23T19:48:55Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708717710,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000c806-0000-0600-0000-65d8f68e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1265' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:54 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 4F02EC987E2449DA88EE15BE422749C8 Ref B: BL2AA2010205035 Ref C: 2024-02-23T19:48:55Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708717710,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000c806-0000-0600-0000-65d8f68e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1265' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:56 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 13E6978FBBDD40619B997F6C061326A9 Ref B: BL2AA2010201045 Ref C: 2024-02-23T19:48:56Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-04-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708717710,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000c806-0000-0600-0000-65d8f68e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1164' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:48:56 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9D0348642D744463B104D717E715B128 Ref B: MNZ221060610011 Ref C: 2024-02-23T19:48:56Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708717710,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000c806-0000-0600-0000-65d8f68e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1265' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:53:56 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: C7640E118A5D4A7FBDD64E5E51824DAB Ref B: BL2AA2030101005 Ref C: 2024-02-23T19:53:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/7312e9e1-3085-4bc2-afaf-0f9ee6a0a20d?api-version=2023-04-15&t=638443148386262808&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dhqYiOvXB6D_l_OShPFUDQbhEZ_SA0eKjDZ8kidpADVaG2qmHm2PfblxtB8qiPe0n86x7u9ClAv-RzGaLSBQuSl-kiuA2J9wRpph05LFjszVdx3HqVIsqWf48Av8LYz_GBM2I4AoCVlP-cGEqSfXet9FpkjLgzLmIzH1zBqdMX4nLo6_Ne80OMWPovtAbsW-R_bPQP8uXXBc4taGLVhLpyEKwQBKMn7t7itcycGXHC6jSQ2LIk7yeIYdbIl7aj0bF0y85Q8cqlzAPSpO1CSb-7mxbsuQ-MuHkcE5O82RR2mgahbRmmGn3NZdeRaX1m86LZOvtO0hx7b3mNRbR_Hfeg&h=1vDukosTvIidMZxJ_u38AhWcDgIO9eNXJGx7r49k0jA - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:53:57 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/7312e9e1-3085-4bc2-afaf-0f9ee6a0a20d?api-version=2023-04-15&t=638443148386419031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=i45zj9xVTVk8Jj0o5P1f25XBI1V2WjIX_c-YPFx_nSjSbU081hUla84Uww2ifA9MEkcoByFiJFiQyELkaXXjMrZsyKwPpWHwGHKRAPLKod3gDEn62A3vzw0uzZ2fAS1RVdGR5uVHjXK-NZlHURSHIM49d9xFMayVoyURB-Opi_jMkVoP0fJflM418Ya-Mp6ktaBjZPAi1MqjvbWEl3w9DuPascHLlJxHI9XTCFl_7QB2J2Inr1KnkU49ShWh6Dsf6OxrpyeveRNT-AC1CnW7kGGR2nItjbSHApb-ej1QUPRYjH1Dz_s-gKG30ic78LaewB8ycWmagwzeAVk4bvC73w&h=IcejvQOUeuGx55SeGcUue6caUqpH7bFX_gE75cdNND0 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 7A1494701E524239AC3639B6FF1E7968 Ref B: BL2AA2010203045 Ref C: 2024-02-23T19:53:57Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/7312e9e1-3085-4bc2-afaf-0f9ee6a0a20d?api-version=2023-04-15&t=638443148386262808&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dhqYiOvXB6D_l_OShPFUDQbhEZ_SA0eKjDZ8kidpADVaG2qmHm2PfblxtB8qiPe0n86x7u9ClAv-RzGaLSBQuSl-kiuA2J9wRpph05LFjszVdx3HqVIsqWf48Av8LYz_GBM2I4AoCVlP-cGEqSfXet9FpkjLgzLmIzH1zBqdMX4nLo6_Ne80OMWPovtAbsW-R_bPQP8uXXBc4taGLVhLpyEKwQBKMn7t7itcycGXHC6jSQ2LIk7yeIYdbIl7aj0bF0y85Q8cqlzAPSpO1CSb-7mxbsuQ-MuHkcE5O82RR2mgahbRmmGn3NZdeRaX1m86LZOvtO0hx7b3mNRbR_Hfeg&h=1vDukosTvIidMZxJ_u38AhWcDgIO9eNXJGx7r49k0jA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:53:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 5327389F1FF84F89B5C91CD0E6641A45 Ref B: BL2AA2010203045 Ref C: 2024-02-23T19:53:58Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/7312e9e1-3085-4bc2-afaf-0f9ee6a0a20d?api-version=2023-04-15&t=638443148386262808&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dhqYiOvXB6D_l_OShPFUDQbhEZ_SA0eKjDZ8kidpADVaG2qmHm2PfblxtB8qiPe0n86x7u9ClAv-RzGaLSBQuSl-kiuA2J9wRpph05LFjszVdx3HqVIsqWf48Av8LYz_GBM2I4AoCVlP-cGEqSfXet9FpkjLgzLmIzH1zBqdMX4nLo6_Ne80OMWPovtAbsW-R_bPQP8uXXBc4taGLVhLpyEKwQBKMn7t7itcycGXHC6jSQ2LIk7yeIYdbIl7aj0bF0y85Q8cqlzAPSpO1CSb-7mxbsuQ-MuHkcE5O82RR2mgahbRmmGn3NZdeRaX1m86LZOvtO0hx7b3mNRbR_Hfeg&h=1vDukosTvIidMZxJ_u38AhWcDgIO9eNXJGx7r49k0jA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:54:29 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B7DCFE608FC84D4BA1E2D06F7EF1B4E1 Ref B: BL2AA2010203045 Ref C: 2024-02-23T19:54:28Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-04-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:54:30 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 08A8D4F680E84005940B90096A6C6932 Ref B: BL2AA2010202017 Ref C: 2024-02-23T19:54:29Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2024-02-15-preview - response: - body: - string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","oldestRestorableTime":"2024-02-23T19:47:10Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East - US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T00:34:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast - Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast - Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East - Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-16T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-01-24T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-16T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","oldestRestorableTime":"2024-02-16T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","oldestRestorableTime":"2024-02-16T19:54: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East - US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-16T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West - US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-01-24T19:54:33Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-16T19:54:30Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-01-24T19:54:30Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-01-24T19:54:31Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-01-24T19:54:30Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-17T01:28:01Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-16T19:54:30Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '265691' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 23 Feb 2024 19:54:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - x-msedge-ref: - - 'Ref A: 12678290B4764789ABE88227EE070883 Ref B: BL2AA2030101019 Ref C: 2024-02-23T19:54:30Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15", - "restoreTimestampInUtc": "2024-02-23T19:48:57.135429Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - Content-Length: - - '359' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/6611805d-f791-4662-8604-c0895ff80dbd?api-version=2024-02-15-preview&t=638443148762560735&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Y_S59w5P3quRjG0oXuLaabN65OvIZTLOsEmQx1gkyF9MMWMe-CNRE3-zn-eGfdbH1W5PLE4E8s4XV9bLoCFzmk_gjExuA3jf_Vx-uFcRuNBgpntZOwlsDo0umPc_bMyjLeIcV71nJheADV7JY2MP7MVLiwlv2c4c5FumfmIvnEd93oLIWCj4AQ37fFs9FTiyAMvHP714cMkH2LwRINEIHg6UiNtBzFVXTPUfmqxhpF1TWOHeJpsbAFJtkguOniqHyNMREjDcJNGXQIIATlai3yvrWFpNgc_IeJiWGNw1xzSBaT7CtyTXnEq5ybxKdEO4rDM5bTr4e36QsOjMr5AmUg&h=QFid3phEB0MwIxnqOXlLMF8EXnXRUj0I9Xe_ENm33v8 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:54:36 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/6611805d-f791-4662-8604-c0895ff80dbd?api-version=2024-02-15-preview&t=638443148762716995&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=OYF2S8Eg80W9OsxTPcKmrFS2uZATklvBvmQjH9PhWjrdVzVYfFupahnb9eDJERTW7vnV40Balaof_nrEElRXedjdNdHbNd8RckeW7MJ7W7cYOUAyIvCKyBv1onJ00_M6t7NcDliufcxeAwnFbDadA8qqU575B6_72Js43zMWdmLYOES8ngZnRqzYNUDRlzvMZrdmhdMo88hgqAPZlzj44n3fLlqsGUwRe2yLrsHxbj5BMYE_tZYxLJWci0nVF-1qFuMnOZ_J2k12IejDVE2OoJQqn2LjIvvqGsrDC9tS9_G4O-_xNzY3TOlUbCvbi2DQZIX8tqzfQjBzTC1oKI5O8g&h=FP7CujcsIy6CC-D3M03ZOIP2nJchNum6jtC7S7varhI - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: D981550B608B477582B0FB5E98648DA9 Ref B: BL2AA2030104019 Ref C: 2024-02-23T19:54:34Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/6611805d-f791-4662-8604-c0895ff80dbd?api-version=2024-02-15-preview&t=638443148762560735&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Y_S59w5P3quRjG0oXuLaabN65OvIZTLOsEmQx1gkyF9MMWMe-CNRE3-zn-eGfdbH1W5PLE4E8s4XV9bLoCFzmk_gjExuA3jf_Vx-uFcRuNBgpntZOwlsDo0umPc_bMyjLeIcV71nJheADV7JY2MP7MVLiwlv2c4c5FumfmIvnEd93oLIWCj4AQ37fFs9FTiyAMvHP714cMkH2LwRINEIHg6UiNtBzFVXTPUfmqxhpF1TWOHeJpsbAFJtkguOniqHyNMREjDcJNGXQIIATlai3yvrWFpNgc_IeJiWGNw1xzSBaT7CtyTXnEq5ybxKdEO4rDM5bTr4e36QsOjMr5AmUg&h=QFid3phEB0MwIxnqOXlLMF8EXnXRUj0I9Xe_ENm33v8 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:54:36 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 3E94326B7B284B9BAE20A08B34A3F78E Ref B: BL2AA2030104019 Ref C: 2024-02-23T19:54:36Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n --restore-timestamp - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/6611805d-f791-4662-8604-c0895ff80dbd?api-version=2024-02-15-preview&t=638443148762560735&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Y_S59w5P3quRjG0oXuLaabN65OvIZTLOsEmQx1gkyF9MMWMe-CNRE3-zn-eGfdbH1W5PLE4E8s4XV9bLoCFzmk_gjExuA3jf_Vx-uFcRuNBgpntZOwlsDo0umPc_bMyjLeIcV71nJheADV7JY2MP7MVLiwlv2c4c5FumfmIvnEd93oLIWCj4AQ37fFs9FTiyAMvHP714cMkH2LwRINEIHg6UiNtBzFVXTPUfmqxhpF1TWOHeJpsbAFJtkguOniqHyNMREjDcJNGXQIIATlai3yvrWFpNgc_IeJiWGNw1xzSBaT7CtyTXnEq5ybxKdEO4rDM5bTr4e36QsOjMr5AmUg&h=QFid3phEB0MwIxnqOXlLMF8EXnXRUj0I9Xe_ENm33v8 - response: - body: - string: '{"status":"Failed","error":{"code":"BadRequest","message":"InAccount - restore of individual shared database collections is not supported. Please - restore shared database to restore its collections that shared the throughput.\r\nActivityId: - 5b787e5f-d285-11ee-a17c-6045bdd9660e, Microsoft.Azure.Documents.Common/2.14.0, - Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, - Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, - Microsoft.Azure.Documents.Common/2.14.0"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '523' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:55:06 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 007799C3945A4650A7DC3891434C6F10 Ref B: BL2AA2030104019 Ref C: 2024-02-23T19:55:06Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-04-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:55:07 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9E39E1F9BC74436D8FF8404D23CAAF2E Ref B: MNZ221060608049 Ref C: 2024-02-23T19:55:07Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0b425ae4-5eb0-40a3-a6a6-427c0bdd3b05?api-version=2023-04-15&t=638443149085477091&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LZ6NwQREnq1UYvsMQEMA5xLOu-TMMyeLyYOiM36QuMSfthwSttG7ecNrAcl0jiBls6V1Q0u2tGkc8smSd4guKACgDo90Mi321NP7ZtrzB9yFNE5QMC45FqoWJsApwaAGRkDimlvSKspQ1FVWEHmvG_e2aHJCl4B_PJBl8Pfb3dsAPVtN7csQHqN3K0AgHx58dyAkJxaloFrKNuNQ4BM0vFH1xyAGASHO7vQgduOS3yLMzvtOjZ6M1k5cmyc8WStNy-4PxbpnstzLLAkc0HKpguL_eywSIm_wZFVAPRorqbcAOvShnwy6MrudQfRNZHonMENSzqcnNEpJ8yBkTOfqtA&h=QQTMAqeRvnsKAgJYnp6N59Kr2JuxAv2kclWELnPUpZ8 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:55:08 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/0b425ae4-5eb0-40a3-a6a6-427c0bdd3b05?api-version=2023-04-15&t=638443149085633059&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NCzlLaVd6T3ROsg9jderOLhHm_rYTZbph6h1i6rscmpe0VRFP-GrSs1jULdN8giL9tKbr0F5Y2yA4Vg7N2hhhgp9Xc8EN5VoaQ-npF7ujlytZs4-FJI9dYP5gW0LuAa3CAz81QZK4TGS3Ltu5AuSnI9rX4bvgCcJxWNGTfncOfgkFMYjFX2tf8O3fQFvhFEtyxFG3THjujMY3hyyeVhJIvuMIDOM5iBVOypWVN96JffdZNJjtImCT9KR9g0cU12qT6ROVfjnhypyv5HQuawH5FnfdHrq3lU_UIc1XYX33WGffirFubIC1HD0o-ZsaG_fvz_8PqAVFrV269PiEeDnRw&h=91hyvlNIlM9WBXyLwfOOdryS_LnVzCygR0kIDmiXOAE - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: DCA89597B6E34BA793155F8568F0A494 Ref B: MNZ221060610045 Ref C: 2024-02-23T19:55:08Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0b425ae4-5eb0-40a3-a6a6-427c0bdd3b05?api-version=2023-04-15&t=638443149085477091&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LZ6NwQREnq1UYvsMQEMA5xLOu-TMMyeLyYOiM36QuMSfthwSttG7ecNrAcl0jiBls6V1Q0u2tGkc8smSd4guKACgDo90Mi321NP7ZtrzB9yFNE5QMC45FqoWJsApwaAGRkDimlvSKspQ1FVWEHmvG_e2aHJCl4B_PJBl8Pfb3dsAPVtN7csQHqN3K0AgHx58dyAkJxaloFrKNuNQ4BM0vFH1xyAGASHO7vQgduOS3yLMzvtOjZ6M1k5cmyc8WStNy-4PxbpnstzLLAkc0HKpguL_eywSIm_wZFVAPRorqbcAOvShnwy6MrudQfRNZHonMENSzqcnNEpJ8yBkTOfqtA&h=QQTMAqeRvnsKAgJYnp6N59Kr2JuxAv2kclWELnPUpZ8 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:55:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 8F066D7F419C43D3AE8A58F4EE979ABF Ref B: MNZ221060610045 Ref C: 2024-02-23T19:55:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0b425ae4-5eb0-40a3-a6a6-427c0bdd3b05?api-version=2023-04-15&t=638443149085477091&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LZ6NwQREnq1UYvsMQEMA5xLOu-TMMyeLyYOiM36QuMSfthwSttG7ecNrAcl0jiBls6V1Q0u2tGkc8smSd4guKACgDo90Mi321NP7ZtrzB9yFNE5QMC45FqoWJsApwaAGRkDimlvSKspQ1FVWEHmvG_e2aHJCl4B_PJBl8Pfb3dsAPVtN7csQHqN3K0AgHx58dyAkJxaloFrKNuNQ4BM0vFH1xyAGASHO7vQgduOS3yLMzvtOjZ6M1k5cmyc8WStNy-4PxbpnstzLLAkc0HKpguL_eywSIm_wZFVAPRorqbcAOvShnwy6MrudQfRNZHonMENSzqcnNEpJ8yBkTOfqtA&h=QQTMAqeRvnsKAgJYnp6N59Kr2JuxAv2kclWELnPUpZ8 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:55:38 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 8E8BDB0E6E2540089A2F0A3B4EA0B95E Ref B: MNZ221060610045 Ref C: 2024-02-23T19:55:38Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-04-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 19:55:39 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 6D6A166209F94CD88ABF20875C3114B4 Ref B: BL2AA2010201037 Ref C: 2024-02-23T19:55:39Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2024-02-15-preview - response: - body: - string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","oldestRestorableTime":"2024-02-23T19:47:10Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East - US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T00:34:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast - Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast - Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East - Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-01-24T20:04: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"}]}},{"name":"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-01-24T20:04: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"}]}},{"name":"afe6a47d-1fbd-41e1-992b-db16beeeae3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East - US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-16T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-01-24T20:04:01Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West - US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-01-24T20:04:03Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-16T20:04:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-01-24T20:04:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-01-24T20:04:00Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-17T01:28:01Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-16T20:04:00Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '266045' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 23 Feb 2024 20:04:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - x-msedge-ref: - - 'Ref A: FEE7F593FA5D485C941213C110509DB9 Ref B: BL2AA2030101045 Ref C: 2024-02-23T20:04:00Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15", - "restoreTimestampInUtc": "2024-02-23T19:48:57.135429Z", "restoreWithTtlDisabled": - true}, "createMode": "Restore"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - Content-Length: - - '376' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:04:05 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Wq6HkrO0IqzJNiHZFnjSwtuZJyBRM_WBqZCnqzFg__TOQ8AMTstY2ZCLY00Fp5h1HfO9UhUlvzGCHQ_xp7MutMAO8HDnkr9e9pSSIvfOURuUvTr40wotyD8NjBmnPXOk5L6mhtWetpJAXioj4aybrPVNATwo9GDhkLDxdgJXi-_Ddb0aH5GFiWM4SQOyAF0Ui1xInglGUDsrjf9hbgOmhDDqzgS7tjpx_LFfbPcmKeisUu3na6nRbAw4-HvDutjF4FQYyAFJf1ubIvkoniq21rT6j_zBozdbDddkABLAGrV2xhF2bzOSOmBhr1tMF_NqOJZSroZ4nekxEYnmgegAzQ&h=vDU3G2faW-KjOt47Xy3OyeZQkLrmErG5T_pHMSmtczY - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 413B1CB261674EFBBA10B9F4990B0BB9 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:04:04Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:04:05 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: DDACF887553F42BEA147D408D2D24FA6 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:04:05Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:04:35 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 1F4B031B34514733BF69D2528ED81ADD Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:04:35Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:05:05 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 00FFD48DC8E64661B94D4E803DD28307 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:05:06Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:05:36 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 94833FD097914C68AFBAF492147F3F87 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:05:36Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:06:06 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 94645BC0A3BB4A2786EF1A7B1ECAA1F1 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:06:06Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:06:36 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B5C5A4DD45A54A5DB14774F94255D82F Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:06:37Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:07:06 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: FD48F971F86E454B89CD4E604C13B1E3 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:07:07Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:07:37 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: FB8411BE505F44088683914C1514A0A2 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:07:37Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:08:07 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 61D2E6C72A974BF280BD04C9E0A42709 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:08:07Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:08:37 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: DFAADA3BC88345E19111FC395324483E Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:08:37Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:09:07 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 91E3DA933F81457FBD635C2C241A893E Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:09:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:09:38 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 53EA3C8BF48D44FABA6ADCA8B8A4A7D1 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:09:38Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:10:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 03F3C786F2F949BAB9926BA7649D3347 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:10:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:10:38 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 7CE564E0B00D4C1A9D2EBDD70517A556 Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:10:38Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/8a0c9dea-b8f6-44a2-9edd-2bb9c689f2e1?api-version=2024-02-15-preview&t=638443154456017052&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jN2lZRiGB_6zlQWViKBH86LWxLM-KhztZJUFbYzbaETXvtOsHcbkCbi1KClETeg3IuTqRoo4OBugVDVBcjWJoJK5qPmrqdUFVCSFUttS3ssCpC9GSYP4Tqn9YiAXhnukK4Bsp1m8x7ElMB7mAjg_jDHJEQOrsLtXFuupOFzsDKWPQg3FWPsbKXD55IRyFqo35wFV3kaU_fEabgtzxDZAXvbD4OjE-Gi8tzcf69Bx_3XWaVmZgMkjrQaBuX4oOYvaOjtxosyNXyU50R4nH7k5FCcFYgm8EaDP2GqeKhbvZHgGLfNCzwjzhN6n5YAQG3uOIZOFcqwph_w7qQju6NHmEQ&h=DRi3gbsCim9baHMmN-05uSNgjHry4XSi71vxx1cLAAY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 8D2CEAD7622F4EFC9B31A2BA5D94491A Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:11:09Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ZlVbAA==","_self":"dbs/ZlVbAA==/","_etag":"\"0000d906-0000-0600-0000-65d8fae20000\"","_colls":"colls/","_users":"users/","_ts":1708718818}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '478' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:09 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 28CF20B890B140629CBC2F3B0BAAB99F Ref B: BL2AA2010203025 Ref C: 2024-02-23T20:11:09Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ZlVbAA==","_self":"dbs/ZlVbAA==/","_etag":"\"0000d906-0000-0600-0000-65d8fae20000\"","_colls":"colls/","_users":"users/","_ts":1708718818}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '478' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:09 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: F2C8106370E544A68378C8304E254EBB Ref B: BL2AA2010205031 Ref C: 2024-02-23T20:11:10Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container list - Connection: - - keep-alive - ParameterSetName: - - -g -a -d - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-04-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"af2f8432-d286-11ee-87dd-6045bdd9660e","restoreTimestampInUtc":"2024-02-23T19:48:57.135429+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15"},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708718821,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000dd06-0000-0600-0000-65d8fae50000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1468' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:10 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 89080563A0AB42F68774AC381283C8B3 Ref B: MNZ221060608007 Ref C: 2024-02-23T20:11:10Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container show - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-04-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"af2f8432-d286-11ee-87dd-6045bdd9660e","restoreTimestampInUtc":"2024-02-23T19:48:57.135429+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15"},"geospatialConfig":{"type":"Geography"},"_rid":"ZlVbAIog4DI=","_ts":1708718821,"_self":"dbs/ZlVbAA==/colls/ZlVbAIog4DI=/","_etag":"\"0000dd06-0000-0600-0000-65d8fae50000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1571' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:10 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 554DCD5FDED445C0B835269A20E841BE Ref B: BL2AA2010202047 Ref C: 2024-02-23T20:11:11Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-04-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e4cc9b4-8166-4a8a-8be2-8afe4f802a87?api-version=2023-04-15&t=638443158723517498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SbS0J9FoUWblSU12FvCCQ0p_db5OlhB-GpNu7jj7onV7AfCfzggubtyAhg2KWqN8exfTl6ke2d3KPtyINhsrXlY9fqsV5Fps0vZW_YUS7cuZKZK_uELnnwghcIHNngi3qgv3ApHml4mPzYe83Xk0D4BsOy2kbdXRCxhRA0jmnoVkvOgDS9g7mG8T4hJxx4Vh2jCLc4IJRiASGY142aTnLdAmOR5mCNdFyyPAMDjIlMy_-YYanOA-mUBlNNPnuSyGniiDG3CAZ9zu7nOY5IFgyDTSW4HSIS72EebXBgMJfrNS9X3iKT6GKZztA3rFIFhU0HSAYhtFE6aGDkghYFz9jA&h=KTnriCyo9NTeg7dUkzvUnAzxu1lJta6CUF6yPKqU5qc - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:11 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/2e4cc9b4-8166-4a8a-8be2-8afe4f802a87?api-version=2023-04-15&t=638443158723673708&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I6wIogs1CTnN5p2Y5eSl48f4la3S1pn4VNw0XZG0RW__9bfZxOZaglKqLeeipKax5ix_98CbqgXz7tIQfVkqThhyygQrf4KjhTEnDQM7IvoAmuNs2g5Ouib_CwqG_SzQrKUT-bwORchamEc2HDh8vWNDdfTURfDVzaM-w7YX_XGZ1XS8tCeKIKvlv5o-ML71ISi6DUL9HJ2RPwLeD2HHHLUwWGjrxcPW5tpq3UdIx2tSgFxn8Qroqxk8dJwYZNoQrPtscLz2X0oPd7x7H8bjO_m-oIDwfVOwc7B-kWHvZPzBn7mZvNtgEv4qYWsBEQxDj8mc_DQsU9MaPoY2D8QRuA&h=v-zbjMBobsIIbt6bnjh5BsUTxj072dLxP-VqnOntWVY - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 62C84B43FB7A4E25B2D96C6C471F9169 Ref B: MNZ221060610033 Ref C: 2024-02-23T20:11:11Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e4cc9b4-8166-4a8a-8be2-8afe4f802a87?api-version=2023-04-15&t=638443158723517498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SbS0J9FoUWblSU12FvCCQ0p_db5OlhB-GpNu7jj7onV7AfCfzggubtyAhg2KWqN8exfTl6ke2d3KPtyINhsrXlY9fqsV5Fps0vZW_YUS7cuZKZK_uELnnwghcIHNngi3qgv3ApHml4mPzYe83Xk0D4BsOy2kbdXRCxhRA0jmnoVkvOgDS9g7mG8T4hJxx4Vh2jCLc4IJRiASGY142aTnLdAmOR5mCNdFyyPAMDjIlMy_-YYanOA-mUBlNNPnuSyGniiDG3CAZ9zu7nOY5IFgyDTSW4HSIS72EebXBgMJfrNS9X3iKT6GKZztA3rFIFhU0HSAYhtFE6aGDkghYFz9jA&h=KTnriCyo9NTeg7dUkzvUnAzxu1lJta6CUF6yPKqU5qc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:11 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: D46D5822CDDE4D04B5CA766CC5799095 Ref B: MNZ221060610033 Ref C: 2024-02-23T20:11:12Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e4cc9b4-8166-4a8a-8be2-8afe4f802a87?api-version=2023-04-15&t=638443158723517498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SbS0J9FoUWblSU12FvCCQ0p_db5OlhB-GpNu7jj7onV7AfCfzggubtyAhg2KWqN8exfTl6ke2d3KPtyINhsrXlY9fqsV5Fps0vZW_YUS7cuZKZK_uELnnwghcIHNngi3qgv3ApHml4mPzYe83Xk0D4BsOy2kbdXRCxhRA0jmnoVkvOgDS9g7mG8T4hJxx4Vh2jCLc4IJRiASGY142aTnLdAmOR5mCNdFyyPAMDjIlMy_-YYanOA-mUBlNNPnuSyGniiDG3CAZ9zu7nOY5IFgyDTSW4HSIS72EebXBgMJfrNS9X3iKT6GKZztA3rFIFhU0HSAYhtFE6aGDkghYFz9jA&h=KTnriCyo9NTeg7dUkzvUnAzxu1lJta6CUF6yPKqU5qc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:42 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 063F9EA097024139A5A97DD29E2EBB69 Ref B: MNZ221060610033 Ref C: 2024-02-23T20:11:42Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-04-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 20:11:43 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 91E357F7666A46DF947B398D51B96578 Ref B: BL2AA2030104051 Ref C: 2024-02-23T20:11:43Z' - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_system_identity_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_system_identity_restore.yaml deleted file mode 100644 index 153b00d8f91..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_system_identity_restore.yaml +++ /dev/null @@ -1,5419 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - identity create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001","name":"cli_test_cosmosdb_system_identity_restore000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_system_identity_restore","date":"2023-10-12T11:32:06Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '448' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - identity create - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005?api-version=2023-01-31 - response: - body: - string: '{"location":"eastus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","name":"user1-000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}' - headers: - cache-control: - - no-cache - content-length: - - '474' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:14 GMT - expires: - - '-1' - location: - - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - identity create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001","name":"cli_test_cosmosdb_system_identity_restore000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_system_identity_restore","date":"2023-10-12T11:32:06Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '448' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - identity create - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006?api-version=2023-01-31 - response: - body: - string: '{"location":"eastus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006","name":"user2-000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a7448cfa-a2a4-4818-9b30-4e772f701220","clientId":"5917fd32-b45a-45c9-a01b-cf0ff517fb6d"}}' - headers: - cache-control: - - no-cache - content-length: - - '474' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:19 GMT - expires: - - '-1' - location: - - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - ParameterSetName: - - --location --name --resource-group - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.KeyVault/vaults/clikeyvault-000007'' - under resource group ''cli_test_cosmosdb_system_identity_restore000001'' was - not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '263' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - ParameterSetName: - - --location --name --resource-group - User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.53.0 - method: GET - uri: https://graph.microsoft.com/v1.0/me - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity","businessPhones":[],"displayName":"Achint - Agrawal","givenName":"Achint","jobTitle":"SOFTWARE ENGINEER","mail":"acagrawal@microsoft.com","mobilePhone":null,"officeLocation":"BENGALURU-FERNS-MIRPL/Mobile","preferredLanguage":null,"surname":"Agrawal","userPrincipalName":"acagrawal@microsoft.com","id":"577b55da-07f9-4f25-b5c3-756d041fc028"}' - headers: - cache-control: - - no-cache - content-length: - - '415' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:22 GMT - odata-version: - - '4.0' - request-id: - - 465fcbf5-caeb-4017-8daa-c818a069d991 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"002","RoleInstance":"MA1PEPF0000251C"}}' - x-ms-resource-unit: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "577b55da-07f9-4f25-b5c3-756d041fc028", - "permissions": {"keys": ["all"], "secrets": ["all"], "certificates": ["all"], - "storage": ["all"]}}], "enableSoftDelete": true, "softDeleteRetentionInDays": - 90, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - Content-Length: - - '489' - Content-Type: - - application/json - ParameterSetName: - - --location --name --resource-group - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:32:24.504Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://clikeyvault-000007.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1026' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - ParameterSetName: - - --location --name --resource-group - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:32:24.504Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1027' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - ParameterSetName: - - --location --name --resource-group - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:32:24.504Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1022' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault update - Connection: - - keep-alive - ParameterSetName: - - --subscription -g -n --enable-purge-protection - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:32:24.504Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1022' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "577b55da-07f9-4f25-b5c3-756d041fc028", - "permissions": {"keys": ["all"], "secrets": ["all"], "certificates": ["all"], - "storage": ["all"]}}], "vaultUri": "https://clikeyvault-000007.vault.azure.net/", - "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": - 90, "enablePurgeProtection": true, "provisioningState": "Succeeded", "publicNetworkAccess": - "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault update - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - ParameterSetName: - - --subscription -g -n --enable-purge-protection - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:33:01.498Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1051' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - azsdk-python-keyvault-keys/4.8.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://clikeyvault-000007.vault.azure.net/keys/clikey-000008/create?api-version=7.4-preview.1 - response: - body: - string: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing - a Bearer or PoP token."}}' - headers: - cache-control: - - no-cache - content-length: - - '97' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000;includeSubDomains - www-authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", - resource="https://vault.azure.net" - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.238.3;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - eastus2 - x-ms-keyvault-service-version: - - 1.9.1018.1 - status: - code: 401 - message: Unauthorized -- request: - body: '{"kty": "RSA", "key_size": 3072, "attributes": {"enabled": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '65' - Content-Type: - - application/json - User-Agent: - - azsdk-python-keyvault-keys/4.8.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://clikeyvault-000007.vault.azure.net/keys/clikey-000008/create?api-version=7.4-preview.1 - response: - body: - string: '{"key":{"kid":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008/577221b6491c4eb29f2e3e05584dcc8a","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"1NB9PyU6XlTylEDQsmMMq8rvaZgXogENDtcuTg5SDm9-P6zM_wqP9I8tIl2jbCTFP3E9uyBvt-cgvnrkkP6feCrUjllw1GGPnI6vpBj5JKAVkbOhgfWfM8-qB2g-kFuyPwPlNJs_G_kK4R5HDgxNe7fWNV2O82ysz6-XpeQv-wt1rFWNQpaY9WiAhSsoKikm4Q-aNbi3_XQuDuL2tgYfnYM__tzMDvfyw1Rd3Ntm7pgThXmpwdosQLBwWrhHSbb0k1YrXuZC0_FkmnZRDe3fLodiYmI9ijLqB3ruIRxUsvxyi7ZZCrzQg8JSDqXF2o_oXxWZXuSpQPfIVcnX1mmv-vaBov3sNejYJTehJaCcJKrj-1t1HwcKpjFXw5j-1SXG4Kok2aUuZFDLuNoo9MIo-48JXEKHltZGMt_4TGzUjor7yN8_omE5igXTVpZOc7IbhgZn6DO3Zi3kOVwPXravVH2gzFbIVdpqVX83c--Y42InhsDqsPx9LUX62gUGP0Zx","e":"AQAB"},"attributes":{"enabled":true,"created":1697110384,"updated":1697110384,"recoveryLevel":"Recoverable","recoverableDays":90,"exportable":false}}' - headers: - cache-control: - - no-cache - content-length: - - '866' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000;includeSubDomains - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.238.3;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - eastus2 - x-ms-keyvault-service-version: - - 1.9.1018.1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault set-policy - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --object-id --key-permissions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:33:01.498Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1051' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "577b55da-07f9-4f25-b5c3-756d041fc028", - "permissions": {"keys": ["all"], "secrets": ["all"], "certificates": ["all"], - "storage": ["all"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": - "7a2d2685-314d-45a1-9e97-72f3c40e6e2f", "permissions": {"keys": ["wrapKey", - "unwrapKey", "get"]}}], "vaultUri": "https://clikeyvault-000007.vault.azure.net/", - "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": - 90, "enablePurgeProtection": true, "provisioningState": "Succeeded", "publicNetworkAccess": - "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault set-policy - Connection: - - keep-alive - Content-Length: - - '784' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --object-id --key-permissions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:33:07.006Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","permissions":{"keys":["wrapKey","unwrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1206' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault set-policy - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --object-id --key-permissions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:33:07.006Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","permissions":{"keys":["wrapKey","unwrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1206' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "577b55da-07f9-4f25-b5c3-756d041fc028", - "permissions": {"keys": ["all"], "secrets": ["all"], "certificates": ["all"], - "storage": ["all"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": - "7a2d2685-314d-45a1-9e97-72f3c40e6e2f", "permissions": {"keys": ["wrapKey", - "unwrapKey", "get"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "objectId": "a7448cfa-a2a4-4818-9b30-4e772f701220", "permissions": {"keys": - ["wrapKey", "unwrapKey", "get"]}}], "vaultUri": "https://clikeyvault-000007.vault.azure.net/", - "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": - 90, "enablePurgeProtection": true, "provisioningState": "Succeeded", "publicNetworkAccess": - "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault set-policy - Connection: - - keep-alive - Content-Length: - - '948' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --object-id --key-permissions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:33:09.628Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","permissions":{"keys":["wrapKey","unwrapKey","get"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"a7448cfa-a2a4-4818-9b30-4e772f701220","permissions":{"keys":["wrapKey","unwrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1361' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001","name":"cli_test_cosmosdb_system_identity_restore000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_system_identity_restore","date":"2023-10-12T11:32:06Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '448' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:33:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005": - {}}}, "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": - "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard", "keyVaultKeyUri": "https://clikeyvault-000007.vault.azure.net/keys/clikey-000008", - "defaultIdentity": "UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005", - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '917' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:33:16.0490676Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:33:16.0490676Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:33:16.0490676Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:16.0490676Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:16.0490676Z"}}},"identity":{"type":"UserAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{}}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview&t=638327071976595880&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rRnF2_9dmeVnbj1enO2PL8ro64i37s_0TfnnH9_xJZtvruMTfB5KvQGUzJgZr8k_MqSKQ8kAafnn6B9m8e4tBIk3rVO_OjNvmhsEbP_JaDzJCAGUdvgtsYcfzQxGLERKhmp0I1uMne0E_KZ9HRGzCCPuPZs6ZOYJcYV5IDRv_AbSCkV849GfB05pek7x687rbOiwoT4yuxkf0CbH8iq-H6KOAGBmDFpjRhbFZXXZ0K1H8_e15Ag6DAyV4sOyD79iM4j99RLTlxwS7kv65uIE3wJjqx76LT9mKkzF_2ibpFdI56Yvk3qPO_OMksskrGwm9cGQqidEwoitSyULn3XWPg&h=IPbK8wts7N4E8NYZZER_EYlLZflTZMXx8ai_VVM1nac - cache-control: - - no-store, no-cache - content-length: - - '3160' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:17 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/operationResults/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview&t=638327071976595880&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rRnF2_9dmeVnbj1enO2PL8ro64i37s_0TfnnH9_xJZtvruMTfB5KvQGUzJgZr8k_MqSKQ8kAafnn6B9m8e4tBIk3rVO_OjNvmhsEbP_JaDzJCAGUdvgtsYcfzQxGLERKhmp0I1uMne0E_KZ9HRGzCCPuPZs6ZOYJcYV5IDRv_AbSCkV849GfB05pek7x687rbOiwoT4yuxkf0CbH8iq-H6KOAGBmDFpjRhbFZXXZ0K1H8_e15Ag6DAyV4sOyD79iM4j99RLTlxwS7kv65uIE3wJjqx76LT9mKkzF_2ibpFdI56Yvk3qPO_OMksskrGwm9cGQqidEwoitSyULn3XWPg&h=IPbK8wts7N4E8NYZZER_EYlLZflTZMXx8ai_VVM1nac - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview&t=638327071976595880&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rRnF2_9dmeVnbj1enO2PL8ro64i37s_0TfnnH9_xJZtvruMTfB5KvQGUzJgZr8k_MqSKQ8kAafnn6B9m8e4tBIk3rVO_OjNvmhsEbP_JaDzJCAGUdvgtsYcfzQxGLERKhmp0I1uMne0E_KZ9HRGzCCPuPZs6ZOYJcYV5IDRv_AbSCkV849GfB05pek7x687rbOiwoT4yuxkf0CbH8iq-H6KOAGBmDFpjRhbFZXXZ0K1H8_e15Ag6DAyV4sOyD79iM4j99RLTlxwS7kv65uIE3wJjqx76LT9mKkzF_2ibpFdI56Yvk3qPO_OMksskrGwm9cGQqidEwoitSyULn3XWPg&h=IPbK8wts7N4E8NYZZER_EYlLZflTZMXx8ai_VVM1nac - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview&t=638327071976595880&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rRnF2_9dmeVnbj1enO2PL8ro64i37s_0TfnnH9_xJZtvruMTfB5KvQGUzJgZr8k_MqSKQ8kAafnn6B9m8e4tBIk3rVO_OjNvmhsEbP_JaDzJCAGUdvgtsYcfzQxGLERKhmp0I1uMne0E_KZ9HRGzCCPuPZs6ZOYJcYV5IDRv_AbSCkV849GfB05pek7x687rbOiwoT4yuxkf0CbH8iq-H6KOAGBmDFpjRhbFZXXZ0K1H8_e15Ag6DAyV4sOyD79iM4j99RLTlxwS7kv65uIE3wJjqx76LT9mKkzF_2ibpFdI56Yvk3qPO_OMksskrGwm9cGQqidEwoitSyULn3XWPg&h=IPbK8wts7N4E8NYZZER_EYlLZflTZMXx8ai_VVM1nac - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview&t=638327071976595880&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rRnF2_9dmeVnbj1enO2PL8ro64i37s_0TfnnH9_xJZtvruMTfB5KvQGUzJgZr8k_MqSKQ8kAafnn6B9m8e4tBIk3rVO_OjNvmhsEbP_JaDzJCAGUdvgtsYcfzQxGLERKhmp0I1uMne0E_KZ9HRGzCCPuPZs6ZOYJcYV5IDRv_AbSCkV849GfB05pek7x687rbOiwoT4yuxkf0CbH8iq-H6KOAGBmDFpjRhbFZXXZ0K1H8_e15Ag6DAyV4sOyD79iM4j99RLTlxwS7kv65uIE3wJjqx76LT9mKkzF_2ibpFdI56Yvk3qPO_OMksskrGwm9cGQqidEwoitSyULn3XWPg&h=IPbK8wts7N4E8NYZZER_EYlLZflTZMXx8ai_VVM1nac - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview&t=638327071976595880&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rRnF2_9dmeVnbj1enO2PL8ro64i37s_0TfnnH9_xJZtvruMTfB5KvQGUzJgZr8k_MqSKQ8kAafnn6B9m8e4tBIk3rVO_OjNvmhsEbP_JaDzJCAGUdvgtsYcfzQxGLERKhmp0I1uMne0E_KZ9HRGzCCPuPZs6ZOYJcYV5IDRv_AbSCkV849GfB05pek7x687rbOiwoT4yuxkf0CbH8iq-H6KOAGBmDFpjRhbFZXXZ0K1H8_e15Ag6DAyV4sOyD79iM4j99RLTlxwS7kv65uIE3wJjqx76LT9mKkzF_2ibpFdI56Yvk3qPO_OMksskrGwm9cGQqidEwoitSyULn3XWPg&h=IPbK8wts7N4E8NYZZER_EYlLZflTZMXx8ai_VVM1nac - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview&t=638327071976595880&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rRnF2_9dmeVnbj1enO2PL8ro64i37s_0TfnnH9_xJZtvruMTfB5KvQGUzJgZr8k_MqSKQ8kAafnn6B9m8e4tBIk3rVO_OjNvmhsEbP_JaDzJCAGUdvgtsYcfzQxGLERKhmp0I1uMne0E_KZ9HRGzCCPuPZs6ZOYJcYV5IDRv_AbSCkV849GfB05pek7x687rbOiwoT4yuxkf0CbH8iq-H6KOAGBmDFpjRhbFZXXZ0K1H8_e15Ag6DAyV4sOyD79iM4j99RLTlxwS7kv65uIE3wJjqx76LT9mKkzF_2ibpFdI56Yvk3qPO_OMksskrGwm9cGQqidEwoitSyULn3XWPg&h=IPbK8wts7N4E8NYZZER_EYlLZflTZMXx8ai_VVM1nac - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f687b324-4c74-43d8-b328-e7ae8f3adf4f?api-version=2023-09-15-preview&t=638327071976595880&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rRnF2_9dmeVnbj1enO2PL8ro64i37s_0TfnnH9_xJZtvruMTfB5KvQGUzJgZr8k_MqSKQ8kAafnn6B9m8e4tBIk3rVO_OjNvmhsEbP_JaDzJCAGUdvgtsYcfzQxGLERKhmp0I1uMne0E_KZ9HRGzCCPuPZs6ZOYJcYV5IDRv_AbSCkV849GfB05pek7x687rbOiwoT4yuxkf0CbH8iq-H6KOAGBmDFpjRhbFZXXZ0K1H8_e15Ag6DAyV4sOyD79iM4j99RLTlxwS7kv65uIE3wJjqx76LT9mKkzF_2ibpFdI56Yvk3qPO_OMksskrGwm9cGQqidEwoitSyULn3XWPg&h=IPbK8wts7N4E8NYZZER_EYlLZflTZMXx8ai_VVM1nac - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"}}},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3600' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --key-uri --assign-identity - --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"}}},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3600' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"}}},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3600' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000004"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/sqlDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/24b01a96-6f85-4b51-8258-88d389bb73ec?api-version=2023-09-15&t=638327073845400582&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XhkKegqWA1iXm0d-Lxsn0goK7BbbPwzvByh4tsOjBrcF2uZnq5_diAdB1DYqLVacI8tsC6lr5Iw8UVN9cK0MckbB-NNp3tso1U0AtNp5AecD_zR2VvT2rPVYWW6p3r79iRTlPRzEzTMRSlUPHlvGBwCToPIIDPKkp2x2xHJ1crU5CyzEVDvAjtNv0M53kLQt-Vg-PggW0MKYpnEmxQR30QKozxyFbko2_CuLqH84u5QYG8QO9NWglPjAA1Sf-s9WO8uQYVdWaSCZTLF9HGTAfhj0w9eJjAjI6Eehm6F7xfLWfW5QOrIBrDrz7p6xwcSeOP0CZOs62Bs0G4sGCrHPBg&h=7k7YDmxc2ch31HXXnF_O05gP76LBfCmIt0JnL5Y5gDk - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:23 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/sqlDatabases/cli000004/operationResults/24b01a96-6f85-4b51-8258-88d389bb73ec?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/24b01a96-6f85-4b51-8258-88d389bb73ec?api-version=2023-09-15&t=638327073845400582&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XhkKegqWA1iXm0d-Lxsn0goK7BbbPwzvByh4tsOjBrcF2uZnq5_diAdB1DYqLVacI8tsC6lr5Iw8UVN9cK0MckbB-NNp3tso1U0AtNp5AecD_zR2VvT2rPVYWW6p3r79iRTlPRzEzTMRSlUPHlvGBwCToPIIDPKkp2x2xHJ1crU5CyzEVDvAjtNv0M53kLQt-Vg-PggW0MKYpnEmxQR30QKozxyFbko2_CuLqH84u5QYG8QO9NWglPjAA1Sf-s9WO8uQYVdWaSCZTLF9HGTAfhj0w9eJjAjI6Eehm6F7xfLWfW5QOrIBrDrz7p6xwcSeOP0CZOs62Bs0G4sGCrHPBg&h=7k7YDmxc2ch31HXXnF_O05gP76LBfCmIt0JnL5Y5gDk - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/24b01a96-6f85-4b51-8258-88d389bb73ec?api-version=2023-09-15&t=638327073845400582&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XhkKegqWA1iXm0d-Lxsn0goK7BbbPwzvByh4tsOjBrcF2uZnq5_diAdB1DYqLVacI8tsC6lr5Iw8UVN9cK0MckbB-NNp3tso1U0AtNp5AecD_zR2VvT2rPVYWW6p3r79iRTlPRzEzTMRSlUPHlvGBwCToPIIDPKkp2x2xHJ1crU5CyzEVDvAjtNv0M53kLQt-Vg-PggW0MKYpnEmxQR30QKozxyFbko2_CuLqH84u5QYG8QO9NWglPjAA1Sf-s9WO8uQYVdWaSCZTLF9HGTAfhj0w9eJjAjI6Eehm6F7xfLWfW5QOrIBrDrz7p6xwcSeOP0CZOs62Bs0G4sGCrHPBg&h=7k7YDmxc2ch31HXXnF_O05gP76LBfCmIt0JnL5Y5gDk - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/sqlDatabases/cli000004?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/sqlDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"AvsMAA==","_self":"dbs/AvsMAA==/","_etag":"\"00005901-0000-0200-0000-6527da3d0000\"","_colls":"colls/","_users":"users/","_ts":1697110589}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '484' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '265' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/sqlDatabases/cli000004/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8ce2f5ad-165c-4e26-9aac-cdc5d05385db?api-version=2023-09-15-preview&t=638327074177952644&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=N_OK4magKMniR6rGk7cLFkPOCDiWnGRnzKpZCrtsuFz8_tOR7NJPBrjakr9M7A-i0ETHSmETwRbizBFaFv5pdnJ8auNzrsFTVYczpJTD1ZyCmHC1I0BEY3BNF0J-H8Mch-o1BMHqNZOHbqd3tO3QiuEYEZngYiGSbCcoxK4SWvFdvr4kISB1T0-OuNTKZATWGZcFEPASJ06NPsnxkoRQdqLB2RQbOrk-SO7s2tX5NZYqPLhmCpMYNxdoszMuKTBXaTMCOQSjF0mt1V54sLGs7ZXeCE6QwHJXeJGreqzUiXWGkMYls0d_r7lOpILU6R8tzBwYwFjz7VVFEuckDyI3GA&h=6wF-RZHKp4iMtkP-etrjFoFF-dfn8iXJwjNT5rU79xI - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:57 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/sqlDatabases/cli000004/containers/cli000003/operationResults/8ce2f5ad-165c-4e26-9aac-cdc5d05385db?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8ce2f5ad-165c-4e26-9aac-cdc5d05385db?api-version=2023-09-15-preview&t=638327074177952644&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=N_OK4magKMniR6rGk7cLFkPOCDiWnGRnzKpZCrtsuFz8_tOR7NJPBrjakr9M7A-i0ETHSmETwRbizBFaFv5pdnJ8auNzrsFTVYczpJTD1ZyCmHC1I0BEY3BNF0J-H8Mch-o1BMHqNZOHbqd3tO3QiuEYEZngYiGSbCcoxK4SWvFdvr4kISB1T0-OuNTKZATWGZcFEPASJ06NPsnxkoRQdqLB2RQbOrk-SO7s2tX5NZYqPLhmCpMYNxdoszMuKTBXaTMCOQSjF0mt1V54sLGs7ZXeCE6QwHJXeJGreqzUiXWGkMYls0d_r7lOpILU6R8tzBwYwFjz7VVFEuckDyI3GA&h=6wF-RZHKp4iMtkP-etrjFoFF-dfn8iXJwjNT5rU79xI - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8ce2f5ad-165c-4e26-9aac-cdc5d05385db?api-version=2023-09-15-preview&t=638327074177952644&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=N_OK4magKMniR6rGk7cLFkPOCDiWnGRnzKpZCrtsuFz8_tOR7NJPBrjakr9M7A-i0ETHSmETwRbizBFaFv5pdnJ8auNzrsFTVYczpJTD1ZyCmHC1I0BEY3BNF0J-H8Mch-o1BMHqNZOHbqd3tO3QiuEYEZngYiGSbCcoxK4SWvFdvr4kISB1T0-OuNTKZATWGZcFEPASJ06NPsnxkoRQdqLB2RQbOrk-SO7s2tX5NZYqPLhmCpMYNxdoszMuKTBXaTMCOQSjF0mt1V54sLGs7ZXeCE6QwHJXeJGreqzUiXWGkMYls0d_r7lOpILU6R8tzBwYwFjz7VVFEuckDyI3GA&h=6wF-RZHKp4iMtkP-etrjFoFF-dfn8iXJwjNT5rU79xI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/sqlDatabases/cli000004/containers/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/sqlDatabases/cli000004/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"AvsMAP05i4c=","_ts":1697110624,"_self":"dbs/AvsMAA==/colls/AvsMAP05i4c=/","_etag":"\"00005c01-0000-0200-0000-6527da600000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1147' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"}}},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3446' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"identity": {"type": "SystemAssigned,UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005": - {}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - Content-Length: - - '275' - Content-Type: - - application/json - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188Z"}}},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/25b1dcda-fdc7-45e1-b03d-bc072bcf40f2?api-version=2023-09-15&t=638327074558758817&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=tlwm_Rc9XN1LYQIRO4g_OpjTDBJSavN2ISRFn1S69FpTrFgz38Rgt_y9_RJU8TC9jaI2eq8x1uzpBjQlpF8tVvOUWAMkB9JwSiI8piZehXQn0rfO2rfX9mpBrlO5bC39ek2c7HEmp8c2n-gHimwl5EopYJCj_NahDxSjKiUQd1QFfAUDt6S92AsKMb3LftDhbyFdYTg7pNcNhQysQzfoGGzcUMFjB8KaVQJ4QvPbHZhWlV9mClKc7JrEJfrumkVCeCsCYtvMe4mqPxYFd_aoDprgOZmR9d8DBfTarEYEbCJAZULof4g8SlRRNQFxVneHIes6wrj8FKen43e62A2Xjg&h=OeWp1190Xqo9-nbklHUJM4hMqImzKagBY8c2xQWR9SM - cache-control: - - no-store, no-cache - content-length: - - '3445' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/operationResults/25b1dcda-fdc7-45e1-b03d-bc072bcf40f2?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/25b1dcda-fdc7-45e1-b03d-bc072bcf40f2?api-version=2023-09-15&t=638327074558758817&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=tlwm_Rc9XN1LYQIRO4g_OpjTDBJSavN2ISRFn1S69FpTrFgz38Rgt_y9_RJU8TC9jaI2eq8x1uzpBjQlpF8tVvOUWAMkB9JwSiI8piZehXQn0rfO2rfX9mpBrlO5bC39ek2c7HEmp8c2n-gHimwl5EopYJCj_NahDxSjKiUQd1QFfAUDt6S92AsKMb3LftDhbyFdYTg7pNcNhQysQzfoGGzcUMFjB8KaVQJ4QvPbHZhWlV9mClKc7JrEJfrumkVCeCsCYtvMe4mqPxYFd_aoDprgOZmR9d8DBfTarEYEbCJAZULof4g8SlRRNQFxVneHIes6wrj8FKen43e62A2Xjg&h=OeWp1190Xqo9-nbklHUJM4hMqImzKagBY8c2xQWR9SM - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:37:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/25b1dcda-fdc7-45e1-b03d-bc072bcf40f2?api-version=2023-09-15&t=638327074558758817&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=tlwm_Rc9XN1LYQIRO4g_OpjTDBJSavN2ISRFn1S69FpTrFgz38Rgt_y9_RJU8TC9jaI2eq8x1uzpBjQlpF8tVvOUWAMkB9JwSiI8piZehXQn0rfO2rfX9mpBrlO5bC39ek2c7HEmp8c2n-gHimwl5EopYJCj_NahDxSjKiUQd1QFfAUDt6S92AsKMb3LftDhbyFdYTg7pNcNhQysQzfoGGzcUMFjB8KaVQJ4QvPbHZhWlV9mClKc7JrEJfrumkVCeCsCYtvMe4mqPxYFd_aoDprgOZmR9d8DBfTarEYEbCJAZULof4g8SlRRNQFxVneHIes6wrj8FKen43e62A2Xjg&h=OeWp1190Xqo9-nbklHUJM4hMqImzKagBY8c2xQWR9SM - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/25b1dcda-fdc7-45e1-b03d-bc072bcf40f2?api-version=2023-09-15&t=638327074558758817&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=tlwm_Rc9XN1LYQIRO4g_OpjTDBJSavN2ISRFn1S69FpTrFgz38Rgt_y9_RJU8TC9jaI2eq8x1uzpBjQlpF8tVvOUWAMkB9JwSiI8piZehXQn0rfO2rfX9mpBrlO5bC39ek2c7HEmp8c2n-gHimwl5EopYJCj_NahDxSjKiUQd1QFfAUDt6S92AsKMb3LftDhbyFdYTg7pNcNhQysQzfoGGzcUMFjB8KaVQJ4QvPbHZhWlV9mClKc7JrEJfrumkVCeCsCYtvMe4mqPxYFd_aoDprgOZmR9d8DBfTarEYEbCJAZULof4g8SlRRNQFxVneHIes6wrj8FKen43e62A2Xjg&h=OeWp1190Xqo9-nbklHUJM4hMqImzKagBY8c2xQWR9SM - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"}}},"identity":{"type":"SystemAssigned,UserAssigned","principalId":"e67dbafc-4199-4eff-9973-1758fb3c07d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3589' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault set-policy - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --object-id --key-permissions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:33:09.628Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","permissions":{"keys":["wrapKey","unwrapKey","get"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"a7448cfa-a2a4-4818-9b30-4e772f701220","permissions":{"keys":["wrapKey","unwrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1361' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:38:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "577b55da-07f9-4f25-b5c3-756d041fc028", - "permissions": {"keys": ["all"], "secrets": ["all"], "certificates": ["all"], - "storage": ["all"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": - "7a2d2685-314d-45a1-9e97-72f3c40e6e2f", "permissions": {"keys": ["wrapKey", - "unwrapKey", "get"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "objectId": "a7448cfa-a2a4-4818-9b30-4e772f701220", "permissions": {"keys": - ["wrapKey", "unwrapKey", "get"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "objectId": "e67dbafc-4199-4eff-9973-1758fb3c07d1", "permissions": {"keys": - ["wrapKey", "unwrapKey", "get"]}}], "vaultUri": "https://clikeyvault-000007.vault.azure.net/", - "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": - 90, "enablePurgeProtection": true, "provisioningState": "Succeeded", "publicNetworkAccess": - "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault set-policy - Connection: - - keep-alive - Content-Length: - - '1112' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --object-id --key-permissions - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-keyvault/10.2.3 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.KeyVault/vaults/clikeyvault-000007","name":"clikeyvault-000007","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:32:24.504Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:38:39.312Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"577b55da-07f9-4f25-b5c3-756d041fc028","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","permissions":{"keys":["wrapKey","unwrapKey","get"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"a7448cfa-a2a4-4818-9b30-4e772f701220","permissions":{"keys":["wrapKey","unwrapKey","get"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"e67dbafc-4199-4eff-9973-1758fb3c07d1","permissions":{"keys":["wrapKey","unwrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clikeyvault-000007.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1516' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:38:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.945.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"}}},"identity":{"type":"SystemAssigned,UserAssigned","principalId":"e67dbafc-4199-4eff-9973-1758fb3c07d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3743' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"defaultIdentity": "SystemAssignedIdentity", "apiProperties": - {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"}}},"identity":{"type":"SystemAssigned,UserAssigned","principalId":"e67dbafc-4199-4eff-9973-1758fb3c07d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/622e2727-a197-4999-9739-3de61bca9237?api-version=2023-09-15-preview&t=638327075275264781&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=toMV1rkFxBbqQrsq5mQ0pPv9qlITIkepC--pxMsKWSQoJfv8Nsj5HzUkDqFJyjzNLxNjAU20yMv9DDsgfdNCRQC_6f3UHgRFmYrLOHdMRoOAMq7H8-yCcckxuEftdGWVJu5rDuWsUpBc22smIVWI1DrwvCWGwqIltB7jMkv7C6E7KTyU8xCsPJvtfWfG0lxzqfpPD7mg8e6zPDUOtXW6rHwKfpPFGOpPjiSUIHORgn1gA0Bip_Cd-hBDbO3K3hHamQj8iP0gosWfOFgVm00LgsD1Rh54Mqqotug1AY7-T4l9mZXrZtOmRqnVVu3TxCgxJFY8oQg-RbmT8r8p1JG69w&h=WkW_5cLhZiHLWzRM7LVGLMAyou2GbTjTJUEeP_5Mhfs - cache-control: - - no-store, no-cache - content-length: - - '3742' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:46 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002/operationResults/622e2727-a197-4999-9739-3de61bca9237?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/622e2727-a197-4999-9739-3de61bca9237?api-version=2023-09-15-preview&t=638327075275264781&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=toMV1rkFxBbqQrsq5mQ0pPv9qlITIkepC--pxMsKWSQoJfv8Nsj5HzUkDqFJyjzNLxNjAU20yMv9DDsgfdNCRQC_6f3UHgRFmYrLOHdMRoOAMq7H8-yCcckxuEftdGWVJu5rDuWsUpBc22smIVWI1DrwvCWGwqIltB7jMkv7C6E7KTyU8xCsPJvtfWfG0lxzqfpPD7mg8e6zPDUOtXW6rHwKfpPFGOpPjiSUIHORgn1gA0Bip_Cd-hBDbO3K3hHamQj8iP0gosWfOFgVm00LgsD1Rh54Mqqotug1AY7-T4l9mZXrZtOmRqnVVu3TxCgxJFY8oQg-RbmT8r8p1JG69w&h=WkW_5cLhZiHLWzRM7LVGLMAyou2GbTjTJUEeP_5Mhfs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:38:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/622e2727-a197-4999-9739-3de61bca9237?api-version=2023-09-15-preview&t=638327075275264781&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=toMV1rkFxBbqQrsq5mQ0pPv9qlITIkepC--pxMsKWSQoJfv8Nsj5HzUkDqFJyjzNLxNjAU20yMv9DDsgfdNCRQC_6f3UHgRFmYrLOHdMRoOAMq7H8-yCcckxuEftdGWVJu5rDuWsUpBc22smIVWI1DrwvCWGwqIltB7jMkv7C6E7KTyU8xCsPJvtfWfG0lxzqfpPD7mg8e6zPDUOtXW6rHwKfpPFGOpPjiSUIHORgn1gA0Bip_Cd-hBDbO3K3hHamQj8iP0gosWfOFgVm00LgsD1Rh54Mqqotug1AY7-T4l9mZXrZtOmRqnVVu3TxCgxJFY8oQg-RbmT8r8p1JG69w&h=WkW_5cLhZiHLWzRM7LVGLMAyou2GbTjTJUEeP_5Mhfs - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/622e2727-a197-4999-9739-3de61bca9237?api-version=2023-09-15-preview&t=638327075275264781&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=toMV1rkFxBbqQrsq5mQ0pPv9qlITIkepC--pxMsKWSQoJfv8Nsj5HzUkDqFJyjzNLxNjAU20yMv9DDsgfdNCRQC_6f3UHgRFmYrLOHdMRoOAMq7H8-yCcckxuEftdGWVJu5rDuWsUpBc22smIVWI1DrwvCWGwqIltB7jMkv7C6E7KTyU8xCsPJvtfWfG0lxzqfpPD7mg8e6zPDUOtXW6rHwKfpPFGOpPjiSUIHORgn1gA0Bip_Cd-hBDbO3K3hHamQj8iP0gosWfOFgVm00LgsD1Rh54Mqqotug1AY7-T4l9mZXrZtOmRqnVVu3TxCgxJFY8oQg-RbmT8r8p1JG69w&h=WkW_5cLhZiHLWzRM7LVGLMAyou2GbTjTJUEeP_5Mhfs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"}}},"identity":{"type":"SystemAssigned,UserAssigned","principalId":"e67dbafc-4199-4eff-9973-1758fb3c07d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3558' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb update - Connection: - - keep-alive - ParameterSetName: - - -n -g --default-identity - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002","name":"cli-systemid-000002","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:18.014188+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e6e632df-b394-4723-bc99-c0bba3b1d9db","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"SystemAssignedIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:18.014188+00:00"}}},"identity":{"type":"SystemAssigned,UserAssigned","principalId":"e67dbafc-4199-4eff-9973-1758fb3c07d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user1-000005":{"principalId":"7a2d2685-314d-45a1-9e97-72f3c40e6e2f","clientId":"641e92fa-2b60-418b-9a60-0da6b81e55c8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3558' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account show - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db?api-version=2023-09-15-preview - response: - body: - string: '{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East US - 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-000002","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","oldestRestorableTime":"2023-10-12T11:35:19+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '636' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:39:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:43:52Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:43:52Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:43:52Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:43:52Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","oldestRestorableTime":"2023-10-12T11:35:17Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","oldestRestorableTime":"2023-10-12T11:35:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:43:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:43:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-000002","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","oldestRestorableTime":"2023-10-12T11:35:19+00:00","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z","deletionTime":"2023-10-12T11:30:47Z"}]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1b0b8cd9-a889-4c9b-b889-7bd093310e25","creationTime":"2023-10-12T11:25:54Z","deletionTime":"2023-10-12T11:30:56Z"}]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ed392ee-a218-46d0-82d0-8fadee0ba43b","creationTime":"2023-10-12T11:30:28Z","deletionTime":"2023-10-12T11:33:27Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"660c29e5-8d7d-496d-84c7-50e7c655fae1","creationTime":"2023-10-12T11:31:23Z","deletionTime":"2023-10-12T11:34:15Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:43:53Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:43:54Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '297993' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:43:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db/restorableSqlResources?api-version=2023-09-15&restoreLocation=eastus2&restoreTimestampInUtc=2023-10-12%2011%3A39%3A19%2B00%3A00 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db/restorableSqlResources/cli000004","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlResources","name":"cli000004","databaseName":"cli000004","collectionNames":["cli000003"]}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '386' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "East US 2", "identity": {"type": "UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006": - {}}}, "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": - "eastus2", "failoverPriority": 0}], "databaseAccountOfferType": "Standard", - "defaultIdentity": "UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006", - "publicNetworkAccess": "Disabled", "apiProperties": {}, "createMode": "Restore", - "restoreParameters": {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db", - "restoreTimestampInUtc": "2023-10-12T11:39:19.000Z", "restoreMode": "PointInTime"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - Content-Length: - - '1038' - Content-Type: - - application/json - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored","name":"cli-systemid-000002-restored","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:44:04.7797086Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"c1057e27-eecf-43b6-856b-e588940f78af","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","restoreTimestampInUtc":"2023-10-12T11:39:19Z","sourceBackupLocation":"East - US 2","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:44:04.7797086Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:44:04.7797086Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:44:04.7797086Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:44:04.7797086Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - cache-control: - - no-store, no-cache - content-length: - - '3145' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:07 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored/operationResults/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/910adf7d-2c51-4ef7-93bb-76bfcbe2d2ff?api-version=2023-09-15-preview&t=638327078469912947&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=jqroNt-F_rg9P6CDf5BXNXiFZ4OJuJcn5rlx6S6s4bUsDVgUB4u8cFnvhjGEgj9SGX8ySUgiED4S64CmRwN9Qb5FR5tNbeAP85X1HsM1t_AZDjg73ix_9y0wX0hvexi-fvnfjRicaDVaiarIKszEFXZ64kzPtzzvEng1IUvD4rjsJRLq_Kp9D55a5rxBI4qPUoYldJ872-9OWo6FSsR77RkNH5aqcYthMrrilKfISuxrOz_k72mODfIgkOtl2WICePZRHwX4GgWJ4n7j0uGr5P23gPIcfCZdQmYV1KRz03yRZ1mhu3r1J12POMcBJjEiYgjHBaiTqyWVKNsANfJrvQ&h=FYw2eHXDmsMgZMpWhkddP51jNoJ6u-NYjl5gcMmJUDc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored","name":"cli-systemid-000002-restored","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:57:08.4121296Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002-restored.documents.azure.com:443/","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"c1057e27-eecf-43b6-856b-e588940f78af","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","restoreTimestampInUtc":"2023-10-12T11:39:19Z","sourceBackupLocation":"East - US 2","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"}}},"identity":{"type":"UserAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006":{"principalId":"a7448cfa-a2a4-4818-9b30-4e772f701220","clientId":"5917fd32-b45a-45c9-a01b-cf0ff517fb6d"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '4085' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --assign-identity --default-identity - --enable-public-network - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored","name":"cli-systemid-000002-restored","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:57:08.4121296Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002-restored.documents.azure.com:443/","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"c1057e27-eecf-43b6-856b-e588940f78af","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","restoreTimestampInUtc":"2023-10-12T11:39:19Z","sourceBackupLocation":"East - US 2","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"}}},"identity":{"type":"UserAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006":{"principalId":"a7448cfa-a2a4-4818-9b30-4e772f701220","clientId":"5917fd32-b45a-45c9-a01b-cf0ff517fb6d"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '4085' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-systemid-000002-restored","name":"cli-systemid-000002-restored","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:57:08.4121296Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-systemid-000002-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-systemid-000002-restored.documents.azure.com:443/","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"c1057e27-eecf-43b6-856b-e588940f78af","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"keyVaultKeyUri":"https://clikeyvault-000007.vault.azure.net/keys/clikey-000008","defaultIdentity":"UserAssignedIdentity=/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","customerManagedKeyStatus":"Access - to the configured customer managed key confirmed. ","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli-systemid-000002-restored-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-systemid-000002-restored-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","restoreTimestampInUtc":"2023-10-12T11:39:19Z","sourceBackupLocation":"East - US 2","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:08.4121296Z"}}},"identity":{"type":"UserAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_system_identity_restore000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user2-000006":{"principalId":"a7448cfa-a2a4-4818-9b30-4e772f701220","clientId":"5917fd32-b45a-45c9-a01b-cf0ff517fb6d"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '4085' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table.yaml deleted file mode 100644 index 901f2be98f4..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table.yaml +++ /dev/null @@ -1,3450 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001","name":"cli_test_cosmosdb_table_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table","date":"2023-10-12T10:58:07Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '409' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 10:58:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '386' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T10:58:20.3553934Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"67106540-7441-4faa-96da-f1638c9e31c7","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T10:58:20.3553934Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T10:58:20.3553934Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:58:20.3553934Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T10:58:20.3553934Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview&t=638327051020082630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oolVP2HyM7iC64ALGGeim0u3z1fufCIkkvL27TStVLy1364kTOYMAyNzljNosz0ekU8YvAiOnczSrdRrWLKTeA4arY_StvMbUZKknd6VTgeOIzXNcPEoWE_3pZ7Q655gZdVRC9m-djNZGQg2n5hORfE_DmOqlTc2wlj0ytWyJOYLCd5_s0SumRUqoLIM0kbnWVyR_OKJAhzkLoXL0v8sR7o6Pi1hE6W35wYoU04BfJuPiiwnXTeRjkL1COmYbKwDVi0Ati1E8FlnSaK_BG-OiRaQHcr0ArpViQynis4cHtnWTcQZLv4ZLSpV2dH6iZEh9xPyRFw-YxlKyLjoEtRKqA&h=gYKYMlH4IKH5uyXXN6MymC7_OMQXgxZ7OzP0qiRPpgY - cache-control: - - no-store, no-cache - content-length: - - '2482' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:21 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview&t=638327051020082630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oolVP2HyM7iC64ALGGeim0u3z1fufCIkkvL27TStVLy1364kTOYMAyNzljNosz0ekU8YvAiOnczSrdRrWLKTeA4arY_StvMbUZKknd6VTgeOIzXNcPEoWE_3pZ7Q655gZdVRC9m-djNZGQg2n5hORfE_DmOqlTc2wlj0ytWyJOYLCd5_s0SumRUqoLIM0kbnWVyR_OKJAhzkLoXL0v8sR7o6Pi1hE6W35wYoU04BfJuPiiwnXTeRjkL1COmYbKwDVi0Ati1E8FlnSaK_BG-OiRaQHcr0ArpViQynis4cHtnWTcQZLv4ZLSpV2dH6iZEh9xPyRFw-YxlKyLjoEtRKqA&h=gYKYMlH4IKH5uyXXN6MymC7_OMQXgxZ7OzP0qiRPpgY - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview&t=638327051020082630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oolVP2HyM7iC64ALGGeim0u3z1fufCIkkvL27TStVLy1364kTOYMAyNzljNosz0ekU8YvAiOnczSrdRrWLKTeA4arY_StvMbUZKknd6VTgeOIzXNcPEoWE_3pZ7Q655gZdVRC9m-djNZGQg2n5hORfE_DmOqlTc2wlj0ytWyJOYLCd5_s0SumRUqoLIM0kbnWVyR_OKJAhzkLoXL0v8sR7o6Pi1hE6W35wYoU04BfJuPiiwnXTeRjkL1COmYbKwDVi0Ati1E8FlnSaK_BG-OiRaQHcr0ArpViQynis4cHtnWTcQZLv4ZLSpV2dH6iZEh9xPyRFw-YxlKyLjoEtRKqA&h=gYKYMlH4IKH5uyXXN6MymC7_OMQXgxZ7OzP0qiRPpgY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:58:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview&t=638327051020082630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oolVP2HyM7iC64ALGGeim0u3z1fufCIkkvL27TStVLy1364kTOYMAyNzljNosz0ekU8YvAiOnczSrdRrWLKTeA4arY_StvMbUZKknd6VTgeOIzXNcPEoWE_3pZ7Q655gZdVRC9m-djNZGQg2n5hORfE_DmOqlTc2wlj0ytWyJOYLCd5_s0SumRUqoLIM0kbnWVyR_OKJAhzkLoXL0v8sR7o6Pi1hE6W35wYoU04BfJuPiiwnXTeRjkL1COmYbKwDVi0Ati1E8FlnSaK_BG-OiRaQHcr0ArpViQynis4cHtnWTcQZLv4ZLSpV2dH6iZEh9xPyRFw-YxlKyLjoEtRKqA&h=gYKYMlH4IKH5uyXXN6MymC7_OMQXgxZ7OzP0qiRPpgY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview&t=638327051020082630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oolVP2HyM7iC64ALGGeim0u3z1fufCIkkvL27TStVLy1364kTOYMAyNzljNosz0ekU8YvAiOnczSrdRrWLKTeA4arY_StvMbUZKknd6VTgeOIzXNcPEoWE_3pZ7Q655gZdVRC9m-djNZGQg2n5hORfE_DmOqlTc2wlj0ytWyJOYLCd5_s0SumRUqoLIM0kbnWVyR_OKJAhzkLoXL0v8sR7o6Pi1hE6W35wYoU04BfJuPiiwnXTeRjkL1COmYbKwDVi0Ati1E8FlnSaK_BG-OiRaQHcr0ArpViQynis4cHtnWTcQZLv4ZLSpV2dH6iZEh9xPyRFw-YxlKyLjoEtRKqA&h=gYKYMlH4IKH5uyXXN6MymC7_OMQXgxZ7OzP0qiRPpgY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 10:59:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview&t=638327051020082630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oolVP2HyM7iC64ALGGeim0u3z1fufCIkkvL27TStVLy1364kTOYMAyNzljNosz0ekU8YvAiOnczSrdRrWLKTeA4arY_StvMbUZKknd6VTgeOIzXNcPEoWE_3pZ7Q655gZdVRC9m-djNZGQg2n5hORfE_DmOqlTc2wlj0ytWyJOYLCd5_s0SumRUqoLIM0kbnWVyR_OKJAhzkLoXL0v8sR7o6Pi1hE6W35wYoU04BfJuPiiwnXTeRjkL1COmYbKwDVi0Ati1E8FlnSaK_BG-OiRaQHcr0ArpViQynis4cHtnWTcQZLv4ZLSpV2dH6iZEh9xPyRFw-YxlKyLjoEtRKqA&h=gYKYMlH4IKH5uyXXN6MymC7_OMQXgxZ7OzP0qiRPpgY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview&t=638327051020082630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oolVP2HyM7iC64ALGGeim0u3z1fufCIkkvL27TStVLy1364kTOYMAyNzljNosz0ekU8YvAiOnczSrdRrWLKTeA4arY_StvMbUZKknd6VTgeOIzXNcPEoWE_3pZ7Q655gZdVRC9m-djNZGQg2n5hORfE_DmOqlTc2wlj0ytWyJOYLCd5_s0SumRUqoLIM0kbnWVyR_OKJAhzkLoXL0v8sR7o6Pi1hE6W35wYoU04BfJuPiiwnXTeRjkL1COmYbKwDVi0Ati1E8FlnSaK_BG-OiRaQHcr0ArpViQynis4cHtnWTcQZLv4ZLSpV2dH6iZEh9xPyRFw-YxlKyLjoEtRKqA&h=gYKYMlH4IKH5uyXXN6MymC7_OMQXgxZ7OzP0qiRPpgY - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:00:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dae35388-c400-4bf2-a26c-967ce1e262d8?api-version=2023-09-15-preview&t=638327051020082630&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=oolVP2HyM7iC64ALGGeim0u3z1fufCIkkvL27TStVLy1364kTOYMAyNzljNosz0ekU8YvAiOnczSrdRrWLKTeA4arY_StvMbUZKknd6VTgeOIzXNcPEoWE_3pZ7Q655gZdVRC9m-djNZGQg2n5hORfE_DmOqlTc2wlj0ytWyJOYLCd5_s0SumRUqoLIM0kbnWVyR_OKJAhzkLoXL0v8sR7o6Pi1hE6W35wYoU04BfJuPiiwnXTeRjkL1COmYbKwDVi0Ati1E8FlnSaK_BG-OiRaQHcr0ArpViQynis4cHtnWTcQZLv4ZLSpV2dH6iZEh9xPyRFw-YxlKyLjoEtRKqA&h=gYKYMlH4IKH5uyXXN6MymC7_OMQXgxZ7OzP0qiRPpgY - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:00:50.3328346Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"67106540-7441-4faa-96da-f1638c9e31c7","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:00:50.3328346Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:00:50.3328346Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:00:50.3328346Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:00:50.3328346Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2907' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:00:50.3328346Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"67106540-7441-4faa-96da-f1638c9e31c7","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:00:50.3328346Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:00:50.3328346Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:00:50.3328346Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:00:50.3328346Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2907' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Owner resource does not exist\\\"]}\\r\\nActivityId: - b21a862e-68ee-11ee-a94f-9c7bef43f49d, Request URI: /apps/202704de-aa9e-417b-a54e-edcc00fac9b1/services/88c657ba-b111-4c0a-882c-217e729814e0/partitions/05406434-ff93-49c8-a603-ee5b613b6541/replicas/133403337054439099s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T11:01:31.6297642Z, RequestEndTime: - 2023-10-12T11:01:31.6318358Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T11:00:35.7044553Z\\\",\\\"cpu\\\":1.356,\\\"memory\\\":650186760.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0362,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1630},{\\\"dateUtc\\\":\\\"2023-10-12T11:00:45.7145035Z\\\",\\\"cpu\\\":1.080,\\\"memory\\\":650065840.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0747,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1627},{\\\"dateUtc\\\":\\\"2023-10-12T11:00:55.7245388Z\\\",\\\"cpu\\\":1.254,\\\"memory\\\":650089792.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0545,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1627},{\\\"dateUtc\\\":\\\"2023-10-12T11:01:05.7345721Z\\\",\\\"cpu\\\":1.839,\\\"memory\\\":650031740.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0345,\\\"availableThreads\\\":32762,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1687},{\\\"dateUtc\\\":\\\"2023-10-12T11:01:15.7445221Z\\\",\\\"cpu\\\":2.420,\\\"memory\\\":650034152.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0437,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1687},{\\\"dateUtc\\\":\\\"2023-10-12T11:01:25.7545707Z\\\",\\\"cpu\\\":1.181,\\\"memory\\\":650042364.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0291,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1687}]}\\r\\nRequestStart: - 2023-10-12T11:01:31.6300569Z; ResponseTime: 2023-10-12T11:01:31.6318261Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.8:11300/apps/202704de-aa9e-417b-a54e-edcc00fac9b1/services/88c657ba-b111-4c0a-882c-217e729814e0/partitions/05406434-ff93-49c8-a603-ee5b613b6541/replicas/133403337054439099s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.043, ActivityId: - b21a862e-68ee-11ee-a94f-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:01:31 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:01:31 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 11:01:31 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:01:31 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:01:31.6299416Z\\\", - \\\"durationInMs\\\": 0.0188},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:01:31.6299604Z\\\", \\\"durationInMs\\\": - 0.0046},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:01:31.6299650Z\\\", - \\\"durationInMs\\\": 0.0805},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:01:31.6300455Z\\\", \\\"durationInMs\\\": 1.372},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:01:31.6314175Z\\\", - \\\"durationInMs\\\": 0.0842},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:01:31.6315017Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:01:31.4800223Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:01:31.4800357Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:01:31.5118474Z\\\"},\\\"requestSizeInBytes\\\":489,\\\"responseMetadataSizeInBytes\\\":141,\\\"responseBodySizeInBytes\\\":44};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T11:01:31.6301185Z; - ResponseTime: 2023-10-12T11:01:31.6318358Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.5:11300/apps/202704de-aa9e-417b-a54e-edcc00fac9b1/services/88c657ba-b111-4c0a-882c-217e729814e0/partitions/05406434-ff93-49c8-a603-ee5b613b6541/replicas/133403337054439101s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.845, ActivityId: - b21a862e-68ee-11ee-a94f-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11300 | status: Unknown | lkt: 10/12/2023 11:01:31 AM),(port: 11300 - | status: Unknown | lkt: 10/12/2023 11:01:31 AM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 11:01:31 AM),(port: 11300 | status: Unknown | lkt: 10/12/2023 - 11:01:31 AM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:01:31.6300592Z\\\", - \\\"durationInMs\\\": 0.0049},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T11:01:31.6300641Z\\\", \\\"durationInMs\\\": - 0.0025},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:01:31.6300666Z\\\", - \\\"durationInMs\\\": 0.0456},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:01:31.6301122Z\\\", \\\"durationInMs\\\": 1.1655},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T11:01:31.6312777Z\\\", - \\\"durationInMs\\\": 0.0735},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T11:01:31.6313512Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T11:01:31.5594106Z\\\",\\\"lastSend\\\":\\\"2023-10-12T11:01:31.5594272Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T11:01:31.5895038Z\\\"},\\\"requestSizeInBytes\\\":489,\\\"responseMetadataSizeInBytes\\\":141,\\\"responseBodySizeInBytes\\\":44};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/TablesDB/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7046' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11: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-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bbed0fd-1846-4f32-89a1-57024ec65fa7?api-version=2023-09-15&t=638327052941268346&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mGgKQBew2mQvPmXQZ1p4cI9FQvj06egk3Jla1jequYRF67kFhziSEj4tbfzXGaruur4HduHY1xz0eT_9ledK_5pQTUCF3j2Y22svDjHEg2wHwp9iGvXVClHm-mt4lfZK4aoKuouD5xNvW_ensqqoniAnA3bH_2hYXe5maeMMofa5OssoAJyXR3zQMPZatrYZQepnJYCo3h57E7Z6BJIOTJTGjr6FJLvg5FmsSFjHGM8FjtNJRt6SERWqVQpzPE9zAINzFKsOdzIoI4-TviJw7I7-jOmmWYcGVooRxjZcuKo9YfdsUoomaoUJEZGV4ib64clpP4H7deApRFmEZOls-w&h=T2indJesSvs3kLK0d8MXgPk3hKE6pBLnLfDyNXSeEmc - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:33 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/4bbed0fd-1846-4f32-89a1-57024ec65fa7?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bbed0fd-1846-4f32-89a1-57024ec65fa7?api-version=2023-09-15&t=638327052941268346&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mGgKQBew2mQvPmXQZ1p4cI9FQvj06egk3Jla1jequYRF67kFhziSEj4tbfzXGaruur4HduHY1xz0eT_9ledK_5pQTUCF3j2Y22svDjHEg2wHwp9iGvXVClHm-mt4lfZK4aoKuouD5xNvW_ensqqoniAnA3bH_2hYXe5maeMMofa5OssoAJyXR3zQMPZatrYZQepnJYCo3h57E7Z6BJIOTJTGjr6FJLvg5FmsSFjHGM8FjtNJRt6SERWqVQpzPE9zAINzFKsOdzIoI4-TviJw7I7-jOmmWYcGVooRxjZcuKo9YfdsUoomaoUJEZGV4ib64clpP4H7deApRFmEZOls-w&h=T2indJesSvs3kLK0d8MXgPk3hKE6pBLnLfDyNXSeEmc - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:01:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bbed0fd-1846-4f32-89a1-57024ec65fa7?api-version=2023-09-15&t=638327052941268346&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=mGgKQBew2mQvPmXQZ1p4cI9FQvj06egk3Jla1jequYRF67kFhziSEj4tbfzXGaruur4HduHY1xz0eT_9ledK_5pQTUCF3j2Y22svDjHEg2wHwp9iGvXVClHm-mt4lfZK4aoKuouD5xNvW_ensqqoniAnA3bH_2hYXe5maeMMofa5OssoAJyXR3zQMPZatrYZQepnJYCo3h57E7Z6BJIOTJTGjr6FJLvg5FmsSFjHGM8FjtNJRt6SERWqVQpzPE9zAINzFKsOdzIoI4-TviJw7I7-jOmmWYcGVooRxjZcuKo9YfdsUoomaoUJEZGV4ib64clpP4H7deApRFmEZOls-w&h=T2indJesSvs3kLK0d8MXgPk3hKE6pBLnLfDyNXSeEmc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ycNwAOqTTqc=","_etag":"\"00000000-0000-0000-fcfb-7c13980201d9\"","_ts":1697108503}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '396' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ycNwAOqTTqc=","_etag":"\"00000000-0000-0000-fcfb-7c13980201d9\"","_ts":1697108503}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '396' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ycNwAOqTTqc=","_etag":"\"00000000-0000-0000-fcfb-7c13980201d9\"","_ts":1697108503}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '408' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ycNwAOqTTqc=","_etag":"\"00000000-0000-0000-fcfb-7c13980201d9\"","_ts":1697108503}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '396' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:02:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc9a309f-7ace-4981-b0a3-6d067dbb737a?api-version=2023-09-15&t=638327058334241802&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ju9il0U8ssnTtMWWCgaco37ZrcsFn2v1imiqOZ3CjB6wjqpB8vJR3Xy0pc78x5c4OPsQ1HlCZWYMYsop2Pn2orgWlg1a3V9XSsgNLsgCNR4MRwAMUeWGQ5-oD25g15Bm3PoQKbgFQ27u_Zvhx7BD7FnpeBNZj1uH9MOf-WBqB6OUIRJT6SmznP1DjO1V8aG71P7traVc_ulHMdo5ZZGhLDgzK6ELLRjYLpCO8KT7a-VSEXa1RPe4v48_4rxii-rYyfP6KkpLrM8OH73nv1CW4Vl5OtW28iAW9qaw1TpNrlI_HDtPO7XVQTV_CSFYzOWch_hqct-LrGpsyBhpwZFHsg&h=-nO2lKN9ihEc0AZG_AtlkNJt_R7jsX4WKt5KCvJrXDg - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:33 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/bc9a309f-7ace-4981-b0a3-6d067dbb737a?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc9a309f-7ace-4981-b0a3-6d067dbb737a?api-version=2023-09-15&t=638327058334241802&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ju9il0U8ssnTtMWWCgaco37ZrcsFn2v1imiqOZ3CjB6wjqpB8vJR3Xy0pc78x5c4OPsQ1HlCZWYMYsop2Pn2orgWlg1a3V9XSsgNLsgCNR4MRwAMUeWGQ5-oD25g15Bm3PoQKbgFQ27u_Zvhx7BD7FnpeBNZj1uH9MOf-WBqB6OUIRJT6SmznP1DjO1V8aG71P7traVc_ulHMdo5ZZGhLDgzK6ELLRjYLpCO8KT7a-VSEXa1RPe4v48_4rxii-rYyfP6KkpLrM8OH73nv1CW4Vl5OtW28iAW9qaw1TpNrlI_HDtPO7XVQTV_CSFYzOWch_hqct-LrGpsyBhpwZFHsg&h=-nO2lKN9ihEc0AZG_AtlkNJt_R7jsX4WKt5KCvJrXDg - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc9a309f-7ace-4981-b0a3-6d067dbb737a?api-version=2023-09-15&t=638327058334241802&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=ju9il0U8ssnTtMWWCgaco37ZrcsFn2v1imiqOZ3CjB6wjqpB8vJR3Xy0pc78x5c4OPsQ1HlCZWYMYsop2Pn2orgWlg1a3V9XSsgNLsgCNR4MRwAMUeWGQ5-oD25g15Bm3PoQKbgFQ27u_Zvhx7BD7FnpeBNZj1uH9MOf-WBqB6OUIRJT6SmznP1DjO1V8aG71P7traVc_ulHMdo5ZZGhLDgzK6ELLRjYLpCO8KT7a-VSEXa1RPe4v48_4rxii-rYyfP6KkpLrM8OH73nv1CW4Vl5OtW28iAW9qaw1TpNrlI_HDtPO7XVQTV_CSFYzOWch_hqct-LrGpsyBhpwZFHsg&h=-nO2lKN9ihEc0AZG_AtlkNJt_R7jsX4WKt5KCvJrXDg - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:11:07Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","oldestRestorableTime":"2023-10-12T10:54:29Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","oldestRestorableTime":"2023-10-12T10:54:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","oldestRestorableTime":"2023-10-12T10:54:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"cli000003","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","oldestRestorableTime":"2023-10-12T11:00:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:11:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:11:08Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '288615' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:11:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7", - "restoreTimestampInUtc": "2023-10-12T11:02:11.364526Z"}, "createMode": "Restore"}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - Content-Length: - - '352' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:16 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b9e01b-8094-4913-873c-e505fac0f7fd?api-version=2023-09-15-preview&t=638327058767293686&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=iCwEiIXhDzspxtnzW55ZUCEMNz39mNew0P6L_fYiqlsXNRSWzpeoZ34x1ZbLs4Vn4gUI9eM2GngdwqvxOR3OD2AfpXITKAwMJfRZ7CUArjx64qstzz6ObLAvjr8P93C1CdwkG1lTkKmBpUgv2iokoQznvvA4caka4kq3pryma5Y8U-fQImEcNp_pj2ajLbqS70UEiuZJP4AQ1DZPFuZoT5eNqr5Skj2SkSKSEkmSliZzG633YccE-UGj8H-fyNQ2Axz9N7WAgJ-RG4W0tJJ-u-ym7qjgq8S-LxbsyxIwaS5K0XeGWIv0gZnRCicMiu7Mzvtk12y5DL1_YGzL9QPzeg&h=6Sv4rIsVfi6j3UD-H-UK802cfIXGUUIDkYMkS01WZQ8 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restore - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ycNwAOqTTqc=","_etag":"\"00000000-0000-0000-fcfd-734ec80201d9\"","_ts":1697109347}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '396' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table show - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ycNwAOqTTqc=","_etag":"\"00000000-0000-0000-fcfd-734ec80201d9\"","_ts":1697109347}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '396' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2023-09-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ycNwAOqTTqc=","_etag":"\"00000000-0000-0000-fcfd-734ec80201d9\"","_ts":1697109347}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '408' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table exists - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ycNwAOqTTqc=","_etag":"\"00000000-0000-0000-fcfd-734ec80201d9\"","_ts":1697109347}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '396' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/566a36f7-ac5e-41b4-96a9-0d538225e5ae?api-version=2023-09-15&t=638327068774713385&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KLgi9tqS4-q3QOHrTxUtnC65PKTEE24kCFRRaYvd_hI1edovKK3eNfQPGk8REHTX4vrmCswfaYx1wev7-cUlXplEtr3wl1Wl19AJwaWRgT2Vui1r05Pab9WmE9H3KzV7gHYFgBBO4bK_mbpMB5PrpMgm_YT2bwvL3ZrKmCffOp_krFILoylzxQsUtpy9J8AzMmjyqGUTHgN9CTKkyXj8n9ZN-r4vm8_vQfxNIbr3phwrMuA9Xf3I5GNQvm5LHGimm943WIU6TcugGLo_slkgZ8-OKiAuvPjm9JjBkgjWyuuNLUK_TCjFtcXuMdGYb1Qd5EFioUyafeJNh36sm4dT0Q&h=OtbCDovUGLVF5i6odYKouv-XNkzltvsFpRgkp5JNqxA - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:56 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/566a36f7-ac5e-41b4-96a9-0d538225e5ae?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/566a36f7-ac5e-41b4-96a9-0d538225e5ae?api-version=2023-09-15&t=638327068774713385&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KLgi9tqS4-q3QOHrTxUtnC65PKTEE24kCFRRaYvd_hI1edovKK3eNfQPGk8REHTX4vrmCswfaYx1wev7-cUlXplEtr3wl1Wl19AJwaWRgT2Vui1r05Pab9WmE9H3KzV7gHYFgBBO4bK_mbpMB5PrpMgm_YT2bwvL3ZrKmCffOp_krFILoylzxQsUtpy9J8AzMmjyqGUTHgN9CTKkyXj8n9ZN-r4vm8_vQfxNIbr3phwrMuA9Xf3I5GNQvm5LHGimm943WIU6TcugGLo_slkgZ8-OKiAuvPjm9JjBkgjWyuuNLUK_TCjFtcXuMdGYb1Qd5EFioUyafeJNh36sm4dT0Q&h=OtbCDovUGLVF5i6odYKouv-XNkzltvsFpRgkp5JNqxA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:27:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/566a36f7-ac5e-41b4-96a9-0d538225e5ae?api-version=2023-09-15&t=638327068774713385&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=KLgi9tqS4-q3QOHrTxUtnC65PKTEE24kCFRRaYvd_hI1edovKK3eNfQPGk8REHTX4vrmCswfaYx1wev7-cUlXplEtr3wl1Wl19AJwaWRgT2Vui1r05Pab9WmE9H3KzV7gHYFgBBO4bK_mbpMB5PrpMgm_YT2bwvL3ZrKmCffOp_krFILoylzxQsUtpy9J8AzMmjyqGUTHgN9CTKkyXj8n9ZN-r4vm8_vQfxNIbr3phwrMuA9Xf3I5GNQvm5LHGimm943WIU6TcugGLo_slkgZ8-OKiAuvPjm9JjBkgjWyuuNLUK_TCjFtcXuMdGYb1Qd5EFioUyafeJNh36sm4dT0Q&h=OtbCDovUGLVF5i6odYKouv-XNkzltvsFpRgkp5JNqxA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2023-09-15 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:28:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_command.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_command.yaml deleted file mode 100644 index 1dc3f8d39a4..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_command.yaml +++ /dev/null @@ -1,2964 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_account_restore_command000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001","name":"cli_test_cosmosdb_table_account_restore_command000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table_account_restore_command","date":"2024-02-23T01:32:30Z","module":"azure-cli-extensions-restorewithttldisabled"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '499' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 23 Feb 2024 01:32:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7E310D8F3AF74732A58F14ADFC22B823 Ref B: MNZ221060610051 Ref C: 2024-02-23T01:32:32Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westcentralus", "kind": "GlobalDocumentDB", "properties": - {"locations": [{"locationName": "westcentralus", "failoverPriority": 0, "isZoneRedundant": - false}], "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '399' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:32:35.362879Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:32:35.362879Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:32:35.362879Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:32:35.362879Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:32:35.362879Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw - cache-control: - - no-store, no-cache - content-length: - - '2759' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:32:35 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KXO3j4dHpVg5-lGEfTlxvDS1QjmqlhJYIPaMs0KAsN1eUPAMPjOSvLyTsm5PfJ9WphtPLgqtBhq3DaHt9vc0DNgxJCIGs2stjfuV9iDCkPfAb0q1CHt1nR2S2zQwZUHrXLZNaMvtIp-5Zug-qBXm_zoLN33K1Bf_R5h2HogHKKRDbwnGIrkcpQ08OYrvcHRNzeE8SkRTWEz3p26njfTUseZ05OzvYYE8ZO7-qFzHsVWhXW11k5GC0YsCi3nlt6WAOPJmRbLBsy8iNQOdV_WL6_xIxg7zgf-mGka8BKecQJLw11iamL7A-Ego-BgA9bqbttzayCu5bnBCEUTQSyMyhw&h=8KvE6hVSnfx1q5FeluKKVaWJG9BcAyxGZwXzGN_zn58 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: D91809BC28034058916C974287A57858 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:32:32Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:32:36 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: CB90E513D5884965AE03227C7A827700 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:32:36Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:33:06 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 491CDD2BB17F4CDB998E1F66E653F4A5 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:33:07Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:33:36 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: CD444DC0F94247D4B64B2B3A1142C5BC Ref B: MNZ221060608045 Ref C: 2024-02-23T01:33:37Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:34:06 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 12FCA01DB9C64E48998275D45EF0D043 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:34:07Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:34:37 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: F5CB2A645EF0480D8AF2ACEB2B0A26AF Ref B: MNZ221060608045 Ref C: 2024-02-23T01:34:37Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2e41d960-f426-460d-8540-d1611afed77e?api-version=2024-02-15-preview&t=638442487567240687&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IrE25XIXAyxVEErwL-Y3qHpM3JezeZ_TfZ906MwBPMJg4GccEIxVQc65Tm7sztXowmoFXZBvNId_FWoIg4RnOrX0bntgyuYmkKswgEfTg55ATljXangLAkn4CToxT4mfPbIXRY5eOGFx53aU8jXA2xVVqtaGpltENzb_L1vUV2p9OLlatyVbonveQXB1gpcsVwQa1mDgggJlKrr7HhZK4rGJchNid0S6e96HfCBiI7ei8AVOTnesukuDi6WS8mVUnHo9v6LkMp6_VJkp4GwHpDxAIwKDxg0ObBbcTW3y-7HDl8DYhGZmlySgdzJ8WDIZvRdugS5g-a5KVVEolAUoRA&h=DFliqFpfk2uFSo8EEfGlTCxUTCWPtzpLoBEXqV7hlCw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:07 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 4C51C2B3D3B9416EBA180819B66C7D46 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:35:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:34:30.0560444Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3207' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:07 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 4AD013F7DE49401284ACAF92F95FF94C Ref B: MNZ221060608045 Ref C: 2024-02-23T01:35:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:34:30.0560444Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3207' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 01D89E9AE7874A4EB093724480EC3104 Ref B: MNZ221060608045 Ref C: 2024-02-23T01:35:08Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:34:30.0560444Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000003-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:34:30.0560444Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3207' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:08 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 81FF98E75AA14594BC6DFCC0CE5D0636 Ref B: MNZ221060609025 Ref C: 2024-02-23T01:35:09Z' - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-04-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/cd3fb89f-f01c-41c5-a5ab-8b549bfa142d?api-version=2023-04-15&t=638442489107940895&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AuILpyTHdcAnv0fdVww9-NKjSwnBDHHG2FBP79Axue9t2Ki6LG1YTMKzjkb6Bl52uG71XKQNf_u1RKj130JYCE9rVOBiBzS-os_Anb9Z9tfPVAZloPcA4CcxAou9qF6SwEfM9fXRKhABK5XhDPr78oO3OVAcTMS9L4aJXYKzc64F8OL_bvbNH8WHNoDCJdtU3eD4dCg3uVO_s7KeDLyLrzOkiXFkD0RS6_0mCyl0wmuqoPXeCUso0h8B1BaD_82VdfWk0ET3Q2j9VjXyJFSU7rNWoQXgnCvd0wScCRG4NPvcC_cAbZMhxy9p7vTyFU476eQTgRFgXRAkdYlG8O_gCQ&h=exE0dss0op7Cixb1lz-vIh0jtN4LPkR255hspOuu3Fg - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:10 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/cd3fb89f-f01c-41c5-a5ab-8b549bfa142d?api-version=2023-04-15&t=638442489108097172&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lFWooKjsqFlcn8eSkU3B9GzPbhsPprcqv38_0RiR4k4fmpLtQ_YsrDZO0APcVN9Mp4oDrO15-yY1TIudhN0CGuejmRxhKdBsdsc0zw2adyvIQ7HYk0T-gOm4At1tZQVR4j-GnTFYTcNvAJPEQ26WWaJZY4HWqLLePbvBKbUTZ0T2UUMOeJqJv80rRN9eKp1J8vxrXIXa8QjTB4hTR5DKM6p00jGiDOp06zd93InRhdRrEc4jyGyCT4ucYxzyyUFE4rZDXPSbOvzCeWBjjt4upQmZL9R96DR_m1O9tmwz1mqqv-w5-k9dLY3OGT8srPBPk_xBi4v4rAFPXldPCtwxBg&h=wrKrkJp1zNSJ_PrSxS_sPHYUYncfEUbjPxw_D-Inayg - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: EDBE7C51F5BD45F388F01DB48E02715A Ref B: MNZ221060608047 Ref C: 2024-02-23T01:35:10Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/cd3fb89f-f01c-41c5-a5ab-8b549bfa142d?api-version=2023-04-15&t=638442489107940895&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AuILpyTHdcAnv0fdVww9-NKjSwnBDHHG2FBP79Axue9t2Ki6LG1YTMKzjkb6Bl52uG71XKQNf_u1RKj130JYCE9rVOBiBzS-os_Anb9Z9tfPVAZloPcA4CcxAou9qF6SwEfM9fXRKhABK5XhDPr78oO3OVAcTMS9L4aJXYKzc64F8OL_bvbNH8WHNoDCJdtU3eD4dCg3uVO_s7KeDLyLrzOkiXFkD0RS6_0mCyl0wmuqoPXeCUso0h8B1BaD_82VdfWk0ET3Q2j9VjXyJFSU7rNWoQXgnCvd0wScCRG4NPvcC_cAbZMhxy9p7vTyFU476eQTgRFgXRAkdYlG8O_gCQ&h=exE0dss0op7Cixb1lz-vIh0jtN4LPkR255hspOuu3Fg - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:10 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B1799CDCEF424ABA9CD71F88D771853D Ref B: MNZ221060608047 Ref C: 2024-02-23T01:35:10Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/cd3fb89f-f01c-41c5-a5ab-8b549bfa142d?api-version=2023-04-15&t=638442489107940895&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AuILpyTHdcAnv0fdVww9-NKjSwnBDHHG2FBP79Axue9t2Ki6LG1YTMKzjkb6Bl52uG71XKQNf_u1RKj130JYCE9rVOBiBzS-os_Anb9Z9tfPVAZloPcA4CcxAou9qF6SwEfM9fXRKhABK5XhDPr78oO3OVAcTMS9L4aJXYKzc64F8OL_bvbNH8WHNoDCJdtU3eD4dCg3uVO_s7KeDLyLrzOkiXFkD0RS6_0mCyl0wmuqoPXeCUso0h8B1BaD_82VdfWk0ET3Q2j9VjXyJFSU7rNWoQXgnCvd0wScCRG4NPvcC_cAbZMhxy9p7vTyFU476eQTgRFgXRAkdYlG8O_gCQ&h=exE0dss0op7Cixb1lz-vIh0jtN4LPkR255hspOuu3Fg - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:41 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 202AEEE1AD304C859B010326C9C029AB Ref B: MNZ221060608047 Ref C: 2024-02-23T01:35:41Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/9.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-04-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"q5wEANNeZTA=","_etag":"\"00000000-0000-0000-65f8-91adb40601da\"","_ts":1708652123}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '412' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:41 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 528DB8B192A249C095F178F4F4B5970D Ref B: MNZ221060608047 Ref C: 2024-02-23T01:35:41Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account show - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d?api-version=2024-02-15-preview - response: - body: - string: '{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"cli000003","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","oldestRestorableTime":"2024-02-23T01:34:31Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z"}]}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '641' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:35:42 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 594A91E40C38454688E1C041A88A11E3 Ref B: MNZ221060610051 Ref C: 2024-02-23T01:35:42Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2024-02-15-preview - response: - body: - string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"cli000003","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","oldestRestorableTime":"2024-02-23T01:34:31Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East - US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"Central - US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-16T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T00:34:40Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast - Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast - Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East - Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-01-24T01:39:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"South - Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East - US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-16T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-01-24T01:39:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-01-24T01:39:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West - US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-16T01:39:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-01-24T01:39:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-01-24T01:39:43Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-17T01:28:01Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-16T01:39:43Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West - US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '238473' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 23 Feb 2024 01:39:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - x-msedge-ref: - - 'Ref A: FA422E6E4C3A4554AFD11CC19CE9CDD9 Ref B: MNZ221060608023 Ref C: 2024-02-23T01:39:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d/restorableTableResources?api-version=2024-02-15-preview&restoreLocation=westcentralus&restoreTimestampInUtc=2024-02-23%2001%3A38%3A31%2B00%3A00 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d/restorableTableResources/cli000002","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTableResources","name":"cli000002"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '337' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:39:47 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: E0588A6892E04ABD95D0CBD6B9849202 Ref B: MNZ221060609045 Ref C: 2024-02-23T01:39:47Z' - status: - code: 200 - message: Ok -- request: - body: '{"location": "West Central US", "kind": "GlobalDocumentDB", "properties": - {"locations": [{"locationName": "westcentralus", "failoverPriority": 0}], "databaseAccountOfferType": - "Standard", "apiProperties": {}, "createMode": "Restore", "restoreParameters": - {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d", - "restoreTimestampInUtc": "2024-02-23T01:38:31.000Z", "restoreWithTtlDisabled": - true, "restoreMode": "PointInTime"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - Content-Length: - - '563' - Content-Type: - - application/json - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:39:49.5236991Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bc3cb286-1d63-4180-98dd-8a047430c763","createMode":"Restore","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","restoreTimestampInUtc":"2024-02-23T01:38:31Z","sourceBackupLocation":"West - Central US","restoreWithTtlDisabled":true,"tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:39:49.5236991Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:39:49.5236991Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:39:49.5236991Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:39:49.5236991Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - cache-control: - - no-store, no-cache - content-length: - - '3220' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:39:52 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923396668&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jOtxe6o12U9KFLqY_G1kcviuoa8SX5pbRh9U07ItoMB3CjcXnNn3Rcxz_yE-Hc-9QumHeRIJGMeINaGqiUig_dwgvJfEWb7abzfC7lRUg8HRBTYt3bq5NXXZeE2I6fOcBSM-em6dZ3jHWwvnP1wQ2Qtmaj3JhhlshWgjw4bkAgh_QQs4Rx4ndxegs10d83gmffpAAIOoN6QpPv3MOJVGFaSA06dxoX0xB0TrnEBH19ILCaC2Q1oTvMTSWy6A8O8N823aBD56ClQYYh8tLIyAgrf8QBxFOmh5-2s51N4Z7Z53adO6Ctr8Is0b1CbWltGUWpKQDx7cWWI4Hdxbn8oh0g&h=C9OeR7IVQuWmHNC--vQTlJPbmGmS_L2jH64sjpCqozY - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 1592407BF57D4CF7A374733D8A3D2292 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:39:48Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:39:52 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 2F3991EF577440BB94DB68A80FB4D4F3 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:39:52Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:40:23 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: EA7201461E4E40E6B0986801BC4751E3 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:40:22Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:40:53 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 19663F5B6C0140A7AE43605F169AD4FA Ref B: MNZ221060609053 Ref C: 2024-02-23T01:40:53Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:41:23 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9A20A753B38E497586A9FC1463660D7F Ref B: MNZ221060609053 Ref C: 2024-02-23T01:41:23Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:41:53 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B447D207FC7D4C31AF0EFC57A669C9E1 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:41:53Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:42:24 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B68990266E564A41A6E4A6584457AE6B Ref B: MNZ221060609053 Ref C: 2024-02-23T01:42:24Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:42:54 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 23F150D0D6F94849BF974A183FEE35E9 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:42:54Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:43:24 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: FCE61D481CCF4BF0BE44EC3A1C4008CF Ref B: MNZ221060609053 Ref C: 2024-02-23T01:43:24Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:43:55 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: D856A67484CE486D82485349CF1A7EEE Ref B: MNZ221060609053 Ref C: 2024-02-23T01:43:55Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:44:25 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 63DEA409E36548279BA733E6CF7D9886 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:44:25Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:44:55 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 2501D5DF18FF4DD6A060AA96B9C4527E Ref B: MNZ221060609053 Ref C: 2024-02-23T01:44:55Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:45:25 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: F52EDF6C1AF245618BD0A582256CB543 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:45:26Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:45:56 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 9167DBF0E48F45EB92B4B545B8DCBC9C Ref B: MNZ221060609053 Ref C: 2024-02-23T01:45:56Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:46:26 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 4A0DA1DB81A0492BB6A88E7C290A5352 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:46:26Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:46:56 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: F9E0CDC7447B4AF79D81973F2FC257DD Ref B: MNZ221060609053 Ref C: 2024-02-23T01:46:56Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:47:26 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: FC23471B92D64FE9826B920FB7883F7A Ref B: MNZ221060609053 Ref C: 2024-02-23T01:47:27Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:47:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 34D7D1CCA6C84CDBACFDC6CD3C6417DD Ref B: MNZ221060609053 Ref C: 2024-02-23T01:47:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:48:27 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 924AE12DD23A49108EAF881B223A19B0 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:48:27Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:48:57 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 817EC6C30D1340D19A06B180A2B97B16 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:48:57Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:49:27 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: E6E83003C80D4A01AFB9D0716AF779A4 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:49:28Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:49:58 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 019F4B517BDA48298668E001F4889590 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:49:58Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:50:28 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 724334EFA5B64C36B234BEF65965B9EA Ref B: MNZ221060609053 Ref C: 2024-02-23T01:50:28Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:50:58 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: B2FF4061674943E0B7753179EF78FE14 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:50:59Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/26ca0de1-4fdb-4bd8-862d-5386ac9e8494?api-version=2024-02-15-preview&t=638442491923240373&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Xzsbn8-rsQnZ3Z-RIXXZXzAzg02AGumQ7CbriyjKcQA40ikWv0g_-KHIzaLzmwsTvz5Obnt9QQtKDIU_v5UnfzBHLHyTfUKlQkzr26SMs1VEsQ4wjiVJb3Kbfx0WXz3upeBZbc-6n6GLFiZcO5gCe9CqVVT0B-yfwEPYwkd3EZdVfoPunqYHWQmBSn9lBjSUVPG5-yhRZuCQwphJCwMLzZQPDxY0TgkXpEUrxatQj8l70uhEgC1-ldxn2QktQKx6zrP81r9gE_IZy3yncRArsDO-TSOcGHtim0nVIzTgrw0iNM08NQNGZY3VwXi5BI6eS7AelcGWDktZU8h_ph0g-w&h=Nrioo-d7Dthzar6sjHCttsVKEgy9k4Glf9vLzuZ0Tww - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:51:29 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 5FF7339AA85D43F992D08A3BBFC650A6 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:51:29Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:51:00.9538897Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bc3cb286-1d63-4180-98dd-8a047430c763","createMode":"Restore","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","restoreTimestampInUtc":"2024-02-23T01:38:31Z","sourceBackupLocation":"West - Central US","restoreWithTtlDisabled":true,"tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3596' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:51:29 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 7E03F7B3AC9C4936B7B0BF314AEF56D1 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:51:29Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --location --disable-ttl - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:51:00.9538897Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bc3cb286-1d63-4180-98dd-8a047430c763","createMode":"Restore","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","restoreTimestampInUtc":"2024-02-23T01:38:31Z","sourceBackupLocation":"West - Central US","restoreWithTtlDisabled":true,"tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3596' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:51:30 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 96043E5E7A344EC6B7305ADCB6EECB15 Ref B: MNZ221060609053 Ref C: 2024-02-23T01:51:30Z' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.51.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_command000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-02-23T01:51:00.9538897Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"bc3cb286-1d63-4180-98dd-8a047430c763","createMode":"Restore","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","restoreTimestampInUtc":"2024-02-23T01:38:31Z","sourceBackupLocation":"West - Central US","restoreWithTtlDisabled":true,"tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-02-23T01:51:00.9538897Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3596' - content-type: - - application/json - date: - - Fri, 23 Feb 2024 01:51:31 GMT - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-msedge-ref: - - 'Ref A: 515C432391F04B529B2F49CC804B8CDA Ref B: MNZ221060608025 Ref C: 2024-02-23T01:51:31Z' - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_using_create.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_using_create.yaml deleted file mode 100644 index f76a2bde891..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_account_restore_using_create.yaml +++ /dev/null @@ -1,3783 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_account_restore_using_create000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001","name":"cli_test_cosmosdb_table_account_restore_using_create000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table_account_restore_using_create","date":"2023-10-12T11:32:52Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '481' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:32:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '387' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:33:02.5801811Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus2","locationName":"West - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:33:02.5801811Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:33:02.5801811Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:02.5801811Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:33:02.5801811Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview&t=638327071845386830&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G_DpIjY0zlOurCHmu3pVQxhTKhyQhb0p6xbrZebVlHzP2qfmCt8jmeFnOi_hb2sn8bIhx53sDnCelypHjva--U7clFdjyhYKjkv8RiVQVSk25XOHTDnZ042w-oLzD15EBsEyMJ4Sx3Wu7LWXgZ0OL7RimXN0Avno3rC9ha1sYaiyrHGVPk84C705i32qgiuA9FOQx6QbPUWpjEPly9vXRjhnF4gnPLZVspGCuuiWAznMdQpUaXoidqdcQZkTFStijFbzoTWX_TruhMgefEm0lYLA0798JTun2sItICzhItlxQEPLvCNr7o9M_BelXHbLZc3EfaHkonFSvp3uuXGaEQ&h=g_S_TV80U6kzAY8tchJG0uNHNg8_L6Ap_viqzxosRag - cache-control: - - no-store, no-cache - content-length: - - '2505' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:03 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview&t=638327071845386830&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G_DpIjY0zlOurCHmu3pVQxhTKhyQhb0p6xbrZebVlHzP2qfmCt8jmeFnOi_hb2sn8bIhx53sDnCelypHjva--U7clFdjyhYKjkv8RiVQVSk25XOHTDnZ042w-oLzD15EBsEyMJ4Sx3Wu7LWXgZ0OL7RimXN0Avno3rC9ha1sYaiyrHGVPk84C705i32qgiuA9FOQx6QbPUWpjEPly9vXRjhnF4gnPLZVspGCuuiWAznMdQpUaXoidqdcQZkTFStijFbzoTWX_TruhMgefEm0lYLA0798JTun2sItICzhItlxQEPLvCNr7o9M_BelXHbLZc3EfaHkonFSvp3uuXGaEQ&h=g_S_TV80U6kzAY8tchJG0uNHNg8_L6Ap_viqzxosRag - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview&t=638327071845386830&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G_DpIjY0zlOurCHmu3pVQxhTKhyQhb0p6xbrZebVlHzP2qfmCt8jmeFnOi_hb2sn8bIhx53sDnCelypHjva--U7clFdjyhYKjkv8RiVQVSk25XOHTDnZ042w-oLzD15EBsEyMJ4Sx3Wu7LWXgZ0OL7RimXN0Avno3rC9ha1sYaiyrHGVPk84C705i32qgiuA9FOQx6QbPUWpjEPly9vXRjhnF4gnPLZVspGCuuiWAznMdQpUaXoidqdcQZkTFStijFbzoTWX_TruhMgefEm0lYLA0798JTun2sItICzhItlxQEPLvCNr7o9M_BelXHbLZc3EfaHkonFSvp3uuXGaEQ&h=g_S_TV80U6kzAY8tchJG0uNHNg8_L6Ap_viqzxosRag - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:33:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview&t=638327071845386830&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G_DpIjY0zlOurCHmu3pVQxhTKhyQhb0p6xbrZebVlHzP2qfmCt8jmeFnOi_hb2sn8bIhx53sDnCelypHjva--U7clFdjyhYKjkv8RiVQVSk25XOHTDnZ042w-oLzD15EBsEyMJ4Sx3Wu7LWXgZ0OL7RimXN0Avno3rC9ha1sYaiyrHGVPk84C705i32qgiuA9FOQx6QbPUWpjEPly9vXRjhnF4gnPLZVspGCuuiWAznMdQpUaXoidqdcQZkTFStijFbzoTWX_TruhMgefEm0lYLA0798JTun2sItICzhItlxQEPLvCNr7o9M_BelXHbLZc3EfaHkonFSvp3uuXGaEQ&h=g_S_TV80U6kzAY8tchJG0uNHNg8_L6Ap_viqzxosRag - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview&t=638327071845386830&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G_DpIjY0zlOurCHmu3pVQxhTKhyQhb0p6xbrZebVlHzP2qfmCt8jmeFnOi_hb2sn8bIhx53sDnCelypHjva--U7clFdjyhYKjkv8RiVQVSk25XOHTDnZ042w-oLzD15EBsEyMJ4Sx3Wu7LWXgZ0OL7RimXN0Avno3rC9ha1sYaiyrHGVPk84C705i32qgiuA9FOQx6QbPUWpjEPly9vXRjhnF4gnPLZVspGCuuiWAznMdQpUaXoidqdcQZkTFStijFbzoTWX_TruhMgefEm0lYLA0798JTun2sItICzhItlxQEPLvCNr7o9M_BelXHbLZc3EfaHkonFSvp3uuXGaEQ&h=g_S_TV80U6kzAY8tchJG0uNHNg8_L6Ap_viqzxosRag - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:34:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview&t=638327071845386830&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G_DpIjY0zlOurCHmu3pVQxhTKhyQhb0p6xbrZebVlHzP2qfmCt8jmeFnOi_hb2sn8bIhx53sDnCelypHjva--U7clFdjyhYKjkv8RiVQVSk25XOHTDnZ042w-oLzD15EBsEyMJ4Sx3Wu7LWXgZ0OL7RimXN0Avno3rC9ha1sYaiyrHGVPk84C705i32qgiuA9FOQx6QbPUWpjEPly9vXRjhnF4gnPLZVspGCuuiWAznMdQpUaXoidqdcQZkTFStijFbzoTWX_TruhMgefEm0lYLA0798JTun2sItICzhItlxQEPLvCNr7o9M_BelXHbLZc3EfaHkonFSvp3uuXGaEQ&h=g_S_TV80U6kzAY8tchJG0uNHNg8_L6Ap_viqzxosRag - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview&t=638327071845386830&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G_DpIjY0zlOurCHmu3pVQxhTKhyQhb0p6xbrZebVlHzP2qfmCt8jmeFnOi_hb2sn8bIhx53sDnCelypHjva--U7clFdjyhYKjkv8RiVQVSk25XOHTDnZ042w-oLzD15EBsEyMJ4Sx3Wu7LWXgZ0OL7RimXN0Avno3rC9ha1sYaiyrHGVPk84C705i32qgiuA9FOQx6QbPUWpjEPly9vXRjhnF4gnPLZVspGCuuiWAznMdQpUaXoidqdcQZkTFStijFbzoTWX_TruhMgefEm0lYLA0798JTun2sItICzhItlxQEPLvCNr7o9M_BelXHbLZc3EfaHkonFSvp3uuXGaEQ&h=g_S_TV80U6kzAY8tchJG0uNHNg8_L6Ap_viqzxosRag - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:35:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/9b184e56-7b6d-416a-bf46-f937e52c3298?api-version=2023-09-15-preview&t=638327071845386830&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G_DpIjY0zlOurCHmu3pVQxhTKhyQhb0p6xbrZebVlHzP2qfmCt8jmeFnOi_hb2sn8bIhx53sDnCelypHjva--U7clFdjyhYKjkv8RiVQVSk25XOHTDnZ042w-oLzD15EBsEyMJ4Sx3Wu7LWXgZ0OL7RimXN0Avno3rC9ha1sYaiyrHGVPk84C705i32qgiuA9FOQx6QbPUWpjEPly9vXRjhnF4gnPLZVspGCuuiWAznMdQpUaXoidqdcQZkTFStijFbzoTWX_TruhMgefEm0lYLA0798JTun2sItICzhItlxQEPLvCNr7o9M_BelXHbLZc3EfaHkonFSvp3uuXGaEQ&h=g_S_TV80U6kzAY8tchJG0uNHNg8_L6Ap_viqzxosRag - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:16.7457326Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2930' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:16.7457326Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2930' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:35:16.7457326Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000003-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:35:16.7457326Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2930' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/aca903b2-24a1-43c9-af9e-b0fa618051a6?api-version=2023-09-15&t=638327073719744108&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=EyqHijGVTJOenrEHFxCnAsNiZkN7GTIsmxMk0SltmYieiM5scL6u6Aa8DZTjldAd4uqDImpfj0RdA78L3j4YmP-gNvJMCjsEwoElofnQKgN42cISY-61oQrxYkc-Vfxuqj5qy5EWwICLnO_AzHXjf-g3Wgt75whWHexRenJxAgJamoWZ4a8fn2fAsySDk0f9H_LkCJV7bapiC2nXYsd1lFgzvZoBHe2HwQ3o_0zegYOamtn6RIU4UdS6ARa1sby0AXr0mOV4Kji0IaSZnEsgGGzBBRxtpdgkVa2qqM9Q-sRoEYasKBEPWoamfQe0GP9FDDG_nWwvgZTNld8aeUAuQA&h=p4tOOxBqoVvWSIh9JruDE8Q0Ybsqt14-dzQvuNsKQC4 - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:11 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/aca903b2-24a1-43c9-af9e-b0fa618051a6?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/aca903b2-24a1-43c9-af9e-b0fa618051a6?api-version=2023-09-15&t=638327073719744108&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=EyqHijGVTJOenrEHFxCnAsNiZkN7GTIsmxMk0SltmYieiM5scL6u6Aa8DZTjldAd4uqDImpfj0RdA78L3j4YmP-gNvJMCjsEwoElofnQKgN42cISY-61oQrxYkc-Vfxuqj5qy5EWwICLnO_AzHXjf-g3Wgt75whWHexRenJxAgJamoWZ4a8fn2fAsySDk0f9H_LkCJV7bapiC2nXYsd1lFgzvZoBHe2HwQ3o_0zegYOamtn6RIU4UdS6ARa1sby0AXr0mOV4Kji0IaSZnEsgGGzBBRxtpdgkVa2qqM9Q-sRoEYasKBEPWoamfQe0GP9FDDG_nWwvgZTNld8aeUAuQA&h=p4tOOxBqoVvWSIh9JruDE8Q0Ybsqt14-dzQvuNsKQC4 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/aca903b2-24a1-43c9-af9e-b0fa618051a6?api-version=2023-09-15&t=638327073719744108&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=EyqHijGVTJOenrEHFxCnAsNiZkN7GTIsmxMk0SltmYieiM5scL6u6Aa8DZTjldAd4uqDImpfj0RdA78L3j4YmP-gNvJMCjsEwoElofnQKgN42cISY-61oQrxYkc-Vfxuqj5qy5EWwICLnO_AzHXjf-g3Wgt75whWHexRenJxAgJamoWZ4a8fn2fAsySDk0f9H_LkCJV7bapiC2nXYsd1lFgzvZoBHe2HwQ3o_0zegYOamtn6RIU4UdS6ARa1sby0AXr0mOV4Kji0IaSZnEsgGGzBBRxtpdgkVa2qqM9Q-sRoEYasKBEPWoamfQe0GP9FDDG_nWwvgZTNld8aeUAuQA&h=p4tOOxBqoVvWSIh9JruDE8Q0Ybsqt14-dzQvuNsKQC4 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Z2w3AIw5AeY=","_etag":"\"00000000-0000-0000-fd00-5235c40801d9\"","_ts":1697110580}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '417' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:36:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T11:36:44Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T11:36:44Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T11:36:44Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T11:36:44Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli000003","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","oldestRestorableTime":"2023-10-12T11:35:17Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","oldestRestorableTime":"2023-10-12T11:35:54Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T11:36:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T11:36:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","oldestRestorableTime":"2023-10-12T11:33:30Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19Z","oldestRestorableTime":"2023-10-12T11:35:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T11:36:45Z","restorableLocations":[]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","oldestRestorableTime":"2023-10-12T10:58:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-10-12T11:23:32Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","oldestRestorableTime":"2023-10-12T11:27:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T11:36:46Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '296911' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:36:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_account_restore_using_create000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001","name":"cli_test_cosmosdb_table_account_restore_using_create000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table_account_restore_using_create","date":"2023-10-12T11:32:52Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '481' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:40:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Restore", - "restoreParameters": {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96", - "restoreTimestampInUtc": "2023-10-12T11:39:17.000Z", "restoreMode": "PointInTime"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '537' - Content-Type: - - application/json - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:40:54.232029Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"94c957ff-67b6-48df-883e-533e1a410a0f","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","restoreTimestampInUtc":"2023-10-12T11:39:17Z","sourceBackupLocation":"West - US 2","tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:40:54.232029Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:40:54.232029Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:40:54.232029Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:40:54.232029Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - cache-control: - - no-store, no-cache - content-length: - - '2894' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:40:56 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:40:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:41:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:42:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:43:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:44:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:45:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:46:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:47:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:48:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:49:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:50:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:51:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/fa00f4ae-5a3e-4db0-a787-d91f19004de3?api-version=2023-09-15-preview&t=638327076572255554&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=VgLTbBPFM4m3jxOotlLK16P_2ODjxmVflopMzyU_GXnIMLJA9CFhQYCs7J-vjP1WPovcuQio1ZbbNiySk7XEcjoOsl7ZnbNUb07RRVNcIDi4khOg1RFc-JWcupgGcMatCQob34ZYDsDpY00xLl3VUAPsGZIoN54C1pQZXWlpCGNysT5b5S93Okp5t7VWg8F6uZk3c81a3qOV7IMcIPTF2BsPCe3pSf-mNLMHPMEsTwLJ0SY3vhRc-C-_4hToZpJ82n_lw0UM2Viywv4Xa0La63duM06ZqB8u0Ik-gsXa-9Of6EgLjILvemGC995Ye0SGrvw3rYInfMsnP6MfPvwPXA&h=yZWj_t6j6PHRm-pLWaY_eFsENBIByzsktSBMfjXVDns - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:57:36.7275292Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"94c957ff-67b6-48df-883e-533e1a410a0f","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","restoreTimestampInUtc":"2023-10-12T11:39:17Z","sourceBackupLocation":"West - US 2","tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3257' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --is-restore-request --restore-source --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:57:36.7275292Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"94c957ff-67b6-48df-883e-533e1a410a0f","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","restoreTimestampInUtc":"2023-10-12T11:39:17Z","sourceBackupLocation":"West - US 2","tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3257' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_account_restore_using_create000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:57:36.7275292Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","tableEndpoint":"https://cli000004.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"94c957ff-67b6-48df-883e-533e1a410a0f","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus2","locationName":"West - US 2","documentEndpoint":"https://cli000004-westus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus2","locationName":"West - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","restoreTimestampInUtc":"2023-10-12T11:39:17Z","sourceBackupLocation":"West - US 2","tablesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:57:36.7275292Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3257' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_backupinfo.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_backupinfo.yaml deleted file mode 100644 index 6a3467188d5..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_backupinfo.yaml +++ /dev/null @@ -1,1425 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DocumentDB/databaseAccounts/cli000003'' - under resource group ''cli_test_cosmosdb_table_backupinfo000001'' was not - found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '259' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:59:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_backupinfo000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001","name":"cli_test_cosmosdb_table_backupinfo000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table_backupinfo","date":"2023-10-12T11:59:05Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '427' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:59:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '387' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:59:12.1763695Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"8216217b-65d0-46b2-a6eb-85dece125835","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:59:12.1763695Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:59:12.1763695Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:12.1763695Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:12.1763695Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ac8ccb9e-1131-4410-86ac-40b58d7eeb2a?api-version=2023-09-15-preview&t=638327087537182720&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dc9Ybn_QB9c5UhzPopM0Fl7UDKVl20laKn1b3xNAQyWRyyKXYNwUy3OKM_qEplxebYdT2J23dd_7reRE4ZwjK23fxCljUzJyrJbej5ZajaRN05uLq2WaHPMwdl-Flif86slUJqygJJsRbSrS_02Sf4-5hCrZjinEQE6zanK6IGdSbGKtc-OnidT_AtRFa5fDTIpBDhBBQeudKGhQvJ8bDPxt7v1SLakzgJwqfy8-tIu5jtBPTTLGcFdnx0nhucuyANnioGAS2oQjWozNKe1MlZQjgZ2qL0v527uNH50PLJ3EFi0vJ6osQP3-QvRILifta9JAiJ4rG3vquEhu80ohZQ&h=vDZQC7ZlOjzewgUak3Sw4JId5-G-TX3XW6KeH89XU5s - cache-control: - - no-store, no-cache - content-length: - - '2487' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:13 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/ac8ccb9e-1131-4410-86ac-40b58d7eeb2a?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ac8ccb9e-1131-4410-86ac-40b58d7eeb2a?api-version=2023-09-15-preview&t=638327087537182720&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dc9Ybn_QB9c5UhzPopM0Fl7UDKVl20laKn1b3xNAQyWRyyKXYNwUy3OKM_qEplxebYdT2J23dd_7reRE4ZwjK23fxCljUzJyrJbej5ZajaRN05uLq2WaHPMwdl-Flif86slUJqygJJsRbSrS_02Sf4-5hCrZjinEQE6zanK6IGdSbGKtc-OnidT_AtRFa5fDTIpBDhBBQeudKGhQvJ8bDPxt7v1SLakzgJwqfy8-tIu5jtBPTTLGcFdnx0nhucuyANnioGAS2oQjWozNKe1MlZQjgZ2qL0v527uNH50PLJ3EFi0vJ6osQP3-QvRILifta9JAiJ4rG3vquEhu80ohZQ&h=vDZQC7ZlOjzewgUak3Sw4JId5-G-TX3XW6KeH89XU5s - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ac8ccb9e-1131-4410-86ac-40b58d7eeb2a?api-version=2023-09-15-preview&t=638327087537182720&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dc9Ybn_QB9c5UhzPopM0Fl7UDKVl20laKn1b3xNAQyWRyyKXYNwUy3OKM_qEplxebYdT2J23dd_7reRE4ZwjK23fxCljUzJyrJbej5ZajaRN05uLq2WaHPMwdl-Flif86slUJqygJJsRbSrS_02Sf4-5hCrZjinEQE6zanK6IGdSbGKtc-OnidT_AtRFa5fDTIpBDhBBQeudKGhQvJ8bDPxt7v1SLakzgJwqfy8-tIu5jtBPTTLGcFdnx0nhucuyANnioGAS2oQjWozNKe1MlZQjgZ2qL0v527uNH50PLJ3EFi0vJ6osQP3-QvRILifta9JAiJ4rG3vquEhu80ohZQ&h=vDZQC7ZlOjzewgUak3Sw4JId5-G-TX3XW6KeH89XU5s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ac8ccb9e-1131-4410-86ac-40b58d7eeb2a?api-version=2023-09-15-preview&t=638327087537182720&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dc9Ybn_QB9c5UhzPopM0Fl7UDKVl20laKn1b3xNAQyWRyyKXYNwUy3OKM_qEplxebYdT2J23dd_7reRE4ZwjK23fxCljUzJyrJbej5ZajaRN05uLq2WaHPMwdl-Flif86slUJqygJJsRbSrS_02Sf4-5hCrZjinEQE6zanK6IGdSbGKtc-OnidT_AtRFa5fDTIpBDhBBQeudKGhQvJ8bDPxt7v1SLakzgJwqfy8-tIu5jtBPTTLGcFdnx0nhucuyANnioGAS2oQjWozNKe1MlZQjgZ2qL0v527uNH50PLJ3EFi0vJ6osQP3-QvRILifta9JAiJ4rG3vquEhu80ohZQ&h=vDZQC7ZlOjzewgUak3Sw4JId5-G-TX3XW6KeH89XU5s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ac8ccb9e-1131-4410-86ac-40b58d7eeb2a?api-version=2023-09-15-preview&t=638327087537182720&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dc9Ybn_QB9c5UhzPopM0Fl7UDKVl20laKn1b3xNAQyWRyyKXYNwUy3OKM_qEplxebYdT2J23dd_7reRE4ZwjK23fxCljUzJyrJbej5ZajaRN05uLq2WaHPMwdl-Flif86slUJqygJJsRbSrS_02Sf4-5hCrZjinEQE6zanK6IGdSbGKtc-OnidT_AtRFa5fDTIpBDhBBQeudKGhQvJ8bDPxt7v1SLakzgJwqfy8-tIu5jtBPTTLGcFdnx0nhucuyANnioGAS2oQjWozNKe1MlZQjgZ2qL0v527uNH50PLJ3EFi0vJ6osQP3-QvRILifta9JAiJ4rG3vquEhu80ohZQ&h=vDZQC7ZlOjzewgUak3Sw4JId5-G-TX3XW6KeH89XU5s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ac8ccb9e-1131-4410-86ac-40b58d7eeb2a?api-version=2023-09-15-preview&t=638327087537182720&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dc9Ybn_QB9c5UhzPopM0Fl7UDKVl20laKn1b3xNAQyWRyyKXYNwUy3OKM_qEplxebYdT2J23dd_7reRE4ZwjK23fxCljUzJyrJbej5ZajaRN05uLq2WaHPMwdl-Flif86slUJqygJJsRbSrS_02Sf4-5hCrZjinEQE6zanK6IGdSbGKtc-OnidT_AtRFa5fDTIpBDhBBQeudKGhQvJ8bDPxt7v1SLakzgJwqfy8-tIu5jtBPTTLGcFdnx0nhucuyANnioGAS2oQjWozNKe1MlZQjgZ2qL0v527uNH50PLJ3EFi0vJ6osQP3-QvRILifta9JAiJ4rG3vquEhu80ohZQ&h=vDZQC7ZlOjzewgUak3Sw4JId5-G-TX3XW6KeH89XU5s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ac8ccb9e-1131-4410-86ac-40b58d7eeb2a?api-version=2023-09-15-preview&t=638327087537182720&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Dc9Ybn_QB9c5UhzPopM0Fl7UDKVl20laKn1b3xNAQyWRyyKXYNwUy3OKM_qEplxebYdT2J23dd_7reRE4ZwjK23fxCljUzJyrJbej5ZajaRN05uLq2WaHPMwdl-Flif86slUJqygJJsRbSrS_02Sf4-5hCrZjinEQE6zanK6IGdSbGKtc-OnidT_AtRFa5fDTIpBDhBBQeudKGhQvJ8bDPxt7v1SLakzgJwqfy8-tIu5jtBPTTLGcFdnx0nhucuyANnioGAS2oQjWozNKe1MlZQjgZ2qL0v527uNH50PLJ3EFi0vJ6osQP3-QvRILifta9JAiJ4rG3vquEhu80ohZQ&h=vDZQC7ZlOjzewgUak3Sw4JId5-G-TX3XW6KeH89XU5s - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T12:01:04.8328653Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"8216217b-65d0-46b2-a6eb-85dece125835","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2912' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --kind --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T12:01:04.8328653Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"8216217b-65d0-46b2-a6eb-85dece125835","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2912' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T12:01:04.8328653Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"8216217b-65d0-46b2-a6eb-85dece125835","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:01:04.8328653Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2912' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Owner resource does not exist\\\"]}\\r\\nActivityId: - 1fb1fbbb-68f7-11ee-a01b-9c7bef43f49d, Request URI: /apps/a66f388f-1e4a-41cd-85b5-531d9b3cf09f/services/e37ab4c3-362c-4961-99ee-66809b884874/partitions/b3c1c9c0-1e68-4bd9-9fc0-79cd8fe86930/replicas/133147707046129645s, - RequestStats: \\r\\nRequestStartTime: 2023-10-12T12:01:50.8677156Z, RequestEndTime: - 2023-10-12T12:01:50.8694218Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2023-10-12T12:00:53.7449034Z\\\",\\\"cpu\\\":0.369,\\\"memory\\\":647701912.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0707,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1349},{\\\"dateUtc\\\":\\\"2023-10-12T12:01:03.7549923Z\\\",\\\"cpu\\\":1.090,\\\"memory\\\":647697532.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0315,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1349},{\\\"dateUtc\\\":\\\"2023-10-12T12:01:13.7650419Z\\\",\\\"cpu\\\":0.439,\\\"memory\\\":647675024.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0476,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1349},{\\\"dateUtc\\\":\\\"2023-10-12T12:01:23.7750950Z\\\",\\\"cpu\\\":0.249,\\\"memory\\\":647716096.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0322,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1347},{\\\"dateUtc\\\":\\\"2023-10-12T12:01:33.7851494Z\\\",\\\"cpu\\\":0.312,\\\"memory\\\":647692304.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0309,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1348},{\\\"dateUtc\\\":\\\"2023-10-12T12:01:43.7951904Z\\\",\\\"cpu\\\":0.222,\\\"memory\\\":647693132.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0509,\\\"availableThreads\\\":32763,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":1351}]}\\r\\nRequestStart: - 2023-10-12T12:01:50.8679640Z; ResponseTime: 2023-10-12T12:01:50.8694130Z; - StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/a66f388f-1e4a-41cd-85b5-531d9b3cf09f/services/e37ab4c3-362c-4961-99ee-66809b884874/partitions/b3c1c9c0-1e68-4bd9-9fc0-79cd8fe86930/replicas/133147707046129645s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.781, ActivityId: - 1fb1fbbb-68f7-11ee-a01b-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 12:01:50 PM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 12:01:50 PM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 12:01:50 PM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 12:01:50 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T12:01:50.8678805Z\\\", - \\\"durationInMs\\\": 0.0112},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T12:01:50.8678917Z\\\", \\\"durationInMs\\\": - 0.0018},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T12:01:50.8678935Z\\\", - \\\"durationInMs\\\": 0.0617},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T12:01:50.8679552Z\\\", \\\"durationInMs\\\": 1.062},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T12:01:50.8690172Z\\\", - \\\"durationInMs\\\": 0.0447},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T12:01:50.8690619Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T12:01:50.8358867Z\\\",\\\"lastSend\\\":\\\"2023-10-12T12:01:50.8359019Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T12:01:50.8525056Z\\\"},\\\"requestSizeInBytes\\\":485,\\\"responseMetadataSizeInBytes\\\":141,\\\"responseBodySizeInBytes\\\":44};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2023-10-12T12:01:50.8680194Z; - ResponseTime: 2023-10-12T12:01:50.8694218Z; StoreResult: StorePhysicalAddress: - rntbd://10.0.1.6:11000/apps/a66f388f-1e4a-41cd-85b5-531d9b3cf09f/services/e37ab4c3-362c-4961-99ee-66809b884874/partitions/b3c1c9c0-1e68-4bd9-9fc0-79cd8fe86930/replicas/133147707008473520s, - LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, - UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.81, ActivityId: - 1fb1fbbb-68f7-11ee-a01b-9c7bef43f49d, RetryAfterInMs: , ReplicaHealthStatuses: - [(port: 11000 | status: Unknown | lkt: 10/12/2023 12:01:50 PM),(port: 11000 - | status: Unknown | lkt: 10/12/2023 12:01:50 PM),(port: 11000 | status: Unknown - | lkt: 10/12/2023 12:01:50 PM),(port: 11000 | status: Unknown | lkt: 10/12/2023 - 12:01:50 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": - \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T12:01:50.8679661Z\\\", - \\\"durationInMs\\\": 0.0042},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", - \\\"startTimeUtc\\\": \\\"2023-10-12T12:01:50.8679703Z\\\", \\\"durationInMs\\\": - 0.002},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T12:01:50.8679723Z\\\", - \\\"durationInMs\\\": 0.0419},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T12:01:50.8680142Z\\\", \\\"durationInMs\\\": 1.0167},{\\\"event\\\": - \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2023-10-12T12:01:50.8690309Z\\\", - \\\"durationInMs\\\": 0.0547},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": - \\\"2023-10-12T12:01:50.8690856Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2023-10-12T12:01:50.7967875Z\\\",\\\"lastSend\\\":\\\"2023-10-12T12:01:50.7968113Z\\\",\\\"lastReceive\\\":\\\"2023-10-12T12:01:50.8282922Z\\\"},\\\"requestSizeInBytes\\\":485,\\\"responseMetadataSizeInBytes\\\":141,\\\"responseBodySizeInBytes\\\":44};\\r\\n - ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, - Request URI: /dbs/TablesDB/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '7045' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 404 - message: NotFound -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {"throughput": - 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/228167ca-1fb7-4419-ad82-cafe53dc6fe0?api-version=2023-09-15&t=638327089129368841&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=DM20KI0QTxblUhV9s9fUmLZ1BIp-5ea3BFhOph8FDr6VTPsmIIfrV0SVrKAnTBmjI6cGNewuYpBVK1YL1fahNSsJC_RO58lh2VksugrTBafl_RMq6L5ktMbRjtstq5tQVdPHI4cohqPd8FKSbmSpGXKqe8D_UWL-Y58XOuYFY-_BV5vh7Dbpw4XD8EpKdxBp7Wboie87cPvO6noqH1tvRZbmzqt3BKJCMh-EZKoJOKB6WCcj5q0Y5Lzf1L_lvGQjQWkcEFAJVgMPgyzK1fhh79Jh9qGA5gOHZAXU_ZCmPVxMovOPBBYccebB-_LseuQoEfX_nMkO4tqC9Lw0l-1AIQ&h=3n2inb3PaUeQy2dl-WK0JXC6QW7mflciCV_lnZG9kMQ - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:52 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/228167ca-1fb7-4419-ad82-cafe53dc6fe0?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/228167ca-1fb7-4419-ad82-cafe53dc6fe0?api-version=2023-09-15&t=638327089129368841&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=DM20KI0QTxblUhV9s9fUmLZ1BIp-5ea3BFhOph8FDr6VTPsmIIfrV0SVrKAnTBmjI6cGNewuYpBVK1YL1fahNSsJC_RO58lh2VksugrTBafl_RMq6L5ktMbRjtstq5tQVdPHI4cohqPd8FKSbmSpGXKqe8D_UWL-Y58XOuYFY-_BV5vh7Dbpw4XD8EpKdxBp7Wboie87cPvO6noqH1tvRZbmzqt3BKJCMh-EZKoJOKB6WCcj5q0Y5Lzf1L_lvGQjQWkcEFAJVgMPgyzK1fhh79Jh9qGA5gOHZAXU_ZCmPVxMovOPBBYccebB-_LseuQoEfX_nMkO4tqC9Lw0l-1AIQ&h=3n2inb3PaUeQy2dl-WK0JXC6QW7mflciCV_lnZG9kMQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/228167ca-1fb7-4419-ad82-cafe53dc6fe0?api-version=2023-09-15&t=638327089129368841&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=DM20KI0QTxblUhV9s9fUmLZ1BIp-5ea3BFhOph8FDr6VTPsmIIfrV0SVrKAnTBmjI6cGNewuYpBVK1YL1fahNSsJC_RO58lh2VksugrTBafl_RMq6L5ktMbRjtstq5tQVdPHI4cohqPd8FKSbmSpGXKqe8D_UWL-Y58XOuYFY-_BV5vh7Dbpw4XD8EpKdxBp7Wboie87cPvO6noqH1tvRZbmzqt3BKJCMh-EZKoJOKB6WCcj5q0Y5Lzf1L_lvGQjQWkcEFAJVgMPgyzK1fhh79Jh9qGA5gOHZAXU_ZCmPVxMovOPBBYccebB-_LseuQoEfX_nMkO4tqC9Lw0l-1AIQ&h=3n2inb3PaUeQy2dl-WK0JXC6QW7mflciCV_lnZG9kMQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"WQMoALoL4d8=","_etag":"\"00000000-0000-0000-fd03-ea67440201d9\"","_ts":1697112124}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '399' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"WQMoALoL4d8=","_etag":"\"00000000-0000-0000-fd03-ea67440201d9\"","_ts":1697112124}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '399' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:26 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/5b5d2542-ef9f-4ca7-943b-e5113180ca44?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/5b5d2542-ef9f-4ca7-943b-e5113180ca44?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:27 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/5b5d2542-ef9f-4ca7-943b-e5113180ca44?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/5b5d2542-ef9f-4ca7-943b-e5113180ca44?api-version=2023-09-15-preview - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 12:02:32 PM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"WQMoALoL4d8=","_etag":"\"00000000-0000-0000-fd03-ea67440201d9\"","_ts":1697112124}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '399' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:00 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/acc7586c-7ab7-481f-950a-1ebd10009f1c?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/acc7586c-7ab7-481f-950a-1ebd10009f1c?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:00 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/acc7586c-7ab7-481f-950a-1ebd10009f1c?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/acc7586c-7ab7-481f-950a-1ebd10009f1c?api-version=2023-09-15-preview - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 12:03:06 PM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"WQMoALoL4d8=","_etag":"\"00000000-0000-0000-fd03-ea67440201d9\"","_ts":1697112124}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '399' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:34 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/6f29782e-a09d-4a5c-8f0e-7189dbf55c14?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/6f29782e-a09d-4a5c-8f0e-7189dbf55c14?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:34 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/6f29782e-a09d-4a5c-8f0e-7189dbf55c14?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table retrieve-latest-backup-time - Connection: - - keep-alive - ParameterSetName: - - -g -a -n -l - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_backupinfo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/retrieveContinuousBackupInformation/operationResults/6f29782e-a09d-4a5c-8f0e-7189dbf55c14?api-version=2023-09-15-preview - response: - body: - string: '{"continuousBackupInformation":{"latestRestorableTimestamp":"10/12/2023 - 12:03:40 PM"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '86' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_restorable_commands.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_restorable_commands.yaml deleted file mode 100644 index 213aa52efa8..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table_restorable_commands.yaml +++ /dev/null @@ -1,920 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_restorable_commands000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001","name":"cli_test_cosmosdb_table_restorable_commands000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table_restorable_commands","date":"2023-10-12T11:52:47Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '454' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:52:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], - "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", - "continuousModeProperties": {"tier": "Continuous30Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '387' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:52:56.2137977Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:52:56.2137977Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:52:56.2137977Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:56.2137977Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:52:56.2137977Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview&t=638327083777254753&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iZgoVEy3wcMkAjDfjZlfGf2fqNZGDi4YoyT3gLsk1fGRjDKzVc1TcUbK8PtrX-pG6TOUEf7riknq-WQxn8jtY-p4-7-60oFsZ-YhgprVW6Oa1vFmWzA5zzywO_iSd7NPQMun1R00s2Va0BHbqUy7S4cHsStiANboxa-U-g84JdZe8aLBkuDb6mVbIqU9iiWoToAudwgzQtib-GMgPK5UGQMbfux-GfoQ87A86B8tB67MS35hFDdx_mBpYfONEZ_sumdZOL9e64_eC4x1nu6RWZg-Gpue1M_yfc7JqyRn6xri0-GAwYQHT4ieLphh8tiVQusMZqkaorlp9zWXwWPybg&h=3EOr2pfPJWdHRjmoACZDiRT7Wdy5E5N4ZIC4VCqqP9A - cache-control: - - no-store, no-cache - content-length: - - '2496' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:57 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview&t=638327083777254753&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iZgoVEy3wcMkAjDfjZlfGf2fqNZGDi4YoyT3gLsk1fGRjDKzVc1TcUbK8PtrX-pG6TOUEf7riknq-WQxn8jtY-p4-7-60oFsZ-YhgprVW6Oa1vFmWzA5zzywO_iSd7NPQMun1R00s2Va0BHbqUy7S4cHsStiANboxa-U-g84JdZe8aLBkuDb6mVbIqU9iiWoToAudwgzQtib-GMgPK5UGQMbfux-GfoQ87A86B8tB67MS35hFDdx_mBpYfONEZ_sumdZOL9e64_eC4x1nu6RWZg-Gpue1M_yfc7JqyRn6xri0-GAwYQHT4ieLphh8tiVQusMZqkaorlp9zWXwWPybg&h=3EOr2pfPJWdHRjmoACZDiRT7Wdy5E5N4ZIC4VCqqP9A - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:52:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview&t=638327083777254753&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iZgoVEy3wcMkAjDfjZlfGf2fqNZGDi4YoyT3gLsk1fGRjDKzVc1TcUbK8PtrX-pG6TOUEf7riknq-WQxn8jtY-p4-7-60oFsZ-YhgprVW6Oa1vFmWzA5zzywO_iSd7NPQMun1R00s2Va0BHbqUy7S4cHsStiANboxa-U-g84JdZe8aLBkuDb6mVbIqU9iiWoToAudwgzQtib-GMgPK5UGQMbfux-GfoQ87A86B8tB67MS35hFDdx_mBpYfONEZ_sumdZOL9e64_eC4x1nu6RWZg-Gpue1M_yfc7JqyRn6xri0-GAwYQHT4ieLphh8tiVQusMZqkaorlp9zWXwWPybg&h=3EOr2pfPJWdHRjmoACZDiRT7Wdy5E5N4ZIC4VCqqP9A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview&t=638327083777254753&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iZgoVEy3wcMkAjDfjZlfGf2fqNZGDi4YoyT3gLsk1fGRjDKzVc1TcUbK8PtrX-pG6TOUEf7riknq-WQxn8jtY-p4-7-60oFsZ-YhgprVW6Oa1vFmWzA5zzywO_iSd7NPQMun1R00s2Va0BHbqUy7S4cHsStiANboxa-U-g84JdZe8aLBkuDb6mVbIqU9iiWoToAudwgzQtib-GMgPK5UGQMbfux-GfoQ87A86B8tB67MS35hFDdx_mBpYfONEZ_sumdZOL9e64_eC4x1nu6RWZg-Gpue1M_yfc7JqyRn6xri0-GAwYQHT4ieLphh8tiVQusMZqkaorlp9zWXwWPybg&h=3EOr2pfPJWdHRjmoACZDiRT7Wdy5E5N4ZIC4VCqqP9A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:53:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview&t=638327083777254753&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iZgoVEy3wcMkAjDfjZlfGf2fqNZGDi4YoyT3gLsk1fGRjDKzVc1TcUbK8PtrX-pG6TOUEf7riknq-WQxn8jtY-p4-7-60oFsZ-YhgprVW6Oa1vFmWzA5zzywO_iSd7NPQMun1R00s2Va0BHbqUy7S4cHsStiANboxa-U-g84JdZe8aLBkuDb6mVbIqU9iiWoToAudwgzQtib-GMgPK5UGQMbfux-GfoQ87A86B8tB67MS35hFDdx_mBpYfONEZ_sumdZOL9e64_eC4x1nu6RWZg-Gpue1M_yfc7JqyRn6xri0-GAwYQHT4ieLphh8tiVQusMZqkaorlp9zWXwWPybg&h=3EOr2pfPJWdHRjmoACZDiRT7Wdy5E5N4ZIC4VCqqP9A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview&t=638327083777254753&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iZgoVEy3wcMkAjDfjZlfGf2fqNZGDi4YoyT3gLsk1fGRjDKzVc1TcUbK8PtrX-pG6TOUEf7riknq-WQxn8jtY-p4-7-60oFsZ-YhgprVW6Oa1vFmWzA5zzywO_iSd7NPQMun1R00s2Va0BHbqUy7S4cHsStiANboxa-U-g84JdZe8aLBkuDb6mVbIqU9iiWoToAudwgzQtib-GMgPK5UGQMbfux-GfoQ87A86B8tB67MS35hFDdx_mBpYfONEZ_sumdZOL9e64_eC4x1nu6RWZg-Gpue1M_yfc7JqyRn6xri0-GAwYQHT4ieLphh8tiVQusMZqkaorlp9zWXwWPybg&h=3EOr2pfPJWdHRjmoACZDiRT7Wdy5E5N4ZIC4VCqqP9A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:54:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview&t=638327083777254753&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iZgoVEy3wcMkAjDfjZlfGf2fqNZGDi4YoyT3gLsk1fGRjDKzVc1TcUbK8PtrX-pG6TOUEf7riknq-WQxn8jtY-p4-7-60oFsZ-YhgprVW6Oa1vFmWzA5zzywO_iSd7NPQMun1R00s2Va0BHbqUy7S4cHsStiANboxa-U-g84JdZe8aLBkuDb6mVbIqU9iiWoToAudwgzQtib-GMgPK5UGQMbfux-GfoQ87A86B8tB67MS35hFDdx_mBpYfONEZ_sumdZOL9e64_eC4x1nu6RWZg-Gpue1M_yfc7JqyRn6xri0-GAwYQHT4ieLphh8tiVQusMZqkaorlp9zWXwWPybg&h=3EOr2pfPJWdHRjmoACZDiRT7Wdy5E5N4ZIC4VCqqP9A - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a90d588c-da49-4168-ae9d-2247f969be85?api-version=2023-09-15-preview&t=638327083777254753&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=iZgoVEy3wcMkAjDfjZlfGf2fqNZGDi4YoyT3gLsk1fGRjDKzVc1TcUbK8PtrX-pG6TOUEf7riknq-WQxn8jtY-p4-7-60oFsZ-YhgprVW6Oa1vFmWzA5zzywO_iSd7NPQMun1R00s2Va0BHbqUy7S4cHsStiANboxa-U-g84JdZe8aLBkuDb6mVbIqU9iiWoToAudwgzQtib-GMgPK5UGQMbfux-GfoQ87A86B8tB67MS35hFDdx_mBpYfONEZ_sumdZOL9e64_eC4x1nu6RWZg-Gpue1M_yfc7JqyRn6xri0-GAwYQHT4ieLphh8tiVQusMZqkaorlp9zWXwWPybg&h=3EOr2pfPJWdHRjmoACZDiRT7Wdy5E5N4ZIC4VCqqP9A - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:56.1817266Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2921' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:55:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --locations --capabilities - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:56.1817266Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2921' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"East - US 2","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:54:56.1817266Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:54:56.1817266Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2921' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli000002"}, "options": {"throughput": - 1000}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c62eae22-86da-46e7-bb91-1f6c14e55cad?api-version=2023-09-15&t=638327085638650814&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XGe72wA4wNCF1rpdDs5_H4vHYB6G5Y7GJiu7WctbZNIXiv3p8DA6-Yb08iwi0AN7rZ0d-PYzmzcxMeV3sdXRWBUKm8ZFe3eRQWZww1VhMR21wk893hIFEf_cwD4qke3-5MceSRCJYlyyd435QkC_NuOrUJ1CY_Rk13E3cGNaFPC9AlB2GLiBbbzecY3Z9xfctUAR08fbin7Fmiz94T76tvIyr9ejhb85SD0m4dnpclSJLW-wpRK-LvMce65wOonR6w3fZk7kv6eY2PwJ6KT__24xp1hd1OzaGw98FqtJQ3W-2hoN6iduEAmCw7LR8R8M1omksrT4hb_5ZULbDGQ94A&h=uqfz6pHUsC6H57hc7r8GIyq_8hw1X6-aYi_mV2C0HHQ - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:03 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/c62eae22-86da-46e7-bb91-1f6c14e55cad?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c62eae22-86da-46e7-bb91-1f6c14e55cad?api-version=2023-09-15&t=638327085638650814&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XGe72wA4wNCF1rpdDs5_H4vHYB6G5Y7GJiu7WctbZNIXiv3p8DA6-Yb08iwi0AN7rZ0d-PYzmzcxMeV3sdXRWBUKm8ZFe3eRQWZww1VhMR21wk893hIFEf_cwD4qke3-5MceSRCJYlyyd435QkC_NuOrUJ1CY_Rk13E3cGNaFPC9AlB2GLiBbbzecY3Z9xfctUAR08fbin7Fmiz94T76tvIyr9ejhb85SD0m4dnpclSJLW-wpRK-LvMce65wOonR6w3fZk7kv6eY2PwJ6KT__24xp1hd1OzaGw98FqtJQ3W-2hoN6iduEAmCw7LR8R8M1omksrT4hb_5ZULbDGQ94A&h=uqfz6pHUsC6H57hc7r8GIyq_8hw1X6-aYi_mV2C0HHQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c62eae22-86da-46e7-bb91-1f6c14e55cad?api-version=2023-09-15&t=638327085638650814&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=XGe72wA4wNCF1rpdDs5_H4vHYB6G5Y7GJiu7WctbZNIXiv3p8DA6-Yb08iwi0AN7rZ0d-PYzmzcxMeV3sdXRWBUKm8ZFe3eRQWZww1VhMR21wk893hIFEf_cwD4qke3-5MceSRCJYlyyd435QkC_NuOrUJ1CY_Rk13E3cGNaFPC9AlB2GLiBbbzecY3Z9xfctUAR08fbin7Fmiz94T76tvIyr9ejhb85SD0m4dnpclSJLW-wpRK-LvMce65wOonR6w3fZk7kv6eY2PwJ6KT__24xp1hd1OzaGw98FqtJQ3W-2hoN6iduEAmCw7LR8R8M1omksrT4hb_5ZULbDGQ94A&h=uqfz6pHUsC6H57hc7r8GIyq_8hw1X6-aYi_mV2C0HHQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --throughput - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restorable_commands000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ajk0ALh4qqs=","_etag":"\"00000000-0000-0000-fd03-1aca1c0201d9\"","_ts":1697111776}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '408' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account show - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8?api-version=2023-09-15-preview - response: - body: - string: '{"name":"e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","location":"East US - 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","properties":{"accountName":"cli000003","apiType":"Table, - Sql","creationTime":"2023-10-12T11:54:57Z","oldestRestorableTime":"2023-10-12T11:54:57Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5b46be33-e8ff-4c76-b9b4-5b2a1d6cdcfb","creationTime":"2023-10-12T11:54:57Z"}]}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '623' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restorable-table list - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8/restorableTables?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8/restorableTables/be622060-f582-45dc-9360-fa4a157fe8d8","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables","name":"be622060-f582-45dc-9360-fa4a157fe8d8","properties":{"resource":{"_rid":"JXLytAAAAA==","eventTimestamp":"2023-10-12T11:56:16Z","ownerId":"cli000002","ownerResourceId":"ajk0ALh4qqs=","operationType":"Create","CanUndelete":"invalid"}}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '563' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb table restorable-resource list - Connection: - - keep-alive - ParameterSetName: - - --restore-location -l --instance-id --restore-timestamp - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8/restorableTableResources?api-version=2023-09-15-preview&restoreLocation=eastus2&restoreTimestampInUtc=2023-10-12T11%3A56%3A57%2B00%3A00 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8/restorableTableResources/cli000002","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTableResources","name":"cli000002"}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '331' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_xrr.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_xrr.yaml deleted file mode 100644 index 2fdaafff2a4..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_xrr.yaml +++ /dev/null @@ -1,3886 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_cross_region_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001","name":"cli_test_cosmosdb_cross_region_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_xrr","date":"2023-10-12T11:57:56Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:58:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westcentralus", "kind": "GlobalDocumentDB", "properties": - {"locations": [{"locationName": "westcentralus", "failoverPriority": 0, "isZoneRedundant": - false}, {"locationName": "northcentralus", "failoverPriority": 1, "isZoneRedundant": - false}], "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": - "Default", "backupPolicy": {"type": "Continuous", "continuousModeProperties": - {"tier": "Continuous7Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '440' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004","name":"cli-xrr-000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:58:05.2819329Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"25747582-8ac1-4e78-a50d-ae089a50b38f","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:58:05.2819329Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:58:05.2819329Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:58:05.2819329Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:58:05.2819329Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - cache-control: - - no-store, no-cache - content-length: - - '2528' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:07 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/operationResults/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:39 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d6bd70dc-60fd-448e-8068-348ea8d9b38b?api-version=2023-09-15-preview&t=638327086880228645&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=Qda7zwtgL2UiKzSIKIBa5eRmQnhVcPSf3Ag_uNbWVy4GMKX4sWWMoQTrITRzSJ5Le0Ji_e-Jajs9WD4EeL14DaY9toCdaC_eve-lLjorAHVebCLAywCLZ3gf8rSzZMic4vf-wTW7zUadkeezBQLQK4ioGOAju_3fMlLqGJ5362mbfxQz1_QeUnEF69Gd1VvRqyf_xKNfgGghe4L8BG6vd-Q5LjoeFq39n5P3spNc_qfsEXrxjKl8zIfV7TIAy8qwLuW4s8ExNtSmtfCzvHUJdxcBAYYdiLtI0jfpqXvzZ8Ia5qfw9bGTIdSBQ0pzfwVPPkoHW52UobqiGfr4FZStfw&h=mfWNTmR4CgrGRZHEaACPNq2O6oMlm-D2qBptXLlkVo0 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004","name":"cli-xrr-000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:59:57.5434144Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"25747582-8ac1-4e78-a50d-ae089a50b38f","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","failoverPriority":0},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","failoverPriority":1}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3494' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004","name":"cli-xrr-000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:59:57.5434144Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"25747582-8ac1-4e78-a50d-ae089a50b38f","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","failoverPriority":0},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","failoverPriority":1}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3494' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004","name":"cli-xrr-000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:59:57.5434144Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"25747582-8ac1-4e78-a50d-ae089a50b38f","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","failoverPriority":0},{"id":"cli-xrr-000004-northcentralus","locationName":"North - Central US","failoverPriority":1}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:59:57.5434144Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3494' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli-xrr000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '68' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/fa4d41a2-a8ca-4a58-b92a-d5a40a8a7ad6?api-version=2023-09-15&t=638327089685985928&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=il1O7x6xpJ41leQ9GMsAuwqGbBdr1zJuPbemO-mWoc_no6sEUT86f1kJtKQOEtnZebR-vkM4y8-8QR8WmTDwMgJ0YXZpdBqlp1rsrHvtIWZ0AhNNQdWM06VEPZzrevhOqjp0jXHXXYe4V27XIyMJWd5DKs62MaRxU7J5i57P1wqzW-jIR3__or3X2-PGHGtbU0z82ODRFEBbpuGRX6GAw6ASO4aUbYEvOi4lxf9s5qtrThwqvd3Y5Np0oXhriaFzhZHBFe5wyxAFDVmCGi_iEBHM7N8rrM1lL9xL4fZ81PKAbAXNpab0s5yb7vVdoiw9x26aOQMGtIYFz3jxCtCYPw&h=xuTebGatHnARAaYgfPszTO8ZZ8uYyMhtOTvnc-pL33E - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:47 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/operationResults/fa4d41a2-a8ca-4a58-b92a-d5a40a8a7ad6?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/fa4d41a2-a8ca-4a58-b92a-d5a40a8a7ad6?api-version=2023-09-15&t=638327089685985928&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=il1O7x6xpJ41leQ9GMsAuwqGbBdr1zJuPbemO-mWoc_no6sEUT86f1kJtKQOEtnZebR-vkM4y8-8QR8WmTDwMgJ0YXZpdBqlp1rsrHvtIWZ0AhNNQdWM06VEPZzrevhOqjp0jXHXXYe4V27XIyMJWd5DKs62MaRxU7J5i57P1wqzW-jIR3__or3X2-PGHGtbU0z82ODRFEBbpuGRX6GAw6ASO4aUbYEvOi4lxf9s5qtrThwqvd3Y5Np0oXhriaFzhZHBFe5wyxAFDVmCGi_iEBHM7N8rrM1lL9xL4fZ81PKAbAXNpab0s5yb7vVdoiw9x26aOQMGtIYFz3jxCtCYPw&h=xuTebGatHnARAaYgfPszTO8ZZ8uYyMhtOTvnc-pL33E - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/fa4d41a2-a8ca-4a58-b92a-d5a40a8a7ad6?api-version=2023-09-15&t=638327089685985928&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=il1O7x6xpJ41leQ9GMsAuwqGbBdr1zJuPbemO-mWoc_no6sEUT86f1kJtKQOEtnZebR-vkM4y8-8QR8WmTDwMgJ0YXZpdBqlp1rsrHvtIWZ0AhNNQdWM06VEPZzrevhOqjp0jXHXXYe4V27XIyMJWd5DKs62MaRxU7J5i57P1wqzW-jIR3__or3X2-PGHGtbU0z82ODRFEBbpuGRX6GAw6ASO4aUbYEvOi4lxf9s5qtrThwqvd3Y5Np0oXhriaFzhZHBFe5wyxAFDVmCGi_iEBHM7N8rrM1lL9xL4fZ81PKAbAXNpab0s5yb7vVdoiw9x26aOQMGtIYFz3jxCtCYPw&h=xuTebGatHnARAaYgfPszTO8ZZ8uYyMhtOTvnc-pL33E - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli-xrr000003","properties":{"resource":{"id":"cli-xrr000003","_rid":"nU1MAA==","_self":"dbs/nU1MAA==/","_etag":"\"0000d307-0000-0600-0000-6527e06e0000\"","_colls":"colls/","_users":"users/","_ts":1697112174}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '488' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli-xrr000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '269' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/containers/cli-xrr000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8c3a3f-e80c-4d9f-8897-a7a030652479?api-version=2023-09-15-preview&t=638327090015662057&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G14sqxcIIkhh47Fc5GzMVsg_yjb_npDICOHrXlgHcESgPjKkO_8JXCpMHHVsL-0VGc9ACCfPrGLcHqcmOSN0XmOlwtZ5wmhGWP1OSrtd_m99gd2By9quEtH4WBcv0AtpBNixNuBM4MyyNw_uGTwmOZ0qLWP6-PagDX-FlJOOH1DxUCpIb7ej25HAjIdGymkz1sxu2ZX98XPqjcEJ9h23C-UQ9dcaiw3orl60vaWgz5pbIVY1DYUzOfbLhajKCYDtoEwvSjVH4Fef8f9yCDu0GZeVSar8OnuxkUi9SXaQjAYoskwIXww5xRFRLOZqM9bYqoPwvV07C-g3kCumsZ1sFA&h=9e0LjWU3xU4ynhsFGiTWgiebtjZZoPI_yhmPgPh_15g - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:21 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/containers/cli-xrr000002/operationResults/9c8c3a3f-e80c-4d9f-8897-a7a030652479?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8c3a3f-e80c-4d9f-8897-a7a030652479?api-version=2023-09-15-preview&t=638327090015662057&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G14sqxcIIkhh47Fc5GzMVsg_yjb_npDICOHrXlgHcESgPjKkO_8JXCpMHHVsL-0VGc9ACCfPrGLcHqcmOSN0XmOlwtZ5wmhGWP1OSrtd_m99gd2By9quEtH4WBcv0AtpBNixNuBM4MyyNw_uGTwmOZ0qLWP6-PagDX-FlJOOH1DxUCpIb7ej25HAjIdGymkz1sxu2ZX98XPqjcEJ9h23C-UQ9dcaiw3orl60vaWgz5pbIVY1DYUzOfbLhajKCYDtoEwvSjVH4Fef8f9yCDu0GZeVSar8OnuxkUi9SXaQjAYoskwIXww5xRFRLOZqM9bYqoPwvV07C-g3kCumsZ1sFA&h=9e0LjWU3xU4ynhsFGiTWgiebtjZZoPI_yhmPgPh_15g - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8c3a3f-e80c-4d9f-8897-a7a030652479?api-version=2023-09-15-preview&t=638327090015662057&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=G14sqxcIIkhh47Fc5GzMVsg_yjb_npDICOHrXlgHcESgPjKkO_8JXCpMHHVsL-0VGc9ACCfPrGLcHqcmOSN0XmOlwtZ5wmhGWP1OSrtd_m99gd2By9quEtH4WBcv0AtpBNixNuBM4MyyNw_uGTwmOZ0qLWP6-PagDX-FlJOOH1DxUCpIb7ej25HAjIdGymkz1sxu2ZX98XPqjcEJ9h23C-UQ9dcaiw3orl60vaWgz5pbIVY1DYUzOfbLhajKCYDtoEwvSjVH4Fef8f9yCDu0GZeVSar8OnuxkUi9SXaQjAYoskwIXww5xRFRLOZqM9bYqoPwvV07C-g3kCumsZ1sFA&h=9e0LjWU3xU4ynhsFGiTWgiebtjZZoPI_yhmPgPh_15g - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/containers/cli-xrr000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/containers/cli-xrr000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli-xrr000002","properties":{"resource":{"id":"cli-xrr000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"nU1MAO4-mOs=","_ts":1697112210,"_self":"dbs/nU1MAA==/colls/nU1MAO4-mOs=/","_etag":"\"0000d607-0000-0600-0000-6527e0920000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1155' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account show - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f?api-version=2023-09-15-preview - response: - body: - string: '{"name":"25747582-8ac1-4e78-a50d-ae089a50b38f","location":"West Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f","properties":{"accountName":"cli-xrr-000004","apiType":"Sql","creationTime":"2023-10-12T11:59:58Z","oldestRestorableTime":"2023-10-12T11:59:58Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"5a6ae896-018e-4f29-a412-109d3bf0307d","creationTime":"2023-10-12T11:59:59Z"},{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3be6e36a-ebb1-40cb-8726-684141b0d920","creationTime":"2023-10-12T12:02:20Z"}]}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '788' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"25747582-8ac1-4e78-a50d-ae089a50b38f","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f","properties":{"accountName":"cli-xrr-000004","apiType":"Sql","creationTime":"2023-10-12T11:59:58Z","oldestRestorableTime":"2023-10-12T11:59:58Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"5a6ae896-018e-4f29-a412-109d3bf0307d","creationTime":"2023-10-12T11:59:59Z"},{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3be6e36a-ebb1-40cb-8726-684141b0d920","creationTime":"2023-10-12T12:02:20Z"}]}},{"name":"6109f15a-f7c9-4281-90ff-6807547b5711","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711","properties":{"accountName":"cli-xrr-raoo5fc7skywtlqdj","apiType":"Sql","creationTime":"2023-10-12T12:00:33Z","oldestRestorableTime":"2023-10-12T12:00:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bb1627a2-19b4-4e11-8ffc-3b90ed0c08d9","creationTime":"2023-10-12T12:00:34Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","deletionTime":"2023-10-12T11:59:53Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z","deletionTime":"2023-10-12T11:59:53Z"}]}},{"name":"94c957ff-67b6-48df-883e-533e1a410a0f","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/94c957ff-67b6-48df-883e-533e1a410a0f","properties":{"accountName":"cli47ysi4oehr4i","apiType":"Table, - Sql","creationTime":"2023-10-12T11:57:37Z","deletionTime":"2023-10-12T11:59:53Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"62e60087-a9a8-473f-bf0d-862452cf4b3f","creationTime":"2023-10-12T11:57:37Z","deletionTime":"2023-10-12T11:59:53Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","deletionTime":"2023-10-12T12:02:15Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z","deletionTime":"2023-10-12T12:02:15Z"}]}},{"name":"90c8c77c-bf30-4418-a1fe-b470ba082c0d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/90c8c77c-bf30-4418-a1fe-b470ba082c0d","properties":{"accountName":"clipuhnxrraytfl","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:59:58Z","deletionTime":"2023-10-12T12:02:16Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ecab84a4-c268-4f6d-8cf6-b096de66e489","creationTime":"2023-10-12T11:59:58Z","deletionTime":"2023-10-12T12:02:16Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z","deletionTime":"2023-10-12T11:30:47Z"}]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1b0b8cd9-a889-4c9b-b889-7bd093310e25","creationTime":"2023-10-12T11:25:54Z","deletionTime":"2023-10-12T11:30:56Z"}]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ed392ee-a218-46d0-82d0-8fadee0ba43b","creationTime":"2023-10-12T11:30:28Z","deletionTime":"2023-10-12T11:33:27Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"660c29e5-8d7d-496d-84c7-50e7c655fae1","creationTime":"2023-10-12T11:31:23Z","deletionTime":"2023-10-12T11:34:15Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z","deletionTime":"2023-10-12T11:35:08Z"}]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ba9a28f0-933f-4c5c-918a-f136dd6570f0","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","deletionTime":"2023-10-12T11:54:07Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z","deletionTime":"2023-10-12T11:54:07Z"}]}},{"name":"86847e11-666e-4b55-ac44-8804d38f49cb","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/86847e11-666e-4b55-ac44-8804d38f49cb","properties":{"accountName":"cliusrbtic7kqu7","apiType":"Table, - Sql","creationTime":"2023-10-12T11:52:18Z","deletionTime":"2023-10-12T11:54:07Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21e09950-a36b-417c-8c75-f86f5b35fa25","creationTime":"2023-10-12T11:52:18Z","deletionTime":"2023-10-12T11:54:07Z"}]}},{"name":"74a73c0c-2eea-46bf-a4a5-328a67956205","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74a73c0c-2eea-46bf-a4a5-328a67956205","properties":{"accountName":"clinzj5pmfzdhxs","apiType":"Sql","creationTime":"2023-10-12T11:51:13Z","deletionTime":"2023-10-12T11:55:34Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1a97c947-bcc7-435a-977b-2574e83411ef","creationTime":"2023-10-12T11:51:14Z","deletionTime":"2023-10-12T11:55:34Z"}]}},{"name":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e3badb-0b4e-4cc0-88c7-811b1e41805d","properties":{"accountName":"cli-continuous7-2vkwapnjj","apiType":"Sql","creationTime":"2023-10-12T11:54:24+00:00","deletionTime":"2023-10-12T11:57:02Z","oldestRestorableTime":"2023-10-05T11:57:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"550016db-042d-4095-96cc-c36635c28d51","creationTime":"2023-10-12T11:54:24Z","deletionTime":"2023-10-12T11:57:02Z"}]}},{"name":"e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","properties":{"accountName":"cli3zn75ryyhtmt","apiType":"Table, - Sql","creationTime":"2023-10-12T11:54:57Z","deletionTime":"2023-10-12T11:59:10Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5b46be33-e8ff-4c76-b9b4-5b2a1d6cdcfb","creationTime":"2023-10-12T11:54:57Z","deletionTime":"2023-10-12T11:59:10Z"}]}},{"name":"c1057e27-eecf-43b6-856b-e588940f78af","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1057e27-eecf-43b6-856b-e588940f78af","properties":{"accountName":"cli-systemid-q3rixnbqvseg-restored","apiType":"Sql","creationTime":"2023-10-12T11:57:09Z","deletionTime":"2023-10-12T11:59:18Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9d49fbec-ef6a-4b92-8b68-02c3a0cfe3b8","creationTime":"2023-10-12T11:57:09Z","deletionTime":"2023-10-12T11:59:18Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","deletionTime":"2023-10-12T11:59:18Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z","deletionTime":"2023-10-12T11:59:18Z"}]}},{"name":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/746f56a9-3752-4bb8-8d53-dfd723bbc28a","properties":{"accountName":"cli-periodic-ouato5bn2l6j","apiType":"Sql","creationTime":"2023-10-12T11:58:06Z","deletionTime":"2023-10-12T12:00:29Z","oldestRestorableTime":"2023-10-12T11:58:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cbe683b-5f91-4963-84de-0b9a1f0495ae","creationTime":"2023-10-12T11:58:06Z","deletionTime":"2023-10-12T12:00:29Z"}]}},{"name":"8216217b-65d0-46b2-a6eb-85dece125835","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8216217b-65d0-46b2-a6eb-85dece125835","properties":{"accountName":"clitxvmrrl4dsb6","apiType":"Table, - Sql","creationTime":"2023-10-12T12:01:05Z","deletionTime":"2023-10-12T12:05:32Z","oldestRestorableTime":"2023-09-12T13:04:58Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9693d82b-7e20-4fe1-a027-7822ee91d12f","creationTime":"2023-10-12T12:01:06Z","deletionTime":"2023-10-12T12:05:32Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","deletionTime":"2023-10-12T11:50:37Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z","deletionTime":"2023-10-12T11:50:37Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","deletionTime":"2023-10-12T11:53:51Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z","deletionTime":"2023-10-12T11:53:51Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","deletionTime":"2023-10-12T11:57:30Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z","deletionTime":"2023-10-12T11:57:30Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T13:04:59Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '306696' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 13:05:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f/restorableSqlResources?api-version=2023-09-15&restoreLocation=West%20Central%20US&restoreTimestampInUtc=2023-10-12%2013%3A00%3A58%2B00%3A00 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f/restorableSqlResources/cli-xrr000003","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlResources","name":"cli-xrr000003","databaseName":"cli-xrr000003","collectionNames":["cli-xrr000002"]}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '408' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:05:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "West Central US", "kind": "GlobalDocumentDB", "properties": - {"locations": [{"locationName": "northcentralus", "failoverPriority": 0}], "databaseAccountOfferType": - "Standard", "apiProperties": {}, "createMode": "Restore", "restoreParameters": - {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f", - "restoreTimestampInUtc": "2023-10-12T13:00:58.000Z", "restoreMode": "PointInTime", - "sourceBackupLocation": "West Central US"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - Content-Length: - - '575' - Content-Type: - - application/json - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored","name":"cli-xrr-000004-restored","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:05:09.3461368Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"f372126d-47fa-4601-88a2-30de3e071657","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f","restoreTimestampInUtc":"2023-10-12T13:00:58Z","sourceBackupLocation":"West - Central US","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:05:09.3461368Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:05:09.3461368Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:05:09.3461368Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:05:09.3461368Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - cache-control: - - no-store, no-cache - content-length: - - '3016' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:05:11 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored/operationResults/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:05:11 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:05:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:06:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:06:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:07:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:07:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:08:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:08:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:09:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:09:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:10:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:10:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:11:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:11:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:12:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:12:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:13:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:13:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:14:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:14:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:15:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:15:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:16:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:16:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:17:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:17:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c206ec22-4c12-4de0-b1e0-4c0a3b1f2036?api-version=2023-09-15-preview&t=638327127119028121&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=RKvRxzODL73DgEWFkVTXdp05k3Frr5kwcYe60EcL9WjU1XANE6xwZYC5rdxo-NlEc7S4hEWbuNQ7Xn8spbqmDic89ahLcvNB7MfUPKXI8KUhstw6apQxTxwV2yu6vvEtIpRQ5SxrI4FJ_PsT_tWo_yr4XzXE5Fmbn-5LXtPZC-777wuH0wuSt7Mf90V-31Xgdwzedn3haynRJ4XqOrKa-VxfqhKj9wvS8gL7IxPDaW_idVCxOtqLC4MkpT6VyVJBhS4nF6z1_Md1N3WhirBEr5lL7Iga2Bv-5DPFxNwvk0Y_EMwYQcXKZfWAZheh_Hefke4nhDoTP5gGcTOIjv7NGA&h=hpnzDpSOE6CesQPmShw6I-vVsprL0JxXFQ4HoDIOb28 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored","name":"cli-xrr-000004-restored","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:18:12.8321917Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004-restored.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":"f372126d-47fa-4601-88a2-30de3e071657","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f","restoreTimestampInUtc":"2023-10-12T13:00:58Z","sourceBackupLocation":"West - Central US","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3384' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored","name":"cli-xrr-000004-restored","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:18:12.8321917Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004-restored.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":"f372126d-47fa-4601-88a2-30de3e071657","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f","restoreTimestampInUtc":"2023-10-12T13:00:58Z","sourceBackupLocation":"West - Central US","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3384' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored","name":"cli-xrr-000004-restored","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:18:12.8321917Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004-restored.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":"f372126d-47fa-4601-88a2-30de3e071657","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f","restoreTimestampInUtc":"2023-10-12T13:00:58Z","sourceBackupLocation":"West - Central US","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:18:12.8321917Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3384' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_xrr_single_region_account.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_xrr_single_region_account.yaml deleted file mode 100644 index c656d68a9cd..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_xrr_single_region_account.yaml +++ /dev/null @@ -1,3737 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_cross_region_restore000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001","name":"cli_test_cosmosdb_cross_region_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_xrr_single_region_account","date":"2023-10-12T11:58:30Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '450' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:58:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westcentralus", "kind": "GlobalDocumentDB", "properties": - {"locations": [{"locationName": "westcentralus", "failoverPriority": 0, "isZoneRedundant": - false}], "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": - "Default", "backupPolicy": {"type": "Continuous", "continuousModeProperties": - {"tier": "Continuous7Days"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - Content-Length: - - '355' - Content-Type: - - application/json - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004","name":"cli-xrr-000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T11:58:42.4698225Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6109f15a-f7c9-4281-90ff-6807547b5711","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T11:58:42.4698225Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T11:58:42.4698225Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:58:42.4698225Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T11:58:42.4698225Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/16b8be1f-eab4-4907-90e0-b4208fde6858?api-version=2023-09-15-preview&t=638327087241448559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sGOciXnGB7RE92dx0QyQrmTllWQh7cmv-bTbtfOEBO4oxjR4ORL94t3nybq_t2rLoqLZOwqGc1wWKMPS7RZw_YhvyvhJxhtOlJcLiHOwmnKDuaZYz7JwjMFMg5m2_tn-VCa6b-bxiL0ZNviLDWcljEPHPY4LoMHuE8wai7_gYTEpP0tVcwIKQHsCvAWV4nZebqcEhcSEV4yO4C82dSmgVqzUHgtBL2F_gT2o9IfD90Etxhxx69FgtIH7apqH1Nhg3aAbrpaNWaE8ppzu6Y-FnYe4wLTLSwyYrQ5QLGMQCmgLUuWfuTwq5pLWWTNLfZUYMNGMrIxiK2FLSP7juFcWmg&h=7u3JtMVAw0JTvHZGyoDlKX1ptt3sgOpafB6oQafeRhU - cache-control: - - no-store, no-cache - content-length: - - '2528' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:43 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/operationResults/16b8be1f-eab4-4907-90e0-b4208fde6858?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/16b8be1f-eab4-4907-90e0-b4208fde6858?api-version=2023-09-15-preview&t=638327087241448559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sGOciXnGB7RE92dx0QyQrmTllWQh7cmv-bTbtfOEBO4oxjR4ORL94t3nybq_t2rLoqLZOwqGc1wWKMPS7RZw_YhvyvhJxhtOlJcLiHOwmnKDuaZYz7JwjMFMg5m2_tn-VCa6b-bxiL0ZNviLDWcljEPHPY4LoMHuE8wai7_gYTEpP0tVcwIKQHsCvAWV4nZebqcEhcSEV4yO4C82dSmgVqzUHgtBL2F_gT2o9IfD90Etxhxx69FgtIH7apqH1Nhg3aAbrpaNWaE8ppzu6Y-FnYe4wLTLSwyYrQ5QLGMQCmgLUuWfuTwq5pLWWTNLfZUYMNGMrIxiK2FLSP7juFcWmg&h=7u3JtMVAw0JTvHZGyoDlKX1ptt3sgOpafB6oQafeRhU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/16b8be1f-eab4-4907-90e0-b4208fde6858?api-version=2023-09-15-preview&t=638327087241448559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sGOciXnGB7RE92dx0QyQrmTllWQh7cmv-bTbtfOEBO4oxjR4ORL94t3nybq_t2rLoqLZOwqGc1wWKMPS7RZw_YhvyvhJxhtOlJcLiHOwmnKDuaZYz7JwjMFMg5m2_tn-VCa6b-bxiL0ZNviLDWcljEPHPY4LoMHuE8wai7_gYTEpP0tVcwIKQHsCvAWV4nZebqcEhcSEV4yO4C82dSmgVqzUHgtBL2F_gT2o9IfD90Etxhxx69FgtIH7apqH1Nhg3aAbrpaNWaE8ppzu6Y-FnYe4wLTLSwyYrQ5QLGMQCmgLUuWfuTwq5pLWWTNLfZUYMNGMrIxiK2FLSP7juFcWmg&h=7u3JtMVAw0JTvHZGyoDlKX1ptt3sgOpafB6oQafeRhU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/16b8be1f-eab4-4907-90e0-b4208fde6858?api-version=2023-09-15-preview&t=638327087241448559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sGOciXnGB7RE92dx0QyQrmTllWQh7cmv-bTbtfOEBO4oxjR4ORL94t3nybq_t2rLoqLZOwqGc1wWKMPS7RZw_YhvyvhJxhtOlJcLiHOwmnKDuaZYz7JwjMFMg5m2_tn-VCa6b-bxiL0ZNviLDWcljEPHPY4LoMHuE8wai7_gYTEpP0tVcwIKQHsCvAWV4nZebqcEhcSEV4yO4C82dSmgVqzUHgtBL2F_gT2o9IfD90Etxhxx69FgtIH7apqH1Nhg3aAbrpaNWaE8ppzu6Y-FnYe4wLTLSwyYrQ5QLGMQCmgLUuWfuTwq5pLWWTNLfZUYMNGMrIxiK2FLSP7juFcWmg&h=7u3JtMVAw0JTvHZGyoDlKX1ptt3sgOpafB6oQafeRhU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/16b8be1f-eab4-4907-90e0-b4208fde6858?api-version=2023-09-15-preview&t=638327087241448559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sGOciXnGB7RE92dx0QyQrmTllWQh7cmv-bTbtfOEBO4oxjR4ORL94t3nybq_t2rLoqLZOwqGc1wWKMPS7RZw_YhvyvhJxhtOlJcLiHOwmnKDuaZYz7JwjMFMg5m2_tn-VCa6b-bxiL0ZNviLDWcljEPHPY4LoMHuE8wai7_gYTEpP0tVcwIKQHsCvAWV4nZebqcEhcSEV4yO4C82dSmgVqzUHgtBL2F_gT2o9IfD90Etxhxx69FgtIH7apqH1Nhg3aAbrpaNWaE8ppzu6Y-FnYe4wLTLSwyYrQ5QLGMQCmgLUuWfuTwq5pLWWTNLfZUYMNGMrIxiK2FLSP7juFcWmg&h=7u3JtMVAw0JTvHZGyoDlKX1ptt3sgOpafB6oQafeRhU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/16b8be1f-eab4-4907-90e0-b4208fde6858?api-version=2023-09-15-preview&t=638327087241448559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sGOciXnGB7RE92dx0QyQrmTllWQh7cmv-bTbtfOEBO4oxjR4ORL94t3nybq_t2rLoqLZOwqGc1wWKMPS7RZw_YhvyvhJxhtOlJcLiHOwmnKDuaZYz7JwjMFMg5m2_tn-VCa6b-bxiL0ZNviLDWcljEPHPY4LoMHuE8wai7_gYTEpP0tVcwIKQHsCvAWV4nZebqcEhcSEV4yO4C82dSmgVqzUHgtBL2F_gT2o9IfD90Etxhxx69FgtIH7apqH1Nhg3aAbrpaNWaE8ppzu6Y-FnYe4wLTLSwyYrQ5QLGMQCmgLUuWfuTwq5pLWWTNLfZUYMNGMrIxiK2FLSP7juFcWmg&h=7u3JtMVAw0JTvHZGyoDlKX1ptt3sgOpafB6oQafeRhU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/16b8be1f-eab4-4907-90e0-b4208fde6858?api-version=2023-09-15-preview&t=638327087241448559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=sGOciXnGB7RE92dx0QyQrmTllWQh7cmv-bTbtfOEBO4oxjR4ORL94t3nybq_t2rLoqLZOwqGc1wWKMPS7RZw_YhvyvhJxhtOlJcLiHOwmnKDuaZYz7JwjMFMg5m2_tn-VCa6b-bxiL0ZNviLDWcljEPHPY4LoMHuE8wai7_gYTEpP0tVcwIKQHsCvAWV4nZebqcEhcSEV4yO4C82dSmgVqzUHgtBL2F_gT2o9IfD90Etxhxx69FgtIH7apqH1Nhg3aAbrpaNWaE8ppzu6Y-FnYe4wLTLSwyYrQ5QLGMQCmgLUuWfuTwq5pLWWTNLfZUYMNGMrIxiK2FLSP7juFcWmg&h=7u3JtMVAw0JTvHZGyoDlKX1ptt3sgOpafB6oQafeRhU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004","name":"cli-xrr-000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T12:00:32.5537156Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6109f15a-f7c9-4281-90ff-6807547b5711","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2932' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --backup-policy-type --continuous-tier --locations --kind - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004","name":"cli-xrr-000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T12:00:32.5537156Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6109f15a-f7c9-4281-90ff-6807547b5711","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2932' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:17 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004","name":"cli-xrr-000004","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T12:00:32.5537156Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"6109f15a-f7c9-4281-90ff-6807547b5711","createMode":"Default","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","documentEndpoint":"https://cli-xrr-000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-westcentralus","locationName":"West - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T12:00:32.5537156Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '2932' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli-xrr000003"}, "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - Content-Length: - - '68' - Content-Type: - - application/json - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003?api-version=2023-09-15 - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/45e91520-da23-4b88-b0b5-5c292f1f4f5c?api-version=2023-09-15&t=638327088824928585&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=orSEoBGNn7bZ4f8FzPHbiCGrP_N1uwo32tT6Byv4t_Tjl3nQzduMwzzuVXFs8ADXTreG4f89X2LvwGbTgMgoRSiTueX_AbcAzNGppl-lmXn3P1UAQjm8Ugzx2B9tOBxOxRWjMuM1yxiRBvpBzJrTz4zL59-ti7UCfaaF99YbJlzFH8-215J_LVmYlSTZIxQDdsvL-2t0z1vlMqa5xqb2emysYutvme9616svsQpZNNDO0H7QcHd__fKLnBksu0RJib2Lr2gK2NoYE1R54zW6bksUJpZ0pjgqBsxHIbZ1UtIx622II4H7LWJZBqaAruWNSqDgAPUfn-R9j8TqHsOkxg&h=nLR0JQ2AK2gtOmIPgKzvl8Z44P0-rXfXWzGLn76Sexw - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:21 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/operationResults/45e91520-da23-4b88-b0b5-5c292f1f4f5c?api-version=2023-09-15 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/45e91520-da23-4b88-b0b5-5c292f1f4f5c?api-version=2023-09-15&t=638327088824928585&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=orSEoBGNn7bZ4f8FzPHbiCGrP_N1uwo32tT6Byv4t_Tjl3nQzduMwzzuVXFs8ADXTreG4f89X2LvwGbTgMgoRSiTueX_AbcAzNGppl-lmXn3P1UAQjm8Ugzx2B9tOBxOxRWjMuM1yxiRBvpBzJrTz4zL59-ti7UCfaaF99YbJlzFH8-215J_LVmYlSTZIxQDdsvL-2t0z1vlMqa5xqb2emysYutvme9616svsQpZNNDO0H7QcHd__fKLnBksu0RJib2Lr2gK2NoYE1R54zW6bksUJpZ0pjgqBsxHIbZ1UtIx622II4H7LWJZBqaAruWNSqDgAPUfn-R9j8TqHsOkxg&h=nLR0JQ2AK2gtOmIPgKzvl8Z44P0-rXfXWzGLn76Sexw - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/45e91520-da23-4b88-b0b5-5c292f1f4f5c?api-version=2023-09-15&t=638327088824928585&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=orSEoBGNn7bZ4f8FzPHbiCGrP_N1uwo32tT6Byv4t_Tjl3nQzduMwzzuVXFs8ADXTreG4f89X2LvwGbTgMgoRSiTueX_AbcAzNGppl-lmXn3P1UAQjm8Ugzx2B9tOBxOxRWjMuM1yxiRBvpBzJrTz4zL59-ti7UCfaaF99YbJlzFH8-215J_LVmYlSTZIxQDdsvL-2t0z1vlMqa5xqb2emysYutvme9616svsQpZNNDO0H7QcHd__fKLnBksu0RJib2Lr2gK2NoYE1R54zW6bksUJpZ0pjgqBsxHIbZ1UtIx622II4H7LWJZBqaAruWNSqDgAPUfn-R9j8TqHsOkxg&h=nLR0JQ2AK2gtOmIPgKzvl8Z44P0-rXfXWzGLn76Sexw - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql database create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003?api-version=2023-09-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli-xrr000003","properties":{"resource":{"id":"cli-xrr000003","_rid":"trxqAA==","_self":"dbs/trxqAA==/","_etag":"\"0000a50e-0000-0600-0000-6527e0190000\"","_colls":"colls/","_users":"users/","_ts":1697112089}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '488' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"resource": {"id": "cli-xrr000002", "indexingPolicy": {"automatic": - true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": - [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, - "options": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - Content-Length: - - '269' - Content-Type: - - application/json - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/containers/cli-xrr000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e23cad0c-b184-474d-8875-c91fa5f645ef?api-version=2023-09-15-preview&t=638327089165598477&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hnk_Eube3Rmq-2uZ81NSx98UxLz-lmbt0uNY-kVMiFUpyLPlRN8lNrBOByEBWmNQ2OUzQr4XVhyt1QF1DJQegkrV-sf06WhO6l69ykVssxjVaaX4jp0943gjuE0maz8L4VE0Ve_FecJB91vEj-9Qu0foD7ftVDaE_0Ewq9BdBN1kDiWiONpl7V77UhnRsWlxKd-EybwJA72vEEtb_AtBl8D7fUf_Dq_HIU41B1Cvjijb5iHDcnNmMMW_1DarE4ZMmszkG1SE9O4Gpm4rhsrTQMrcc32mpYJsMG1vrfCVpcNjAcl-rB32zoCEdBeApzNLBF42Tpa118AUBm9f8teHFg&h=1gD9zWJntIWQueUcrULi8rJNodIFQi-eroDnU_9Tkic - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:56 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/containers/cli-xrr000002/operationResults/e23cad0c-b184-474d-8875-c91fa5f645ef?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e23cad0c-b184-474d-8875-c91fa5f645ef?api-version=2023-09-15-preview&t=638327089165598477&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hnk_Eube3Rmq-2uZ81NSx98UxLz-lmbt0uNY-kVMiFUpyLPlRN8lNrBOByEBWmNQ2OUzQr4XVhyt1QF1DJQegkrV-sf06WhO6l69ykVssxjVaaX4jp0943gjuE0maz8L4VE0Ve_FecJB91vEj-9Qu0foD7ftVDaE_0Ewq9BdBN1kDiWiONpl7V77UhnRsWlxKd-EybwJA72vEEtb_AtBl8D7fUf_Dq_HIU41B1Cvjijb5iHDcnNmMMW_1DarE4ZMmszkG1SE9O4Gpm4rhsrTQMrcc32mpYJsMG1vrfCVpcNjAcl-rB32zoCEdBeApzNLBF42Tpa118AUBm9f8teHFg&h=1gD9zWJntIWQueUcrULi8rJNodIFQi-eroDnU_9Tkic - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e23cad0c-b184-474d-8875-c91fa5f645ef?api-version=2023-09-15-preview&t=638327089165598477&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=hnk_Eube3Rmq-2uZ81NSx98UxLz-lmbt0uNY-kVMiFUpyLPlRN8lNrBOByEBWmNQ2OUzQr4XVhyt1QF1DJQegkrV-sf06WhO6l69ykVssxjVaaX4jp0943gjuE0maz8L4VE0Ve_FecJB91vEj-9Qu0foD7ftVDaE_0Ewq9BdBN1kDiWiONpl7V77UhnRsWlxKd-EybwJA72vEEtb_AtBl8D7fUf_Dq_HIU41B1Cvjijb5iHDcnNmMMW_1DarE4ZMmszkG1SE9O4Gpm4rhsrTQMrcc32mpYJsMG1vrfCVpcNjAcl-rB32zoCEdBeApzNLBF42Tpa118AUBm9f8teHFg&h=1gD9zWJntIWQueUcrULi8rJNodIFQi-eroDnU_9Tkic - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb sql container create - Connection: - - keep-alive - ParameterSetName: - - -g -a -d -n -p - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/containers/cli-xrr000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004/sqlDatabases/cli-xrr000003/containers/cli-xrr000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli-xrr000002","properties":{"resource":{"id":"cli-xrr000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"trxqAPl+4m4=","_ts":1697112124,"_self":"dbs/trxqAA==/colls/trxqAPl+4m4=/","_etag":"\"0000a80e-0000-0600-0000-6527e03c0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1155' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restorable-database-account show - Connection: - - keep-alive - ParameterSetName: - - --location --instance-id - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711?api-version=2023-09-15-preview - response: - body: - string: '{"name":"6109f15a-f7c9-4281-90ff-6807547b5711","location":"West Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711","properties":{"accountName":"cli-xrr-000004","apiType":"Sql","creationTime":"2023-10-12T12:00:33Z","oldestRestorableTime":"2023-10-12T12:00:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bb1627a2-19b4-4e11-8ffc-3b90ed0c08d9","creationTime":"2023-10-12T12:00:34Z"}]}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '639' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"name":"ac607c04-9d23-44a2-9ebf-13532782dadd","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ac607c04-9d23-44a2-9ebf-13532782dadd","properties":{"accountName":"r-database-account-7574","apiType":"Sql","creationTime":"2023-10-05T12:38:00+00:00","oldestRestorableTime":"2023-10-05T12:38:00+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"b32a8775-37dd-49a0-8b21-20563b9be04f","creationTime":"2023-10-05T12:38:01Z"}]}},{"name":"ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba2b9a8d-af8d-4549-85f0-9bbebe5ad886","properties":{"accountName":"r-database-account-3220","apiType":"Sql","creationTime":"2023-10-09T09:29:52+00:00","oldestRestorableTime":"2023-10-09T09:29:52+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"760e771e-745c-4e23-9045-4081aaeb6642","creationTime":"2023-10-09T09:29:53Z"}]}},{"name":"062db4b9-0910-4594-a0f0-8007cc97d100","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/062db4b9-0910-4594-a0f0-8007cc97d100","properties":{"accountName":"r-database-account-7975","apiType":"Sql","creationTime":"2023-10-09T11:16:27+00:00","oldestRestorableTime":"2023-10-09T11:16:27+00:00","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ced822df-4c42-4ce0-8cf8-d27d4ed13beb","creationTime":"2023-10-09T11:16:28Z"}]}},{"name":"25747582-8ac1-4e78-a50d-ae089a50b38f","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/25747582-8ac1-4e78-a50d-ae089a50b38f","properties":{"accountName":"cli-xrr-o5aoeifdv6ohqqwne","apiType":"Sql","creationTime":"2023-10-12T11:59:58Z","oldestRestorableTime":"2023-10-12T11:59:58Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"5a6ae896-018e-4f29-a412-109d3bf0307d","creationTime":"2023-10-12T11:59:59Z"},{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3be6e36a-ebb1-40cb-8726-684141b0d920","creationTime":"2023-10-12T12:02:20Z"}]}},{"name":"6109f15a-f7c9-4281-90ff-6807547b5711","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711","properties":{"accountName":"cli-xrr-000004","apiType":"Sql","creationTime":"2023-10-12T12:00:33Z","oldestRestorableTime":"2023-10-12T12:00:33Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bb1627a2-19b4-4e11-8ffc-3b90ed0c08d9","creationTime":"2023-10-12T12:00:34Z"}]}},{"name":"398371ea-9439-4a9a-ae9c-945cf6747a01","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/398371ea-9439-4a9a-ae9c-945cf6747a01","properties":{"accountName":"cli-xrr-u6e467paydmecifoy-restored","apiType":"Sql","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"dde05ef1-85dc-4c3c-90e5-9f29d5b5bb12","creationTime":"2023-10-04T07:18:16Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3e27316f-8b61-41a8-afa1-2d0a81f2ecb4","properties":{"accountName":"cli-xrr-u6e467paydmecifoy","apiType":"Sql","creationTime":"2023-10-04T06:01:51Z","deletionTime":"2023-10-04T07:20:22Z","oldestRestorableTime":"2023-09-27T07:20:22Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"ee47aade-992d-46c6-a28d-cc8b04314a09","creationTime":"2023-10-04T06:01:52Z","deletionTime":"2023-10-04T07:20:22Z"}]}},{"name":"8f51674c-099b-4e70-a19e-7d84bc100e48","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8f51674c-099b-4e70-a19e-7d84bc100e48","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe-restored","apiType":"Sql","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z","oldestRestorableTime":"2023-09-27T07:22:19Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3bdaab45-1258-4a6b-b9b5-d3c6d4670cee","creationTime":"2023-10-04T07:20:27Z","deletionTime":"2023-10-04T07:22:19Z"}]}},{"name":"d45931da-bccf-47c4-867e-c81840f725ae","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d45931da-bccf-47c4-867e-c81840f725ae","properties":{"accountName":"cli-xrr-hddohfd3yxv46fxqe","apiType":"Sql","creationTime":"2023-10-04T06:01:53Z","deletionTime":"2023-10-04T07:22:25Z","oldestRestorableTime":"2023-09-27T07:22:25Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"ba34f464-0aff-46e8-b33d-39c78c45d468","creationTime":"2023-10-04T06:04:09Z","deletionTime":"2023-10-04T07:22:25Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"cc9ca609-26f1-45f5-9315-53da717eaaef","creationTime":"2023-10-04T06:01:54Z","deletionTime":"2023-10-04T07:22:25Z"}]}},{"name":"2d62f115-e58d-42d9-9827-4c635f0382df","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2d62f115-e58d-42d9-9827-4c635f0382df","properties":{"accountName":"r-database-account-8886","apiType":"Sql","creationTime":"2023-10-04T13:31:01+00:00","deletionTime":"2023-10-04T14:50:38Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"aedf9523-0fd2-4908-b302-20f1c4a6d43c","creationTime":"2023-10-04T13:31:02Z","deletionTime":"2023-10-04T14:50:38Z"}]}},{"name":"db75cb2b-6198-4a43-9221-b0e7057e30cf","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db75cb2b-6198-4a43-9221-b0e7057e30cf","properties":{"accountName":"restoredaccount-2278","apiType":"Sql","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a992eb44-6f8b-4b87-998a-d4eb55183e2a","creationTime":"2023-10-04T14:49:46Z","deletionTime":"2023-10-04T15:01:32Z"}]}},{"name":"4403b3ee-5fc2-483e-8d26-89412c6e90eb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4403b3ee-5fc2-483e-8d26-89412c6e90eb","properties":{"accountName":"r-database-account-6164","apiType":"Sql","creationTime":"2023-10-04T15:13:56Z","deletionTime":"2023-10-04T16:35:22Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"3adfcff1-4a95-4b24-8426-444a3e0d02c5","creationTime":"2023-10-04T15:13:57Z","deletionTime":"2023-10-04T16:35:22Z"}]}},{"name":"5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5cc3a54d-97d6-45c1-8604-ae2c1e2ff420","properties":{"accountName":"restoredaccount-5447","apiType":"Sql","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"e28d54db-f12c-45c0-9c8d-07528ddaf6e5","creationTime":"2023-10-04T16:34:35Z","deletionTime":"2023-10-04T16:45:44Z"}]}},{"name":"7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e9750f0-5a2a-4ba9-9301-aaedd6dfc7b5","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y","apiType":"Sql","creationTime":"2023-10-11T06:13:45Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"bab144f0-ce6d-416c-8177-383aab5211b0","creationTime":"2023-10-11T06:13:46Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"bb374b2d-89b7-484e-ad1b-e130470b9abb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb374b2d-89b7-484e-ad1b-e130470b9abb","properties":{"accountName":"cli-xrr-j4uqsilw47xra2q5y-restored","apiType":"Sql","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z","oldestRestorableTime":"2023-10-04T07:32:24Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"a3eca3d9-70eb-42d2-9511-1b8c1b5ff7dd","creationTime":"2023-10-11T07:30:10Z","deletionTime":"2023-10-11T07:32:24Z"}]}},{"name":"74477ed1-5b77-42a5-805e-c55ecc7717e8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/74477ed1-5b77-42a5-805e-c55ecc7717e8","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz-restored","apiType":"Sql","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z","oldestRestorableTime":"2023-10-04T07:46:21Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"0971015a-7fd2-4be9-acad-f2c9eba94173","creationTime":"2023-10-11T07:44:03Z","deletionTime":"2023-10-11T07:46:21Z"}]}},{"name":"23a6238f-d40f-404f-a567-adebaabfb2c5","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/23a6238f-d40f-404f-a567-adebaabfb2c5","properties":{"accountName":"cli-xrr-ag2vckicy6xvgn2qz","apiType":"Sql","creationTime":"2023-10-11T06:24:44Z","deletionTime":"2023-10-11T07:46:22Z","oldestRestorableTime":"2023-10-04T07:46:22Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"bd022e95-61dc-4738-b9db-ce38b55b3b6b","creationTime":"2023-10-11T06:27:03Z","deletionTime":"2023-10-11T07:46:22Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"a30c07f5-608e-48e8-b0b5-73e117a62488","creationTime":"2023-10-11T06:24:45Z","deletionTime":"2023-10-11T07:46:22Z"}]}},{"name":"ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ed200e9c-8d92-4ed5-94b4-ba28a07b5bcb","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3-restored","apiType":"Sql","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z","oldestRestorableTime":"2023-10-04T13:17:35Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"8d022108-6b17-4832-848c-53be3837593e","creationTime":"2023-10-11T13:15:22Z","deletionTime":"2023-10-11T13:17:35Z"}]}},{"name":"6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6aeb770a-b87a-4d9d-acef-aca7ae92d4ab","properties":{"accountName":"cli-xrr-xkkq5sgg5kg66ioc3","apiType":"Sql","creationTime":"2023-10-11T11:59:09Z","deletionTime":"2023-10-11T13:17:36Z","oldestRestorableTime":"2023-10-04T13:17:36Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"68b9d6ba-2c67-417a-b789-cbd3802826de","creationTime":"2023-10-11T11:59:10Z","deletionTime":"2023-10-11T13:17:36Z"}]}},{"name":"3c49090b-deb0-4859-bc30-854a4609bdd8","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c49090b-deb0-4859-bc30-854a4609bdd8","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7-restored","apiType":"Sql","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z","oldestRestorableTime":"2023-10-04T13:20:53Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"87ea8ba1-9f81-42d4-997a-66a3068256c0","creationTime":"2023-10-11T13:18:37Z","deletionTime":"2023-10-11T13:20:53Z"}]}},{"name":"5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5bfdbf56-7279-4bd4-bfbe-d440b4cd7702","properties":{"accountName":"cli-xrr-z4vu7mliofk3hp4t7","apiType":"Sql","creationTime":"2023-10-11T12:00:18Z","deletionTime":"2023-10-11T13:20:54Z","oldestRestorableTime":"2023-10-04T13:20:54Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"54637dae-f62a-435d-ae95-daccf5593fc1","creationTime":"2023-10-11T12:02:30Z","deletionTime":"2023-10-11T13:20:54Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"1716e7e6-279c-4d0a-b51b-e65e2f97348d","creationTime":"2023-10-11T12:00:19Z","deletionTime":"2023-10-11T13:20:54Z"}]}},{"name":"be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/be0aac3d-719c-4bd1-8dcd-f24dfbbc230a","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq","apiType":"Sql","creationTime":"2023-10-12T05:31:40Z","deletionTime":"2023-10-12T06:51:50Z","oldestRestorableTime":"2023-10-05T06:51:50Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"35286868-07de-4f55-abb0-e0413045516f","creationTime":"2023-10-12T05:33:54Z","deletionTime":"2023-10-12T06:51:50Z"},{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"9bdfb7c5-23ec-4ddf-bf84-dbe198105be2","creationTime":"2023-10-12T05:31:41Z","deletionTime":"2023-10-12T06:51:50Z"}]}},{"name":"bb44e4e8-9107-4076-a88d-06b983bda03e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bb44e4e8-9107-4076-a88d-06b983bda03e","properties":{"accountName":"cli-xrr-ng4vtuj7i2trq4uzq-restored","apiType":"Sql","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z","oldestRestorableTime":"2023-10-05T06:51:51Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"c676fab6-21bd-42a8-964e-ca650b8cac60","creationTime":"2023-10-12T06:50:33Z","deletionTime":"2023-10-12T06:51:51Z"}]}},{"name":"5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5f41cf9c-9efc-4af3-bb07-4d1e41dd2f42","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy-restored","apiType":"Sql","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z","oldestRestorableTime":"2023-10-05T06:51:55Z","restorableLocations":[{"locationName":"North - Central US","regionalDatabaseAccountInstanceId":"3fcf4a06-d86f-4481-a805-d799383ca22c","creationTime":"2023-10-12T06:49:33Z","deletionTime":"2023-10-12T06:51:55Z"}]}},{"name":"3a20ea36-099c-4148-bef1-b26383f5440e","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a20ea36-099c-4148-bef1-b26383f5440e","properties":{"accountName":"cli-xrr-gf2bu6oypbn7kxkmy","apiType":"Sql","creationTime":"2023-10-12T05:33:20Z","deletionTime":"2023-10-12T06:51:56Z","oldestRestorableTime":"2023-10-05T06:51:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"8070bec4-e7a4-465a-95ad-17b68860cdf1","creationTime":"2023-10-12T05:33:21Z","deletionTime":"2023-10-12T06:51:56Z"}]}},{"name":"6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6dae9b8e-9b8b-46bd-8bcf-d0aa34b63a87","properties":{"accountName":"clidc625nbxevlb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:22:56+00:00","oldestRestorableTime":"2023-10-04T04:22:56+00:00","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"6c2e6b83-888d-4a77-821b-7a4825aca641","creationTime":"2023-10-04T04:22:57Z"}]}},{"name":"17ff9115-c57d-4396-b4e9-3d371295169d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/17ff9115-c57d-4396-b4e9-3d371295169d","properties":{"accountName":"dbaccount-3529","apiType":"Table, - Sql","creationTime":"2023-10-04T04:46:15Z","deletionTime":"2023-10-04T04:50:26Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"751c5042-bb94-46bd-a408-9bc4f6854604","creationTime":"2023-10-04T04:46:16Z","deletionTime":"2023-10-04T04:50:26Z"}]}},{"name":"c1438d1a-209b-446e-85ed-3a4d3e276e45","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c1438d1a-209b-446e-85ed-3a4d3e276e45","properties":{"accountName":"dbaccount-1717","apiType":"Table, - Sql","creationTime":"2023-10-04T04:51:40Z","deletionTime":"2023-10-04T05:03:14Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8045eb0e-8d2e-438b-9f60-36e80c0f217e","creationTime":"2023-10-04T04:51:41Z","deletionTime":"2023-10-04T05:03:14Z"}]}},{"name":"64763c53-fa6d-435b-8829-aac662b6405a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/64763c53-fa6d-435b-8829-aac662b6405a","properties":{"accountName":"clitfi6m27qs5kb","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"4e4b422d-7a9d-49c8-b1be-aa7f282229b2","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"5c7a03c4-70c7-48ae-8dcb-28718ae7200b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5c7a03c4-70c7-48ae-8dcb-28718ae7200b","properties":{"accountName":"clia4awjkr6igzp","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:33:06Z","deletionTime":"2023-10-04T05:54:59Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"cc2848a6-e6ff-4640-be7e-7b0c06f943b9","creationTime":"2023-10-04T05:33:07Z","deletionTime":"2023-10-04T05:54:59Z"}]}},{"name":"05bf476e-4a5d-4c21-8b56-7c484cd1ce95","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/05bf476e-4a5d-4c21-8b56-7c484cd1ce95","properties":{"accountName":"clippd4m3njigsw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:14:07Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"0ae9a526-c39e-459f-bc52-3a2fbed364c5","creationTime":"2023-10-04T06:14:08Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"1a2ca5c8-fca4-4075-8b79-9903582d23e3","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1a2ca5c8-fca4-4075-8b79-9903582d23e3","properties":{"accountName":"clinhj64xt2d6cw","apiType":"Table, - Sql","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"eec90caf-3f68-41d9-93ad-9fdf81773eb3","creationTime":"2023-10-04T06:35:59Z","deletionTime":"2023-10-04T06:38:08Z"}]}},{"name":"5ac4f60b-c025-42a4-9521-0f95ee5021cf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5ac4f60b-c025-42a4-9521-0f95ee5021cf","properties":{"accountName":"dbaccount-6124","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T07:55:11Z","deletionTime":"2023-10-04T08:09:00Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"398c6753-2aa3-499e-8038-8f8f60a6869f","creationTime":"2023-10-04T07:55:12Z","deletionTime":"2023-10-04T08:09:00Z"}]}},{"name":"21778221-ec86-4df5-bc43-ac29700a826a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/21778221-ec86-4df5-bc43-ac29700a826a","properties":{"accountName":"dbaccount-9721","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:10:11Z","deletionTime":"2023-10-04T08:15:33Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"245b9efd-59f7-4b6e-8fa8-731718a07bdf","creationTime":"2023-10-04T08:10:12Z","deletionTime":"2023-10-04T08:15:33Z"}]}},{"name":"532b0c5d-e962-4c6d-83ad-49a43fdac412","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/532b0c5d-e962-4c6d-83ad-49a43fdac412","properties":{"accountName":"dbaccount-8647","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:27:57Z","deletionTime":"2023-10-04T08:36:37Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"666bc4d7-14b9-46fc-8002-4b35539be5d0","creationTime":"2023-10-04T08:27:58Z","deletionTime":"2023-10-04T08:36:37Z"}]}},{"name":"da7da386-dda4-4194-a4c8-95aa53d6b584","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/da7da386-dda4-4194-a4c8-95aa53d6b584","properties":{"accountName":"dbaccount-1024","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T08:37:42Z","deletionTime":"2023-10-04T08:52:04Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"257cf325-c36e-4627-a0e7-63fff30e5e77","creationTime":"2023-10-04T08:37:43Z","deletionTime":"2023-10-04T08:52:04Z"}]}},{"name":"9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cac55cc-6dfb-4793-bd0b-4f33b4dd5436","properties":{"accountName":"dbaccount-3041","apiType":"MongoDB","creationTime":"2023-10-04T09:02:44Z","deletionTime":"2023-10-04T09:07:08Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a114fd7f-b6b5-473a-ade7-28ad60d75dcb","creationTime":"2023-10-04T09:02:45Z","deletionTime":"2023-10-04T09:07:08Z"}]}},{"name":"bbbbe2df-e85c-4d1a-93c4-9918af26df79","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/bbbbe2df-e85c-4d1a-93c4-9918af26df79","properties":{"accountName":"dbaccount-8557","apiType":"MongoDB","creationTime":"2023-10-04T09:08:20Z","deletionTime":"2023-10-04T09:12:19Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e8b9bb5f-35af-4f85-8f39-8702eda18bd6","creationTime":"2023-10-04T09:08:21Z","deletionTime":"2023-10-04T09:12:19Z"}]}},{"name":"0bf6a076-9f31-471b-ad47-938fdef3df53","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0bf6a076-9f31-471b-ad47-938fdef3df53","properties":{"accountName":"dbaccount-9199","apiType":"MongoDB","creationTime":"2023-10-04T09:23:28Z","deletionTime":"2023-10-04T09:27:24Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13395490-57d6-4049-b73f-f24b65ffd814","creationTime":"2023-10-04T09:23:29Z","deletionTime":"2023-10-04T09:27:24Z"}]}},{"name":"d0c09241-efbc-4686-95dc-e22bc2735559","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d0c09241-efbc-4686-95dc-e22bc2735559","properties":{"accountName":"dbaccount-5805","apiType":"MongoDB","creationTime":"2023-10-04T09:28:36Z","deletionTime":"2023-10-04T09:32:26Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b78b468-342f-416e-8760-15cf7ddd923d","creationTime":"2023-10-04T09:28:37Z","deletionTime":"2023-10-04T09:32:26Z"}]}},{"name":"0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0e61293f-22e9-4e6a-99ff-0e142a2bc4b1","properties":{"accountName":"dbaccount-4090","apiType":"Table, - Sql","creationTime":"2023-10-05T13:28:48Z","deletionTime":"2023-10-05T13:31:45Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e426835-6cd7-46fd-8a68-19035da7b115","creationTime":"2023-10-05T13:28:49Z","deletionTime":"2023-10-05T13:31:45Z"}]}},{"name":"0482d4c7-5f31-4b84-8cdb-55adca256373","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0482d4c7-5f31-4b84-8cdb-55adca256373","properties":{"accountName":"dbaccount-338","apiType":"Table, - Sql","creationTime":"2023-10-05T13:37:11Z","deletionTime":"2023-10-05T13:50:31Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bd09b696-fbcd-41d9-a2fa-1e5631761c22","creationTime":"2023-10-05T13:37:12Z","deletionTime":"2023-10-05T13:50:31Z"}]}},{"name":"1ac13443-1108-4f02-ad4b-9a402a2e2ec0","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/1ac13443-1108-4f02-ad4b-9a402a2e2ec0","properties":{"accountName":"dbaccount-1836","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:12:51Z","deletionTime":"2023-10-05T14:26:08Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fe7772a6-3f05-411d-b6bc-2e74661ac1cd","creationTime":"2023-10-05T14:12:52Z","deletionTime":"2023-10-05T14:26:08Z"}]}},{"name":"a0d40790-9468-4ca1-9c2d-b14409198ee4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a0d40790-9468-4ca1-9c2d-b14409198ee4","properties":{"accountName":"dbaccount-6033","apiType":"Gremlin, - Sql","creationTime":"2023-10-05T14:27:15Z","deletionTime":"2023-10-05T14:41:00Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6db5c23f-0da4-40df-bb6f-42a089f28bfd","creationTime":"2023-10-05T14:27:16Z","deletionTime":"2023-10-05T14:41:00Z"}]}},{"name":"e894131c-52ff-4270-8803-20ec3444b10c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e894131c-52ff-4270-8803-20ec3444b10c","properties":{"accountName":"dbaccount-4646","apiType":"Sql","creationTime":"2023-10-05T18:12:39Z","deletionTime":"2023-10-05T18:27:51Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1c6703bb-db3a-408e-b510-fce49b73962c","creationTime":"2023-10-05T18:12:40Z","deletionTime":"2023-10-05T18:27:51Z"}]}},{"name":"3db84c5a-ad51-4ad7-8e7d-60a39f608497","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3db84c5a-ad51-4ad7-8e7d-60a39f608497","properties":{"accountName":"dbaccount-4453","apiType":"Sql","creationTime":"2023-10-05T18:28:57Z","deletionTime":"2023-10-05T18:44:09Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86d330a9-215e-402c-95e9-8304d08ea7f7","creationTime":"2023-10-05T18:28:58Z","deletionTime":"2023-10-05T18:44:09Z"}]}},{"name":"2f358792-461c-4221-bcbd-38cb0f7f151a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f358792-461c-4221-bcbd-38cb0f7f151a","properties":{"accountName":"dbaccount-447","apiType":"Sql","creationTime":"2023-10-05T18:58:18Z","deletionTime":"2023-10-05T19:04:17Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c91676b-3959-4be4-bf9b-690b26f9f064","creationTime":"2023-10-05T18:58:19Z","deletionTime":"2023-10-05T19:04:17Z"}]}},{"name":"f44ab4b9-4822-498c-850c-b34a2758d06b","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f44ab4b9-4822-498c-850c-b34a2758d06b","properties":{"accountName":"dbaccount-4632","apiType":"Sql","creationTime":"2023-10-05T19:05:22+00:00","deletionTime":"2023-10-05T19:18:52Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78ada6c6-63fd-4346-b4e9-f39192024291","creationTime":"2023-10-05T19:05:23Z","deletionTime":"2023-10-05T19:18:52Z"}]}},{"name":"256ab100-79d0-461c-ac36-e58b1753fe0e","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/256ab100-79d0-461c-ac36-e58b1753fe0e","properties":{"accountName":"dbaccount-1104","apiType":"Sql","creationTime":"2023-10-06T03:35:19Z","deletionTime":"2023-10-06T03:48:44Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f14119f7-3a2c-4eae-bc06-030f9a22b506","creationTime":"2023-10-06T03:35:20Z","deletionTime":"2023-10-06T03:48:44Z"}]}},{"name":"d1b86ae1-8e67-43bd-9be3-9756420c26d4","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/d1b86ae1-8e67-43bd-9be3-9756420c26d4","properties":{"accountName":"dbaccount-3453","apiType":"Table, - Sql","creationTime":"2023-10-09T09:40:31Z","deletionTime":"2023-10-09T09:53:08Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9968239c-9ba8-4be7-8bba-a11a76f38fb1","creationTime":"2023-10-09T09:40:32Z","deletionTime":"2023-10-09T09:53:08Z"}]}},{"name":"2b7ee634-2272-4e99-80a7-f27357089e14","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2b7ee634-2272-4e99-80a7-f27357089e14","properties":{"accountName":"dbaccount-3125","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:34:40Z","deletionTime":"2023-10-09T10:48:13Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"93e7ed9f-56c6-453c-b824-3918b327ca6c","creationTime":"2023-10-09T10:34:41Z","deletionTime":"2023-10-09T10:48:13Z"}]}},{"name":"a01a48b4-72bb-41fb-8705-2c468d237f21","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a01a48b4-72bb-41fb-8705-2c468d237f21","properties":{"accountName":"dbaccount-4511","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:49:16Z","deletionTime":"2023-10-09T10:53:18Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"26d8e188-f411-43d0-b16e-88602a12ccc6","creationTime":"2023-10-09T10:49:17Z","deletionTime":"2023-10-09T10:53:18Z"}]}},{"name":"3cedfc83-3966-46f0-b87f-5c0eee3f1918","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3cedfc83-3966-46f0-b87f-5c0eee3f1918","properties":{"accountName":"dbaccount-3625","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:54:23Z","deletionTime":"2023-10-09T10:58:38Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bf1756e9-c7b9-439f-bb62-b76708e98c22","creationTime":"2023-10-09T10:54:24Z","deletionTime":"2023-10-09T10:58:38Z"}]}},{"name":"16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/16c03f3c-5259-4d39-a3df-e2f6cc13fcdf","properties":{"accountName":"dbaccount-4028","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T10:59:35Z","deletionTime":"2023-10-09T11:15:40Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0c6038b-c874-4a6b-ba26-2b15c31b17ff","creationTime":"2023-10-09T10:59:36Z","deletionTime":"2023-10-09T11:15:40Z"}]}},{"name":"7312a5ba-b87f-417c-90e6-a44b3fb1cded","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7312a5ba-b87f-417c-90e6-a44b3fb1cded","properties":{"accountName":"dbaccount-486","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:20:06Z","deletionTime":"2023-10-09T11:34:43Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0e31ca2a-6b26-46ac-a3b6-52e9505405a2","creationTime":"2023-10-09T11:20:07Z","deletionTime":"2023-10-09T11:34:43Z"}]}},{"name":"7beb19ab-63a1-440e-9ad5-be42813ec016","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7beb19ab-63a1-440e-9ad5-be42813ec016","properties":{"accountName":"dbaccount-1337","apiType":"Sql","creationTime":"2023-10-09T14:18:49Z","deletionTime":"2023-10-09T14:23:43Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc90f18f-0e3b-420d-9e7e-92aabba159b6","creationTime":"2023-10-09T14:18:50Z","deletionTime":"2023-10-09T14:23:43Z"}]}},{"name":"23efea51-e938-4304-bd89-32e41bca220a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23efea51-e938-4304-bd89-32e41bca220a","properties":{"accountName":"dbaccount-8523","apiType":"Sql","creationTime":"2023-10-09T14:24:39Z","deletionTime":"2023-10-09T14:38:11Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac2cbd2-93ed-4aa2-8a7f-1e9160cd0412","creationTime":"2023-10-09T14:24:40Z","deletionTime":"2023-10-09T14:38:11Z"}]}},{"name":"085402db-66e1-4449-bcd0-a98a69b15400","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/085402db-66e1-4449-bcd0-a98a69b15400","properties":{"accountName":"dbaccount-1612","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T15:04:33Z","deletionTime":"2023-10-09T15:19:07Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94e89580-ad1d-4747-8759-d4d20bc659b7","creationTime":"2023-10-09T15:04:34Z","deletionTime":"2023-10-09T15:19:07Z"}]}},{"name":"23c8d853-3142-46bf-9418-85ff7e3e3269","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/23c8d853-3142-46bf-9418-85ff7e3e3269","properties":{"accountName":"dbaccount-4841","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:06:07Z","deletionTime":"2023-10-09T20:22:18Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eac1236a-5de4-401b-b242-d5e42b7e353f","creationTime":"2023-10-09T20:06:08Z","deletionTime":"2023-10-09T20:22:18Z"}]}},{"name":"ccc0a187-9de6-44a7-b284-fa478837c090","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ccc0a187-9de6-44a7-b284-fa478837c090","properties":{"accountName":"dbaccount-740","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3d14afe1-2378-40b2-b7d1-eb02df1cebbd","creationTime":"2023-10-09T20:23:34Z","deletionTime":"2023-10-09T20:39:47Z"}]}},{"name":"7809c67c-3de8-41b1-af06-c63ddde73c66","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/7809c67c-3de8-41b1-af06-c63ddde73c66","properties":{"accountName":"dbaccount-6277","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:40:56Z","deletionTime":"2023-10-09T20:57:47Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d1830a66-e6eb-4491-88df-b1508643878d","creationTime":"2023-10-09T20:40:57Z","deletionTime":"2023-10-09T20:57:47Z"}]}},{"name":"a2350867-4fed-4542-9e95-30c6b819aa05","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a2350867-4fed-4542-9e95-30c6b819aa05","properties":{"accountName":"dbaccount-5881","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T20:58:43Z","deletionTime":"2023-10-09T21:15:30Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"560d5b84-3ee6-401d-8f50-b27ad1a08486","creationTime":"2023-10-09T20:58:44Z","deletionTime":"2023-10-09T21:15:30Z"}]}},{"name":"495841d0-5f6c-47ee-8340-b6a9ef11b688","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/495841d0-5f6c-47ee-8340-b6a9ef11b688","properties":{"accountName":"dbaccount-9411","apiType":"Sql","creationTime":"2023-10-10T01:53:41Z","deletionTime":"2023-10-10T02:12:17Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c917e8df-ab09-4385-8a5a-a88cd8eee0f7","creationTime":"2023-10-10T01:53:42Z","deletionTime":"2023-10-10T02:12:17Z"}]}},{"name":"92910208-18fa-46ef-b03a-0e9c25ba2eeb","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/92910208-18fa-46ef-b03a-0e9c25ba2eeb","properties":{"accountName":"dbaccount-2931","apiType":"Sql","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e4636f3d-f41c-495a-813d-f1d5d5951a3b","creationTime":"2023-10-10T02:13:10Z","deletionTime":"2023-10-10T02:29:36Z"}]}},{"name":"5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5fe8d2dc-09fd-405a-8118-fd9ba5247bdd","properties":{"accountName":"clid66qccurk6le","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:00:30Z","deletionTime":"2023-10-11T06:23:58Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"8b47bdc5-2523-431b-941e-e21d782bd1e1","creationTime":"2023-10-11T06:00:31Z","deletionTime":"2023-10-11T06:23:58Z"}]}},{"name":"f65ae14a-023e-47c8-94c9-2bd4f5538acf","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f65ae14a-023e-47c8-94c9-2bd4f5538acf","properties":{"accountName":"clizjfucm6i6trz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"75a3d217-500a-4274-91f7-1847fad3015f","creationTime":"2023-10-11T06:21:44Z","deletionTime":"2023-10-11T06:23:59Z"}]}},{"name":"42c8f495-c30e-402a-9fda-c518d8a8dc04","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/42c8f495-c30e-402a-9fda-c518d8a8dc04","properties":{"accountName":"clit57h4ec7c3po","apiType":"Table, - Sql","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a9878c8f-a88e-419b-8571-874f166b8ae2","creationTime":"2023-10-11T06:45:50Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"76a00b7b-adf2-49e0-a262-a9d64725dc13","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/76a00b7b-adf2-49e0-a262-a9d64725dc13","properties":{"accountName":"cli5d6howvtjytk","apiType":"Table, - Sql","creationTime":"2023-10-11T06:24:21Z","deletionTime":"2023-10-11T06:47:59Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"f013a3d8-78ed-4deb-bb27-17229d953adf","creationTime":"2023-10-11T06:24:22Z","deletionTime":"2023-10-11T06:47:59Z"}]}},{"name":"4c638cb0-191a-4e94-8268-a2737a08f15a","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4c638cb0-191a-4e94-8268-a2737a08f15a","properties":{"accountName":"clivoqqxx3sbnuu","apiType":"Table, - Sql","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"717df827-bfcf-47d5-bffd-b44f4defc025","creationTime":"2023-10-11T11:56:18Z","deletionTime":"2023-10-11T11:58:21Z"}]}},{"name":"60dbe299-99e8-4a1a-8585-a74a88ec04c6","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/60dbe299-99e8-4a1a-8585-a74a88ec04c6","properties":{"accountName":"clioqeluprwimw7","apiType":"Table, - Sql","creationTime":"2023-10-11T11:34:28Z","deletionTime":"2023-10-11T11:58:22Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"1872f81e-ef8e-4bd3-b317-4ab288197dd9","creationTime":"2023-10-11T11:34:29Z","deletionTime":"2023-10-11T11:58:22Z"}]}},{"name":"9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9cca191f-dd3e-4fd4-b190-1d5d37d9ac39","properties":{"accountName":"cli66kffmav35ke","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:35:32Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"a82d5b28-3814-4fd5-9d5c-b57b71200710","creationTime":"2023-10-11T11:35:33Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"5e81f03e-8eca-43e6-9508-e320b305fec7","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/5e81f03e-8eca-43e6-9508-e320b305fec7","properties":{"accountName":"cliigixfmep4rlq","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"3312710f-f012-4488-82ec-7159825ade21","creationTime":"2023-10-11T11:57:26Z","deletionTime":"2023-10-11T11:59:16Z"}]}},{"name":"a076a083-48f4-4a4f-a03e-a2958797d617","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a076a083-48f4-4a4f-a03e-a2958797d617","properties":{"accountName":"cliw3etrlhs4l73","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"63f26b25-a36d-4fb5-9707-dd9a0f91bb1e","creationTime":"2023-10-12T05:31:30Z","deletionTime":"2023-10-12T05:33:38Z"}]}},{"name":"8bcbeb54-2056-4413-8052-378de09db362","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8bcbeb54-2056-4413-8052-378de09db362","properties":{"accountName":"clijvn6vnadpubk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:09:50Z","deletionTime":"2023-10-12T05:33:45Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"d2b43655-0031-4eaf-b497-be28c4538e8b","creationTime":"2023-10-12T05:09:51Z","deletionTime":"2023-10-12T05:33:45Z"}]}},{"name":"8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/8a3bfaed-5a7a-4ece-aa8d-ac87934b8d41","properties":{"accountName":"cliuxgo227ogrhf","apiType":"Table, - Sql","creationTime":"2023-10-12T05:49:09Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"695e3f42-e315-4221-8d86-1e4b0e7bbe79","creationTime":"2023-10-12T05:49:10Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"edc198fc-d341-4590-8970-0769bde9a252","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/edc198fc-d341-4590-8970-0769bde9a252","properties":{"accountName":"clibbr7t5d2w2h5","apiType":"Table, - Sql","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"aa560d0f-e37a-402e-8a93-b9e5d96cae89","creationTime":"2023-10-12T06:11:37Z","deletionTime":"2023-10-12T06:13:56Z"}]}},{"name":"f72f1bc2-742d-4d79-9dbf-99069cefbe96","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f72f1bc2-742d-4d79-9dbf-99069cefbe96","properties":{"accountName":"cli7so3utnm36lf","apiType":"Table, - Sql","creationTime":"2023-10-12T11:35:17Z","deletionTime":"2023-10-12T11:59:53Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"c18899f2-8830-4e9e-bd62-30f49887ca93","creationTime":"2023-10-12T11:35:18Z","deletionTime":"2023-10-12T11:59:53Z"}]}},{"name":"94c957ff-67b6-48df-883e-533e1a410a0f","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/94c957ff-67b6-48df-883e-533e1a410a0f","properties":{"accountName":"cli47ysi4oehr4i","apiType":"Table, - Sql","creationTime":"2023-10-12T11:57:37Z","deletionTime":"2023-10-12T11:59:53Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"62e60087-a9a8-473f-bf0d-862452cf4b3f","creationTime":"2023-10-12T11:57:37Z","deletionTime":"2023-10-12T11:59:53Z"}]}},{"name":"c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c5321027-b07c-49dc-a4d2-9c7f61ebbb1c","properties":{"accountName":"cli6tddbaclxi5q","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:35:54Z","deletionTime":"2023-10-12T12:02:15Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ca2ffee5-a5d2-42fa-9986-2493b252fd66","creationTime":"2023-10-12T11:35:55Z","deletionTime":"2023-10-12T12:02:15Z"}]}},{"name":"90c8c77c-bf30-4418-a1fe-b470ba082c0d","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/90c8c77c-bf30-4418-a1fe-b470ba082c0d","properties":{"accountName":"clipuhnxrraytfl","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:59:58Z","deletionTime":"2023-10-12T12:02:16Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"ecab84a4-c268-4f6d-8cf6-b096de66e489","creationTime":"2023-10-12T11:59:58Z","deletionTime":"2023-10-12T12:02:16Z"}]}},{"name":"ccfa50bd-7917-4753-a5cb-d71a0089d3f1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ccfa50bd-7917-4753-a5cb-d71a0089d3f1","properties":{"accountName":"clii7bq2tbmdlca","apiType":"MongoDB","creationTime":"2023-04-12T00:39:32Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c5f04b5e-6be3-4c14-9a4f-1e2baeb9b5f4","creationTime":"2023-04-12T00:39:33Z"}]}},{"name":"7114143a-b033-49e4-9ef1-3215d6a2ca00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7114143a-b033-49e4-9ef1-3215d6a2ca00","properties":{"accountName":"clihvkxtks3basm","apiType":"MongoDB","creationTime":"2023-04-12T05:37:12Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"759a53aa-07e7-47b6-8108-cbab419e965d","creationTime":"2023-04-12T05:37:13Z"}]}},{"name":"1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1a6ff84c-346a-4a0f-8e18-2cf7c5e2c579","properties":{"accountName":"cliqrsic3awir4e","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:20:35Z","oldestRestorableTime":"2023-10-04T04:20:35Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"26b27ca1-4615-4a4a-93b0-c51b5fb0bcf5","creationTime":"2023-10-04T04:20:35Z"}]}},{"name":"2b8fbf8d-8895-4de8-a912-78deb485a01d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2b8fbf8d-8895-4de8-a912-78deb485a01d","properties":{"accountName":"clivcl6wlvp2oqy","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:39:36Z","oldestRestorableTime":"2023-10-04T04:39:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"715da595-8459-40c5-8cf5-98fb53650935","creationTime":"2023-10-04T04:39:36Z"}]}},{"name":"33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/33dfa9a7-54ae-4ac7-9540-b0f6d07004c7","properties":{"accountName":"cli-systemid-2bfjqnrgd3s3","apiType":"Sql","creationTime":"2023-09-14T14:32:48Z","deletionTime":"2023-09-28T02:14:12Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"556a444e-95d3-4967-9af0-1a5790efc7ed","creationTime":"2023-09-14T14:32:49Z","deletionTime":"2023-09-28T02:14:12Z"}]}},{"name":"2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2a0749b3-f83c-4f42-bfa4-97ae0bc8707c","properties":{"accountName":"clire3rccf6nahc","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:17:05Z","deletionTime":"2023-10-03T17:17:59Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"98415ce9-5398-47d5-a444-e41134207fba","creationTime":"2023-10-03T17:17:08Z","deletionTime":"2023-10-03T17:17:59Z"}]}},{"name":"6001b560-2075-4603-b3d4-06d222d13b15","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6001b560-2075-4603-b3d4-06d222d13b15","properties":{"accountName":"clio47sjspk2r3o","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T04:26:58Z","deletionTime":"2023-10-04T04:29:49Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"45eab11d-cbca-4f3b-95c6-93cc60311e79","creationTime":"2023-10-04T04:26:59Z","deletionTime":"2023-10-04T04:29:49Z"}]}},{"name":"35f503b6-505f-4fbe-b02e-65a45c81275a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35f503b6-505f-4fbe-b02e-65a45c81275a","properties":{"accountName":"clihe3e5gtmujjg","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:40:03Z","deletionTime":"2023-10-04T05:45:01Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"82798307-3a94-447f-9bbf-7aa4c860e522","creationTime":"2023-10-04T05:40:04Z","deletionTime":"2023-10-04T05:45:01Z"}]}},{"name":"60bca1cd-7394-4958-9003-0e518d633161","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/60bca1cd-7394-4958-9003-0e518d633161","properties":{"accountName":"cli2dpa3lxtz6fy","apiType":"Sql","creationTime":"2023-10-04T05:44:04Z","deletionTime":"2023-10-04T05:49:41Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cd28371-5d56-4b5e-b60a-60212fe9df55","creationTime":"2023-10-04T05:44:05Z","deletionTime":"2023-10-04T05:49:41Z"}]}},{"name":"50af6462-6853-4549-8704-c38aa5267707","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/50af6462-6853-4549-8704-c38aa5267707","properties":{"accountName":"cli-continuous7-ntaa57w3z","apiType":"Sql","creationTime":"2023-10-04T05:47:30+00:00","deletionTime":"2023-10-04T05:50:35Z","oldestRestorableTime":"2023-09-27T05:48:41Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d1382df-4800-45af-aa3b-6f49265efcd9","creationTime":"2023-10-04T05:47:33Z","deletionTime":"2023-10-04T05:50:35Z"}]}},{"name":"a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7b444a4-a3c3-4bac-949a-6bf0023c0f1f","properties":{"accountName":"cli-continuous7-pwjzd356b","apiType":"Sql","creationTime":"2023-10-04T05:50:18+00:00","deletionTime":"2023-10-04T05:53:26Z","oldestRestorableTime":"2023-09-27T05:53:26Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e8012e37-7d70-4384-b629-c193d6a028f2","creationTime":"2023-10-04T05:50:19Z","deletionTime":"2023-10-04T05:53:26Z"}]}},{"name":"00240f02-a18f-44ba-9fb9-c4c39ea0c098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00240f02-a18f-44ba-9fb9-c4c39ea0c098","properties":{"accountName":"cli6asuxuhsbnz5","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"a0dd2b88-3d5d-411e-8f6f-0d75d0b2f88f","creationTime":"2023-10-04T05:51:23Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"0d79c228-24b2-4fbe-bce7-be6cdc3500ed","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d79c228-24b2-4fbe-bce7-be6cdc3500ed","properties":{"accountName":"cli4p7jlnzcnilt","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:28:16Z","deletionTime":"2023-10-04T05:53:51Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"255e7863-0c78-4401-b414-a9a7da613295","creationTime":"2023-10-04T05:28:19Z","deletionTime":"2023-10-04T05:53:51Z"}]}},{"name":"67894032-ba47-4d3c-91d6-30acf98ef1c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/67894032-ba47-4d3c-91d6-30acf98ef1c4","properties":{"accountName":"clipnjhq5pkqz5b","apiType":"Table, - Sql","creationTime":"2023-10-04T05:56:19Z","deletionTime":"2023-10-04T06:01:07Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e20de3d4-1470-4c3f-aaba-65cc562f8519","creationTime":"2023-10-04T05:56:20Z","deletionTime":"2023-10-04T06:01:07Z"}]}},{"name":"ca92df7a-5a69-4c31-a99e-62494580c96d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca92df7a-5a69-4c31-a99e-62494580c96d","properties":{"accountName":"clirb2lweybqspq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ad53b20f-9499-42aa-a5b3-f40c6d24afd6","creationTime":"2023-10-04T05:56:10Z","deletionTime":"2023-10-04T06:01:10Z"}]}},{"name":"1ea49148-0dc4-441d-ae09-f46dde34761e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ea49148-0dc4-441d-ae09-f46dde34761e","properties":{"accountName":"clijogvsqmtleyq","apiType":"MongoDB","creationTime":"2023-10-04T05:56:46Z","deletionTime":"2023-10-04T06:01:11Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4095d7a8-3421-4ff2-8076-aa294dcd0997","creationTime":"2023-10-04T05:56:47Z","deletionTime":"2023-10-04T06:01:11Z"}]}},{"name":"44293a76-0182-4017-85ea-12085af64738","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/44293a76-0182-4017-85ea-12085af64738","properties":{"accountName":"cli-continuous30-vnqmwcrl","apiType":"Sql","creationTime":"2023-10-04T06:05:08+00:00","deletionTime":"2023-10-04T06:08:42Z","oldestRestorableTime":"2023-09-27T06:08:42Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4c3d97e6-6c6e-443d-84b2-dae6aee8d412","creationTime":"2023-10-04T06:05:08Z","deletionTime":"2023-10-04T06:08:42Z"}]}},{"name":"d6603cae-ebc4-4758-9820-2200e2073774","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6603cae-ebc4-4758-9820-2200e2073774","properties":{"accountName":"cli-systemid-v4xo4bpaeznt","apiType":"Sql","creationTime":"2023-10-04T05:48:39+00:00","deletionTime":"2023-10-04T06:12:17Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6bb9b73c-feab-47da-81d0-47993a2a45a0","creationTime":"2023-10-04T05:48:40Z","deletionTime":"2023-10-04T06:12:17Z"}]}},{"name":"61b07cba-4b02-43fc-8a67-04b96067d5a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/61b07cba-4b02-43fc-8a67-04b96067d5a6","properties":{"accountName":"cli-systemid-v4xo4bpaeznt-restored","apiType":"Sql","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cf00a8c6-ca1e-450c-bdff-0479e1bad98a","creationTime":"2023-10-04T06:11:21Z","deletionTime":"2023-10-04T06:12:19Z"}]}},{"name":"201de5e6-d2fb-4b07-a0ad-03b95e5630f8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/201de5e6-d2fb-4b07-a0ad-03b95e5630f8","properties":{"accountName":"cli-periodic-3q7uhqrozno3","apiType":"Sql","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z","oldestRestorableTime":"2023-10-04T06:12:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b970e7d6-9595-4029-894a-d9f84073b231","creationTime":"2023-10-04T06:12:34Z","deletionTime":"2023-10-04T06:14:34Z"}]}},{"name":"106c64ba-0e7e-439f-9d08-3831eaedf523","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106c64ba-0e7e-439f-9d08-3831eaedf523","properties":{"accountName":"clivagqj5mzhhb3","apiType":"Table, - Sql","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"6ff0b592-d18d-4069-8162-ac2b80a404b4","creationTime":"2023-10-04T06:15:18Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"9a831773-eecf-44ad-bd59-b13dd885aa10","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9a831773-eecf-44ad-bd59-b13dd885aa10","properties":{"accountName":"clivnrdyy727wls","apiType":"Table, - Sql","creationTime":"2023-10-04T05:52:40Z","deletionTime":"2023-10-04T06:17:58Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"87520b9f-b6d9-488a-8561-322ac32d1b41","creationTime":"2023-10-04T05:52:41Z","deletionTime":"2023-10-04T06:17:58Z"}]}},{"name":"996cbc26-9414-4f70-92c6-173acd2a116b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/996cbc26-9414-4f70-92c6-173acd2a116b","properties":{"accountName":"clioqkpptpi3adq","apiType":"Table, - Sql","creationTime":"2023-10-04T06:20:01Z","deletionTime":"2023-10-04T06:25:01Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1712c752-26da-40e8-b4a3-53f2d218f894","creationTime":"2023-10-04T06:20:02Z","deletionTime":"2023-10-04T06:25:01Z"}]}},{"name":"21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21c9f6fd-7f27-4a0b-9f1c-dabdc62ab6ab","properties":{"accountName":"clijsdsrl3knvd5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:46:39Z","deletionTime":"2023-10-11T05:50:52Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc057290-9c1f-4220-b02d-e87ebd62161a","creationTime":"2023-10-11T05:46:40Z","deletionTime":"2023-10-11T05:50:52Z"}]}},{"name":"b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b7b1b97c-57ae-4a5d-8f2a-73b514dca2a9","properties":{"accountName":"clictbm3jadczzw","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:49:56Z","deletionTime":"2023-10-11T05:54:24Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ea308aae-8404-4e84-a8f1-7e2be4b90679","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T05:54:24Z"}]}},{"name":"7d0c8d45-685e-42c0-93ff-f315af481178","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7d0c8d45-685e-42c0-93ff-f315af481178","properties":{"accountName":"cliihlmka5sw42n","apiType":"Sql","creationTime":"2023-10-11T05:51:29Z","deletionTime":"2023-10-11T05:55:40Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2852f81a-bcc4-48f5-b162-cab88379bfd8","creationTime":"2023-10-11T05:51:30Z","deletionTime":"2023-10-11T05:55:40Z"}]}},{"name":"629b852f-3783-4892-8013-ed6335c33494","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/629b852f-3783-4892-8013-ed6335c33494","properties":{"accountName":"cli-continuous7-umuanepiy","apiType":"Sql","creationTime":"2023-10-11T05:54:39+00:00","deletionTime":"2023-10-11T05:57:27Z","oldestRestorableTime":"2023-10-04T05:57:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"14e77e8f-3fc6-44f8-affc-488245fcabd7","creationTime":"2023-10-11T05:54:39Z","deletionTime":"2023-10-11T05:57:27Z"}]}},{"name":"f67a121b-9997-45cf-bcd6-0e28e401c646","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f67a121b-9997-45cf-bcd6-0e28e401c646","properties":{"accountName":"cliq5ykglysgn35","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"201fba75-5f77-4bb3-8dc6-d3da8a89828e","creationTime":"2023-10-11T05:57:27Z","deletionTime":"2023-10-11T05:58:28Z"}]}},{"name":"4de078bd-2023-4641-bf01-b6305c40aaae","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4de078bd-2023-4641-bf01-b6305c40aaae","properties":{"accountName":"clivsmc7wcamjze","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:38:01Z","deletionTime":"2023-10-11T05:58:29Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"24cadb13-e28e-4afb-98dc-a0e95e5c26cb","creationTime":"2023-10-11T05:38:02Z","deletionTime":"2023-10-11T05:58:29Z"}]}},{"name":"77450c63-3181-4e35-ad6d-e972ac7e8876","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/77450c63-3181-4e35-ad6d-e972ac7e8876","properties":{"accountName":"cli-continuous30-4tufawiz","apiType":"Sql","creationTime":"2023-10-11T05:55:59+00:00","deletionTime":"2023-10-11T05:58:52Z","oldestRestorableTime":"2023-10-04T05:58:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f2f7073f-8eb4-4bda-8d59-e73d9720338a","creationTime":"2023-10-11T05:56:00Z","deletionTime":"2023-10-11T05:58:52Z"}]}},{"name":"7485829f-2e84-4079-a816-ba3574557e21","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7485829f-2e84-4079-a816-ba3574557e21","properties":{"accountName":"clifajy5risiqj5","apiType":"MongoDB","creationTime":"2023-10-11T06:10:58Z","deletionTime":"2023-10-11T06:16:02Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7445220-88cd-4a3b-a1d1-2f5dfb32cf50","creationTime":"2023-10-11T06:10:59Z","deletionTime":"2023-10-11T06:16:02Z"}]}},{"name":"c51cd788-f9a3-4384-b300-5c3bd4b917f5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c51cd788-f9a3-4384-b300-5c3bd4b917f5","properties":{"accountName":"cli-continuous7-iqvkxcpwb","apiType":"Sql","creationTime":"2023-10-11T06:17:15+00:00","deletionTime":"2023-10-11T06:19:02Z","oldestRestorableTime":"2023-10-04T06:18:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"80256de5-f1b6-4eee-afc6-f10ddef01dac","creationTime":"2023-10-11T06:17:16Z","deletionTime":"2023-10-11T06:19:02Z"}]}},{"name":"e753ddd8-6580-4201-803e-222f9457e1c0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e753ddd8-6580-4201-803e-222f9457e1c0","properties":{"accountName":"clilmoutmbl3xrg","apiType":"Table, - Sql","creationTime":"2023-10-11T05:59:45Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bc933066-8c3c-44ae-8ed6-c5b3c8bd289d","creationTime":"2023-10-11T05:59:46Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"9e6627f5-c6f0-4dd0-bf5e-8233029d867f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e6627f5-c6f0-4dd0-bf5e-8233029d867f","properties":{"accountName":"cli4pj3utbsptcy","apiType":"Table, - Sql","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"559ca083-c965-4602-a384-65184cc91d70","creationTime":"2023-10-11T06:18:50Z","deletionTime":"2023-10-11T06:19:51Z"}]}},{"name":"386a2e99-4b18-4625-a9a7-8e721dd967d9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/386a2e99-4b18-4625-a9a7-8e721dd967d9","properties":{"accountName":"cli-periodic-lmroalaiwmnd","apiType":"Sql","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z","oldestRestorableTime":"2023-10-11T06:20:39Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3f41acad-eb9b-4031-b5cc-894515c81a5c","creationTime":"2023-10-11T06:20:39Z","deletionTime":"2023-10-11T06:22:37Z"}]}},{"name":"64bf8a16-f201-4830-95fc-7a89328b5482","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64bf8a16-f201-4830-95fc-7a89328b5482","properties":{"accountName":"cli-systemid-f3gqkq2urcu5","apiType":"Sql","creationTime":"2023-10-11T05:59:37+00:00","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"732465c1-76d2-48ac-8c60-3db2710133a1","creationTime":"2023-10-11T05:59:38Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"21295447-8f44-4477-be6b-f7fed19a7fe4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/21295447-8f44-4477-be6b-f7fed19a7fe4","properties":{"accountName":"cli-systemid-f3gqkq2urcu5-restored","apiType":"Sql","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ae0668d2-1208-4774-855d-51f85f757b53","creationTime":"2023-10-11T06:22:40Z","deletionTime":"2023-10-11T06:24:59Z"}]}},{"name":"45a3736b-b094-4a99-8585-755340c80730","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/45a3736b-b094-4a99-8585-755340c80730","properties":{"accountName":"cli2a7gamkp3dzn","apiType":"Table, - Sql","creationTime":"2023-10-11T06:21:30Z","deletionTime":"2023-10-11T06:25:18Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"39dfacf5-89f4-44cc-afc0-fde8391eeece","creationTime":"2023-10-11T06:21:31Z","deletionTime":"2023-10-11T06:25:18Z"}]}},{"name":"23c52b50-d2a7-4317-99d6-1185c9b16bdf","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/23c52b50-d2a7-4317-99d6-1185c9b16bdf","properties":{"accountName":"cliunlu2opjgvth","apiType":"Table, - Sql","creationTime":"2023-10-11T06:25:59Z","deletionTime":"2023-10-11T06:30:19Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f66b1143-e742-48fb-a275-fc324a46d882","creationTime":"2023-10-11T06:26:00Z","deletionTime":"2023-10-11T06:30:19Z"}]}},{"name":"57fed3a3-2fb1-4f95-9706-94aa3a675b54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/57fed3a3-2fb1-4f95-9706-94aa3a675b54","properties":{"accountName":"clid6vgaupnhnt2","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:20:17Z","deletionTime":"2023-10-11T11:25:18Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"bea2eb2f-8d0a-4a19-928f-59e547f0fbf2","creationTime":"2023-10-11T11:20:18Z","deletionTime":"2023-10-11T11:25:18Z"}]}},{"name":"26a216d6-9a8a-4017-8a45-22825624faa9","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/26a216d6-9a8a-4017-8a45-22825624faa9","properties":{"accountName":"clicg7gc5fmm6ba","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:23:28Z","deletionTime":"2023-10-11T11:28:54Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"325dab6d-5bf1-4943-b02c-987e675a5767","creationTime":"2023-10-11T11:23:29Z","deletionTime":"2023-10-11T11:28:54Z"}]}},{"name":"968a2470-84dc-41a2-a422-19e142d80987","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/968a2470-84dc-41a2-a422-19e142d80987","properties":{"accountName":"cli5hqwiqli3kbq","apiType":"MongoDB","creationTime":"2023-10-11T11:26:11Z","deletionTime":"2023-10-11T11:31:30Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b7599d9f-3ed3-48be-a212-9976aa8fb10c","creationTime":"2023-10-11T11:26:12Z","deletionTime":"2023-10-11T11:31:30Z"}]}},{"name":"3af95841-1d29-4281-90b0-54216259e4bc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3af95841-1d29-4281-90b0-54216259e4bc","properties":{"accountName":"cli-continuous7-kfzkjkd7i","apiType":"Sql","creationTime":"2023-10-11T11:29:35+00:00","deletionTime":"2023-10-11T11:32:22Z","oldestRestorableTime":"2023-10-04T11:30:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e8af570-6c2c-4370-aef4-04fbee76a45c","creationTime":"2023-10-11T11:29:36Z","deletionTime":"2023-10-11T11:32:22Z"}]}},{"name":"d55f0bff-f2d8-4a56-9022-15b4b1113593","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d55f0bff-f2d8-4a56-9022-15b4b1113593","properties":{"accountName":"clii3c7xwwp5xfi","apiType":"Sql","creationTime":"2023-10-11T11:28:14Z","deletionTime":"2023-10-11T11:33:14Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0c8f809c-009e-4897-bd33-f44db3733ae2","creationTime":"2023-10-11T11:28:15Z","deletionTime":"2023-10-11T11:33:14Z"}]}},{"name":"f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f45c673d-d9ad-4bc4-a9d8-d7562c82d9fc","properties":{"accountName":"clioafysadtsboz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:13:33Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"695f59a1-a164-4a0c-b5d2-efbaa3560f7d","creationTime":"2023-10-11T11:13:34Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"829fa680-015c-4d2e-a1c5-237ce37ad1d3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/829fa680-015c-4d2e-a1c5-237ce37ad1d3","properties":{"accountName":"cligzmufynkf4s6","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"fa8affd4-6c34-42d2-8021-c78c6710333a","creationTime":"2023-10-11T11:32:57Z","deletionTime":"2023-10-11T11:34:48Z"}]}},{"name":"867553e1-68fc-4e8e-8743-c82c31eafe45","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/867553e1-68fc-4e8e-8743-c82c31eafe45","properties":{"accountName":"cli-periodic-2p747rfncnpk","apiType":"Sql","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z","oldestRestorableTime":"2023-10-11T11:34:04Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"51161efc-cde3-414d-ad57-f6cd28c8f0fc","creationTime":"2023-10-11T11:34:04Z","deletionTime":"2023-10-11T11:36:47Z"}]}},{"name":"7981e852-5961-4a26-9a8f-7376fa46f491","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7981e852-5961-4a26-9a8f-7376fa46f491","properties":{"accountName":"clizxfuhlrdlnu6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ec9b006-e4c5-482c-a8ae-f2bfe893ea45","creationTime":"2023-10-11T11:37:32Z","deletionTime":"2023-10-11T11:41:58Z"}]}},{"name":"021dcde9-a644-4eda-8462-9be25adc24df","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/021dcde9-a644-4eda-8462-9be25adc24df","properties":{"accountName":"cliinub5vcixp3c","apiType":"Table, - Sql","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"f80f5c1b-01fb-4710-a423-a39ac8d99b29","creationTime":"2023-10-11T11:51:51Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"bab8af54-5897-47f8-a5dc-c1d46c17fd6a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bab8af54-5897-47f8-a5dc-c1d46c17fd6a","properties":{"accountName":"cliqcxz5gu33k3x","apiType":"Table, - Sql","creationTime":"2023-10-11T11:33:09Z","deletionTime":"2023-10-11T11:53:43Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b9f282c1-933d-4bdf-8101-30c66fff38d8","creationTime":"2023-10-11T11:33:10Z","deletionTime":"2023-10-11T11:53:43Z"}]}},{"name":"e7789482-f45c-4633-8383-296beb274fbc","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7789482-f45c-4633-8383-296beb274fbc","properties":{"accountName":"cli-continuous30-q2c4wty4","apiType":"Sql","creationTime":"2023-10-11T11:51:02+00:00","deletionTime":"2023-10-11T11:54:05Z","oldestRestorableTime":"2023-10-04T11:54:05Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0ecbe917-dd9b-4a98-9e09-abfde30ed2c3","creationTime":"2023-10-11T11:51:02Z","deletionTime":"2023-10-11T11:54:05Z"}]}},{"name":"64af1d81-7f35-4a69-98ec-1f3fc2eb6041","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64af1d81-7f35-4a69-98ec-1f3fc2eb6041","properties":{"accountName":"cli-continuous7-djtrjo2mq","apiType":"Sql","creationTime":"2023-10-11T11:55:17+00:00","deletionTime":"2023-10-11T11:57:13Z","oldestRestorableTime":"2023-10-04T11:57:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"42aaf4cc-9bef-4c31-b5b3-5a49e2dbf032","creationTime":"2023-10-11T11:55:17Z","deletionTime":"2023-10-11T11:57:13Z"}]}},{"name":"43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/43b3ef1b-388f-4d1f-8b6d-2451744c4bd3","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3-restored","apiType":"Sql","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3c43fa5a-f0b4-4583-873a-61dd3d526d59","creationTime":"2023-10-11T11:57:24Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b1a01e-1229-4ff6-9fcb-f9adc99b81a0","properties":{"accountName":"cli-systemid-c3fbtlqtxiz3","apiType":"Sql","creationTime":"2023-10-11T11:35:12+00:00","deletionTime":"2023-10-11T11:59:39Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"412b1c5c-4b5f-4020-b98b-6791dba8f717","creationTime":"2023-10-11T11:35:12Z","deletionTime":"2023-10-11T11:59:39Z"}]}},{"name":"2ffd3129-4587-470b-a25e-4d535989be16","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ffd3129-4587-470b-a25e-4d535989be16","properties":{"accountName":"clise4cosuuuwln","apiType":"Table, - Sql","creationTime":"2023-10-11T11:54:38Z","deletionTime":"2023-10-11T11:59:47Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8632a2f0-2e4e-43bd-a036-e3cbf18b8c85","creationTime":"2023-10-11T11:54:39Z","deletionTime":"2023-10-11T11:59:47Z"}]}},{"name":"0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c8665e5-f9bc-4244-bcc0-0dacad7f75c3","properties":{"accountName":"cliac3f34fdtl32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:13:01Z","deletionTime":"2023-10-12T05:17:25Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"d3ea5860-e70a-43fb-96b3-b97671282171","creationTime":"2023-10-12T05:13:02Z","deletionTime":"2023-10-12T05:17:25Z"}]}},{"name":"dff418ca-9152-456e-89e3-25dc7cff9c55","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dff418ca-9152-456e-89e3-25dc7cff9c55","properties":{"accountName":"cli-continuous30-nvfnfd5l","apiType":"Sql","creationTime":"2023-10-12T05:19:01+00:00","deletionTime":"2023-10-12T05:21:52Z","oldestRestorableTime":"2023-10-05T05:21:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1861e829-2df2-4ca9-83ee-2440d01229f6","creationTime":"2023-10-12T05:19:02Z","deletionTime":"2023-10-12T05:21:52Z"}]}},{"name":"be239fc3-9fc0-4b75-94cd-9b281b2322c6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be239fc3-9fc0-4b75-94cd-9b281b2322c6","properties":{"accountName":"clircqzzayfzf5f","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:22:55Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b8311b1b-344a-44b2-9efd-365bba19f693","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:22:55Z"}]}},{"name":"19f4c3cf-562e-4fb9-9775-efde80db5ab0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19f4c3cf-562e-4fb9-9775-efde80db5ab0","properties":{"accountName":"cliqwyxbkanwz32","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:03:18Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"7e2eeda2-6897-4976-985b-49f52837c5d6","creationTime":"2023-10-12T05:03:19Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"806121b6-3b16-4c9c-b3fe-4ebb2111c830","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/806121b6-3b16-4c9c-b3fe-4ebb2111c830","properties":{"accountName":"climbx2lwff4tkm","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ca898c26-0c0d-4191-9792-938292ed26d3","creationTime":"2023-10-12T05:22:49Z","deletionTime":"2023-10-12T05:25:10Z"}]}},{"name":"0d1e1d3e-d056-48af-b150-4827c50611d6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0d1e1d3e-d056-48af-b150-4827c50611d6","properties":{"accountName":"cli-continuous7-6gh2d6n77","apiType":"Sql","creationTime":"2023-10-12T05:24:28+00:00","deletionTime":"2023-10-12T05:27:29Z","oldestRestorableTime":"2023-10-05T05:27:29Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c9b7fa44-cbae-4d21-9027-340d24189c51","creationTime":"2023-10-12T05:24:29Z","deletionTime":"2023-10-12T05:27:29Z"}]}},{"name":"83658057-e062-4b67-a63a-8cbafbd40ebd","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83658057-e062-4b67-a63a-8cbafbd40ebd","properties":{"accountName":"cligdgtyg7eexmc","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T05:25:49Z","deletionTime":"2023-10-12T05:30:56Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cabbfdd0-0352-4d7d-ae36-4b4d464a4e7c","creationTime":"2023-10-12T05:25:50Z","deletionTime":"2023-10-12T05:30:56Z"}]}},{"name":"14f28af5-2e4e-4732-88e1-74cd890d8ada","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/14f28af5-2e4e-4732-88e1-74cd890d8ada","properties":{"accountName":"cli7ohoij2gacc5","apiType":"Table, - Sql","creationTime":"2023-10-12T05:28:10Z","deletionTime":"2023-10-12T05:32:44Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"57df9f54-edef-44e3-9b24-ea8d3768920c","creationTime":"2023-10-12T05:28:11Z","deletionTime":"2023-10-12T05:32:44Z"}]}},{"name":"cd13eec9-8d80-483c-903c-b4f220a4a295","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cd13eec9-8d80-483c-903c-b4f220a4a295","properties":{"accountName":"clicao62u6ydq6r","apiType":"MongoDB","creationTime":"2023-10-12T05:34:20Z","deletionTime":"2023-10-12T05:38:28Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21a9d756-6f25-4bf8-a6c4-84fb5df45490","creationTime":"2023-10-12T05:34:21Z","deletionTime":"2023-10-12T05:38:28Z"}]}},{"name":"a85f2415-d718-469e-bd2b-db21e3c0bac5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a85f2415-d718-469e-bd2b-db21e3c0bac5","properties":{"accountName":"cli-continuous7-d3tipymqk","apiType":"Sql","creationTime":"2023-10-12T05:41:23+00:00","deletionTime":"2023-10-12T05:44:15Z","oldestRestorableTime":"2023-10-05T05:42:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2eabc054-77f9-4329-9def-d00562b78a00","creationTime":"2023-10-12T05:41:24Z","deletionTime":"2023-10-12T05:44:15Z"}]}},{"name":"4926eab3-2ad8-4836-98c6-b8617b8a0ba5","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4926eab3-2ad8-4836-98c6-b8617b8a0ba5","properties":{"accountName":"cliby3djzf3jceg","apiType":"Table, - Sql","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e9d45701-db7f-4a1a-9a86-a2e66f31cb86","creationTime":"2023-10-12T05:43:33Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"7b44f1bb-891e-42e8-ac27-6d00e718682e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b44f1bb-891e-42e8-ac27-6d00e718682e","properties":{"accountName":"cliwmvlqxhhygjh","apiType":"Table, - Sql","creationTime":"2023-10-12T05:24:33Z","deletionTime":"2023-10-12T05:44:50Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0d61bf61-51c6-4518-91af-15b421dc5848","creationTime":"2023-10-12T05:24:34Z","deletionTime":"2023-10-12T05:44:50Z"}]}},{"name":"1560d095-99c6-4fd9-ac4e-84dfe4586935","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1560d095-99c6-4fd9-ac4e-84dfe4586935","properties":{"accountName":"cli-systemid-4zhiuubdj3sm","apiType":"Sql","creationTime":"2023-10-12T05:23:54+00:00","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"67412483-f22c-418d-a29f-26fa2dd2993d","creationTime":"2023-10-12T05:23:55Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"af0b1f68-eee2-4c83-987a-2118fa7b2bf3","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/af0b1f68-eee2-4c83-987a-2118fa7b2bf3","properties":{"accountName":"cli-systemid-4zhiuubdj3sm-restored","apiType":"Sql","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3ef10eeb-ca3a-4bb2-a1af-0a16a2f3da32","creationTime":"2023-10-12T05:46:19Z","deletionTime":"2023-10-12T05:48:18Z"}]}},{"name":"b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1fb6e2b-10d9-4866-80d6-84a51ba55dc7","properties":{"accountName":"clisgjzdqsp6veo","apiType":"Table, - Sql","creationTime":"2023-10-12T05:46:26Z","deletionTime":"2023-10-12T05:51:15Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4588b116-c697-4d3d-84e2-3ecdb3eabee8","creationTime":"2023-10-12T05:46:27Z","deletionTime":"2023-10-12T05:51:15Z"}]}},{"name":"9c64bb40-35b1-4c30-b400-106327308600","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9c64bb40-35b1-4c30-b400-106327308600","properties":{"accountName":"cli-periodic-khith5h5rswh","apiType":"Sql","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z","oldestRestorableTime":"2023-10-12T06:04:54Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"75549bbf-a4f8-4da0-a7ca-6ba8485cf84d","creationTime":"2023-10-12T06:04:54Z","deletionTime":"2023-10-12T06:07:58Z"}]}},{"name":"b99de5c2-f90a-4484-bb19-4e1e2184f59f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b99de5c2-f90a-4484-bb19-4e1e2184f59f","properties":{"accountName":"cliter452qymkn5","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:19:43Z","deletionTime":"2023-10-12T11:24:42Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"0bfdc304-ae9e-43b7-a95c-71e6a759351d","creationTime":"2023-10-12T11:19:44Z","deletionTime":"2023-10-12T11:24:42Z"}]}},{"name":"97c674c1-b03e-4dcb-97a7-128c684d9db2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/97c674c1-b03e-4dcb-97a7-128c684d9db2","properties":{"accountName":"cli5vtyowpqszbk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:25:24Z","deletionTime":"2023-10-12T11:30:47Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5e82ac7c-31f8-4e71-a071-24d7302c584b","creationTime":"2023-10-12T11:25:25Z","deletionTime":"2023-10-12T11:30:47Z"}]}},{"name":"f482c138-b289-4c6f-be08-c6714a15de54","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f482c138-b289-4c6f-be08-c6714a15de54","properties":{"accountName":"clid3ve2ppeat3k","apiType":"MongoDB","creationTime":"2023-10-12T11:25:53Z","deletionTime":"2023-10-12T11:30:56Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1b0b8cd9-a889-4c9b-b889-7bd093310e25","creationTime":"2023-10-12T11:25:54Z","deletionTime":"2023-10-12T11:30:56Z"}]}},{"name":"be4ed731-be4b-42c9-a86a-572ac082f6c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/be4ed731-be4b-42c9-a86a-572ac082f6c4","properties":{"accountName":"cli-continuous30-f7hcc6ud","apiType":"Sql","creationTime":"2023-10-12T11:30:27+00:00","deletionTime":"2023-10-12T11:33:27Z","oldestRestorableTime":"2023-10-05T11:33:27Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"4ed392ee-a218-46d0-82d0-8fadee0ba43b","creationTime":"2023-10-12T11:30:28Z","deletionTime":"2023-10-12T11:33:27Z"}]}},{"name":"90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90a4f00b-fd6f-4da7-ada1-7f5d9f51e694","properties":{"accountName":"cli-continuous7-oqcfuiktz","apiType":"Sql","creationTime":"2023-10-12T11:31:22+00:00","deletionTime":"2023-10-12T11:34:15Z","oldestRestorableTime":"2023-10-05T11:32:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"660c29e5-8d7d-496d-84c7-50e7c655fae1","creationTime":"2023-10-12T11:31:23Z","deletionTime":"2023-10-12T11:34:15Z"}]}},{"name":"74bafa21-da38-442c-8a78-0c3d1d57a921","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74bafa21-da38-442c-8a78-0c3d1d57a921","properties":{"accountName":"cli3qreqy7t3v3s","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:13:11Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"8bf833d6-8882-44e6-b1df-bb8646a09ee5","creationTime":"2023-10-12T11:13:12Z","deletionTime":"2023-10-12T11:35:08Z"}]}},{"name":"bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbbb84de-4c75-44e1-b7d7-2eaccbb4e1c7","properties":{"accountName":"clivez256ifbwao","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ba9a28f0-933f-4c5c-918a-f136dd6570f0","creationTime":"2023-10-12T11:32:57Z","deletionTime":"2023-10-12T11:35:08Z"}]}},{"name":"6cb59173-8107-4d0b-ba13-d2a17ce3400b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cb59173-8107-4d0b-ba13-d2a17ce3400b","properties":{"accountName":"clic4ba37ku3lt3","apiType":"Table, - Sql","creationTime":"2023-10-12T11:33:30Z","deletionTime":"2023-10-12T11:54:07Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cb3d7fd8-2af2-4243-9774-45b36d1abdf7","creationTime":"2023-10-12T11:33:31Z","deletionTime":"2023-10-12T11:54:07Z"}]}},{"name":"86847e11-666e-4b55-ac44-8804d38f49cb","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/86847e11-666e-4b55-ac44-8804d38f49cb","properties":{"accountName":"cliusrbtic7kqu7","apiType":"Table, - Sql","creationTime":"2023-10-12T11:52:18Z","deletionTime":"2023-10-12T11:54:07Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"21e09950-a36b-417c-8c75-f86f5b35fa25","creationTime":"2023-10-12T11:52:18Z","deletionTime":"2023-10-12T11:54:07Z"}]}},{"name":"74a73c0c-2eea-46bf-a4a5-328a67956205","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74a73c0c-2eea-46bf-a4a5-328a67956205","properties":{"accountName":"clinzj5pmfzdhxs","apiType":"Sql","creationTime":"2023-10-12T11:51:13Z","deletionTime":"2023-10-12T11:55:34Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"1a97c947-bcc7-435a-977b-2574e83411ef","creationTime":"2023-10-12T11:51:14Z","deletionTime":"2023-10-12T11:55:34Z"}]}},{"name":"18e3badb-0b4e-4cc0-88c7-811b1e41805d","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e3badb-0b4e-4cc0-88c7-811b1e41805d","properties":{"accountName":"cli-continuous7-2vkwapnjj","apiType":"Sql","creationTime":"2023-10-12T11:54:24+00:00","deletionTime":"2023-10-12T11:57:02Z","oldestRestorableTime":"2023-10-05T11:57:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"550016db-042d-4095-96cc-c36635c28d51","creationTime":"2023-10-12T11:54:24Z","deletionTime":"2023-10-12T11:57:02Z"}]}},{"name":"e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e93e2ca5-65c1-41c9-a7c8-4eb6a40195e8","properties":{"accountName":"cli3zn75ryyhtmt","apiType":"Table, - Sql","creationTime":"2023-10-12T11:54:57Z","deletionTime":"2023-10-12T11:59:10Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5b46be33-e8ff-4c76-b9b4-5b2a1d6cdcfb","creationTime":"2023-10-12T11:54:57Z","deletionTime":"2023-10-12T11:59:10Z"}]}},{"name":"c1057e27-eecf-43b6-856b-e588940f78af","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1057e27-eecf-43b6-856b-e588940f78af","properties":{"accountName":"cli-systemid-q3rixnbqvseg-restored","apiType":"Sql","creationTime":"2023-10-12T11:57:09Z","deletionTime":"2023-10-12T11:59:18Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9d49fbec-ef6a-4b92-8b68-02c3a0cfe3b8","creationTime":"2023-10-12T11:57:09Z","deletionTime":"2023-10-12T11:59:18Z"}]}},{"name":"e6e632df-b394-4723-bc99-c0bba3b1d9db","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6e632df-b394-4723-bc99-c0bba3b1d9db","properties":{"accountName":"cli-systemid-q3rixnbqvseg","apiType":"Sql","creationTime":"2023-10-12T11:35:19+00:00","deletionTime":"2023-10-12T11:59:18Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"94357e46-933a-45ba-a371-302da9f57f24","creationTime":"2023-10-12T11:35:20Z","deletionTime":"2023-10-12T11:59:18Z"}]}},{"name":"746f56a9-3752-4bb8-8d53-dfd723bbc28a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/746f56a9-3752-4bb8-8d53-dfd723bbc28a","properties":{"accountName":"cli-periodic-ouato5bn2l6j","apiType":"Sql","creationTime":"2023-10-12T11:58:06Z","deletionTime":"2023-10-12T12:00:29Z","oldestRestorableTime":"2023-10-12T11:58:06Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3cbe683b-5f91-4963-84de-0b9a1f0495ae","creationTime":"2023-10-12T11:58:06Z","deletionTime":"2023-10-12T12:00:29Z"}]}},{"name":"8216217b-65d0-46b2-a6eb-85dece125835","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8216217b-65d0-46b2-a6eb-85dece125835","properties":{"accountName":"clitxvmrrl4dsb6","apiType":"Table, - Sql","creationTime":"2023-10-12T12:01:05Z","deletionTime":"2023-10-12T12:05:32Z","oldestRestorableTime":"2023-09-12T13:03:34Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"9693d82b-7e20-4fe1-a027-7822ee91d12f","creationTime":"2023-10-12T12:01:06Z","deletionTime":"2023-10-12T12:05:32Z"}]}},{"name":"d2240f9a-3645-42f3-9eed-52d1bc819f12","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2240f9a-3645-42f3-9eed-52d1bc819f12","properties":{"accountName":"clihchlnj3tqce5","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:01:06+00:00","oldestRestorableTime":"2023-10-03T17:01:06+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a22e82e-7b9f-4444-8fa8-f90abf224e58","creationTime":"2023-10-03T17:01:07Z"}]}},{"name":"23624528-ac24-463b-a4f0-83354ef99622","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23624528-ac24-463b-a4f0-83354ef99622","properties":{"accountName":"cli72drlda4oe7i","apiType":"Sql","creationTime":"2023-10-03T17:53:33+00:00","oldestRestorableTime":"2023-10-03T17:53:33+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a79326f4-af16-4d64-a7ca-1c845bc93cb2","creationTime":"2023-10-03T17:53:34Z"}]}},{"name":"77dcdefd-0fa0-457c-87b7-0b8218eab2f7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77dcdefd-0fa0-457c-87b7-0b8218eab2f7","properties":{"accountName":"clir7xlck63i3sx","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:58:09+00:00","oldestRestorableTime":"2023-10-03T17:58:09+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"140b0bc5-0a77-41e6-a84d-9f64aa996fcf","creationTime":"2023-10-03T17:58:10Z"}]}},{"name":"265d7237-7269-409d-82ab-0e72e6b6c8f6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/265d7237-7269-409d-82ab-0e72e6b6c8f6","properties":{"accountName":"clif7yokwkw2giw","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:56:20+00:00","oldestRestorableTime":"2023-10-04T03:56:20+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bedcd10f-2c25-45c3-8e97-2210f0151534","creationTime":"2023-10-04T03:56:21Z"}]}},{"name":"7656c559-e366-43bf-9681-8596a629c3d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7656c559-e366-43bf-9681-8596a629c3d8","properties":{"accountName":"clicej27rvmazrb","apiType":"MongoDB","creationTime":"2023-10-04T04:21:18+00:00","oldestRestorableTime":"2023-10-04T04:21:18+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0a9bd3b4-512f-4adf-b216-0cdaef435905","creationTime":"2023-10-04T04:21:19Z"}]}},{"name":"dc0e0351-7f32-41b5-b934-594f4900aa97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dc0e0351-7f32-41b5-b934-594f4900aa97","properties":{"accountName":"clikr5fbejjxi3e","apiType":"Sql","creationTime":"2023-10-04T04:24:21+00:00","oldestRestorableTime":"2023-10-04T04:24:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f8f65735-144a-41cb-8afb-fcc61eb80983","creationTime":"2023-10-04T04:24:22Z"}]}},{"name":"015107d4-a198-4aa9-a11b-cb64a0436a68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/015107d4-a198-4aa9-a11b-cb64a0436a68","properties":{"accountName":"r-table-account-5559","apiType":"Table, - Sql","creationTime":"2023-10-05T00:14:26+00:00","oldestRestorableTime":"2023-10-05T00:14:26+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8b9a35ba-a861-424d-8db2-1ce9175ccd0c","creationTime":"2023-10-05T00:14:27Z"}]}},{"name":"c8564b78-6cf0-4db4-b08f-de890b2da54b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8564b78-6cf0-4db4-b08f-de890b2da54b","properties":{"accountName":"r-table-account-2646","apiType":"Table, - Sql","creationTime":"2023-10-05T00:22:23+00:00","oldestRestorableTime":"2023-10-05T00:22:23+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1601dabe-1ac0-47dd-bc4f-afdec10438a5","creationTime":"2023-10-05T00:22:24Z"}]}},{"name":"8032f56f-1819-465c-b5ff-50280bb1f602","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8032f56f-1819-465c-b5ff-50280bb1f602","properties":{"accountName":"r-database-account-581","apiType":"Sql","creationTime":"2023-10-10T05:13:46+00:00","oldestRestorableTime":"2023-10-10T05:13:46+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ec111c2f-33be-4d82-8f04-ba95055884ce","creationTime":"2023-10-10T05:13:46Z"}]}},{"name":"9a8f3947-36e4-487f-9e6d-12a169bffb6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a8f3947-36e4-487f-9e6d-12a169bffb6b","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e263b957-aaa3-49cb-ba90-324eab3edbd4","creationTime":"2023-09-18T18:56:46Z","deletionTime":"2023-09-18T18:58:40Z"}]}},{"name":"ae54d419-ffb7-4d5e-a55e-854cbdabde8a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae54d419-ffb7-4d5e-a55e-854cbdabde8a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T18:39:04Z","deletionTime":"2023-09-18T18:58:41Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5caba60c-272b-4dce-bcbd-27117bb593be","creationTime":"2023-09-18T18:39:05Z","deletionTime":"2023-09-18T18:58:41Z"}]}},{"name":"d51ebb6a-31e7-49be-aafa-ec859eb84797","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d51ebb6a-31e7-49be-aafa-ec859eb84797","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b1c09eac-b91e-4d7d-ad9c-fa77db6b1533","creationTime":"2023-09-18T18:59:39Z","deletionTime":"2023-09-18T19:16:58Z"}]}},{"name":"d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6e407d9-39f3-4e52-ae31-f5d8db4fe1b9","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9a876b07-6a56-4551-b3ad-354daca46403","creationTime":"2023-09-18T19:15:00Z","deletionTime":"2023-09-18T19:16:59Z"}]}},{"name":"23aa6c96-451c-41a4-bd40-63b05f1cca91","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23aa6c96-451c-41a4-bd40-63b05f1cca91","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-09-18T19:17:54Z","deletionTime":"2023-09-18T19:20:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92c7fddf-822a-46bb-bb6a-8cb1c31150b8","creationTime":"2023-09-18T19:17:55Z","deletionTime":"2023-09-18T19:20:03Z"}]}},{"name":"bf489f67-f50a-4a24-a376-e5caf575f60e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf489f67-f50a-4a24-a376-e5caf575f60e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-09-18T19:25:43Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"79931fcb-5ed8-44f7-a73d-c70d31519a8c","creationTime":"2023-09-18T19:25:44Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f73fd9b-6ef2-40e3-aba9-b3bf1a27df8b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4a15ef04-abc2-4195-9343-8879d73e8863","creationTime":"2023-09-18T19:43:22Z","deletionTime":"2023-09-18T19:45:11Z"}]}},{"name":"560eca4b-0707-4261-85d3-854323c2ad25","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560eca4b-0707-4261-85d3-854323c2ad25","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:50:59Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a48ab486-0440-4234-918f-83a357ddcff2","creationTime":"2023-09-18T19:51:00Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"56c7bd11-3cf4-4535-b6a4-80c4580659ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56c7bd11-3cf4-4535-b6a4-80c4580659ee","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c4c93112-9d35-4b96-a740-f91a2ed0d854","creationTime":"2023-09-18T20:09:07Z","deletionTime":"2023-09-18T20:10:53Z"}]}},{"name":"4d5bcbe6-56e0-4e6d-baed-f599f6919daf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d5bcbe6-56e0-4e6d-baed-f599f6919daf","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"11c62f62-d9be-47f8-917e-7e9ca15dbfc1","creationTime":"2023-09-18T20:36:15Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dcd84cc2-3d11-403c-b7b4-3368bb48a1b9","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-09-18T20:20:36Z","deletionTime":"2023-09-18T20:38:00Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c71c2301-bd00-4271-bfa5-123ebeb0802d","creationTime":"2023-09-18T20:20:37Z","deletionTime":"2023-09-18T20:38:00Z"}]}},{"name":"ef438667-a724-41f9-b503-cff804967c2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef438667-a724-41f9-b503-cff804967c2d","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-09-18T20:39:04Z","deletionTime":"2023-09-18T20:58:35Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd0e42a1-b382-4367-a891-5f64c16625e4","creationTime":"2023-09-18T20:39:05Z","deletionTime":"2023-09-18T20:58:35Z"}]}},{"name":"89366a40-8e22-4118-a3fb-8b44d2a0b5a6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89366a40-8e22-4118-a3fb-8b44d2a0b5a6","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d419059e-0411-4193-991a-d6423f43881b","creationTime":"2023-09-18T20:56:36Z","deletionTime":"2023-09-18T20:58:36Z"}]}},{"name":"859c4cc6-3bcf-4080-ac60-4341e08423a7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859c4cc6-3bcf-4080-ac60-4341e08423a7","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T20:59:40Z","deletionTime":"2023-09-18T21:17:21Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"807445c0-1dfe-46b7-b301-81faf4215018","creationTime":"2023-09-18T20:59:42Z","deletionTime":"2023-09-18T21:17:21Z"}]}},{"name":"fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef368fd-79cb-4bfb-8c2a-41fdeb064b3d","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cf4b6d0b-4a87-49e6-b74a-0870a504269c","creationTime":"2023-09-18T21:15:44Z","deletionTime":"2023-09-18T21:17:22Z"}]}},{"name":"60e8bb42-c6b5-4506-b9c6-e070fb57e7be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60e8bb42-c6b5-4506-b9c6-e070fb57e7be","properties":{"accountName":"clibq6evd7zblt2","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:00:18Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cbb1df11-2074-4078-b2d0-870238d0e05a","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:00:18Z"}]}},{"name":"5ad69bf3-a285-4e83-be3c-78d75a9d91ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ad69bf3-a285-4e83-be3c-78d75a9d91ca","properties":{"accountName":"clisqto5y5ffq42","apiType":"Sql","creationTime":"2023-09-27T10:58:03Z","deletionTime":"2023-09-27T11:01:44Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"21337c00-c610-479b-8a93-1fe3337ca89e","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:01:44Z"}]}},{"name":"bdd80f78-ab0f-4c3c-9154-5d12683a50f9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd80f78-ab0f-4c3c-9154-5d12683a50f9","properties":{"accountName":"clituuxv33azgrm","apiType":"MongoDB","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fd8d1bf-6be1-407a-83b2-55d8bc799e78","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:15Z"}]}},{"name":"15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/15c7ea1f-d84f-4ff8-a3fd-186b90a67ba8","properties":{"accountName":"cli4yvuokapz45q","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T10:58:10Z","deletionTime":"2023-09-27T11:02:23Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df34a8d2-a22b-46db-860f-6e584fa2f820","creationTime":"2023-09-27T10:58:11Z","deletionTime":"2023-09-27T11:02:23Z"}]}},{"name":"6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6bc4308b-3aec-4ef0-bcc9-d53ddbf60dc6","properties":{"accountName":"cliqup5xc2oce3j","apiType":"Sql","creationTime":"2023-09-27T11:02:24Z","deletionTime":"2023-09-27T11:05:20Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5c5a320e-9920-4c9b-88cb-57b813ac70a6","creationTime":"2023-09-27T11:02:25Z","deletionTime":"2023-09-27T11:05:20Z"}]}},{"name":"408ec4a9-8122-44bc-875a-0921046759f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/408ec4a9-8122-44bc-875a-0921046759f2","properties":{"accountName":"clipq5rdmtetxb5","apiType":"MongoDB","creationTime":"2023-09-27T11:03:10Z","deletionTime":"2023-09-27T11:06:54Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dc63dbc7-cf30-4c3b-947d-5b46bfeebd0b","creationTime":"2023-09-27T11:03:11Z","deletionTime":"2023-09-27T11:06:54Z"}]}},{"name":"394d6a3c-0671-4ce4-96e8-e866817ee6e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/394d6a3c-0671-4ce4-96e8-e866817ee6e6","properties":{"accountName":"clifljtvxjkg7ix","apiType":"MongoDB","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1dd7f0a9-612d-464f-b6fb-781399436e16","creationTime":"2023-09-27T10:57:58Z","deletionTime":"2023-09-27T11:12:48Z"}]}},{"name":"1765df7c-3dd4-4d8d-b830-7aa287742a2b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1765df7c-3dd4-4d8d-b830-7aa287742a2b","properties":{"accountName":"cliuml5ahhew7f6","apiType":"Sql","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2317e304-0d6e-4404-a823-55a7959191ca","creationTime":"2023-09-27T10:57:52Z","deletionTime":"2023-09-27T11:13:03Z"}]}},{"name":"c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8c4b69c-2da4-4401-9ebb-4a92fa9faaf2","properties":{"accountName":"cli2elc4gcy5sw4","apiType":"Sql","creationTime":"2023-09-27T10:58:04Z","deletionTime":"2023-09-27T11:13:18Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"225b1268-d389-460f-a509-5c75ac2dcf54","creationTime":"2023-09-27T10:58:05Z","deletionTime":"2023-09-27T11:13:18Z"}]}},{"name":"73f451a3-c991-4f2e-885a-59012d35e47a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73f451a3-c991-4f2e-885a-59012d35e47a","properties":{"accountName":"clievmgxhrhulxr","apiType":"Sql","creationTime":"2023-09-27T12:47:39Z","deletionTime":"2023-09-27T12:51:32Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3a35c546-fc3d-45e1-b984-451f780aacd9","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T12:51:32Z"}]}},{"name":"e74b6c0a-20da-4727-a8b7-38ebc5a28012","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e74b6c0a-20da-4727-a8b7-38ebc5a28012","properties":{"accountName":"cliae6fljh6mfpq","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:52Z","deletionTime":"2023-09-27T12:51:35Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2cd34c24-fa84-45eb-9a2a-0e51776841c6","creationTime":"2023-09-27T12:47:53Z","deletionTime":"2023-09-27T12:51:35Z"}]}},{"name":"da7d6927-4c2a-417c-b07d-5905f8a7507c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da7d6927-4c2a-417c-b07d-5905f8a7507c","properties":{"accountName":"cli3wodjcbx7aem","apiType":"MongoDB","creationTime":"2023-09-27T12:47:49Z","deletionTime":"2023-09-27T12:52:05Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c62dbbf2-1ff1-4991-8aa2-f678daaaa98e","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T12:52:05Z"}]}},{"name":"c68418b6-85b0-4e70-8346-237c245fe2f4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c68418b6-85b0-4e70-8346-237c245fe2f4","properties":{"accountName":"clizktpqwwqosd6","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:47:42Z","deletionTime":"2023-09-27T12:52:07Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d037f51e-7bc5-4600-a969-0e3643d148b0","creationTime":"2023-09-27T12:47:43Z","deletionTime":"2023-09-27T12:52:07Z"}]}},{"name":"b4cff5a4-73ba-4586-ba23-d23f74f6adfe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4cff5a4-73ba-4586-ba23-d23f74f6adfe","properties":{"accountName":"clifatslhizfmlw","apiType":"Sql","creationTime":"2023-09-27T12:52:22Z","deletionTime":"2023-09-27T12:55:40Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e53bea45-36c9-4b83-87d0-41c28ac2f335","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-09-27T12:55:40Z"}]}},{"name":"f5a8709d-4065-4035-9deb-b20bf105a813","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5a8709d-4065-4035-9deb-b20bf105a813","properties":{"accountName":"cliofon2lvxlcy3","apiType":"MongoDB","creationTime":"2023-09-27T12:52:58Z","deletionTime":"2023-09-27T12:56:46Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db2dc2f5-ae9e-4d9b-a629-3e264335ea10","creationTime":"2023-09-27T12:52:59Z","deletionTime":"2023-09-27T12:56:46Z"}]}},{"name":"9a1aa113-69af-4c25-8499-1f2e11b415ec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a1aa113-69af-4c25-8499-1f2e11b415ec","properties":{"accountName":"cliirrg5sff2kwl","apiType":"Sql","creationTime":"2023-09-27T12:47:40Z","deletionTime":"2023-09-27T13:02:51Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fa1d26a5-1b77-44aa-97b5-20d77b8bb55b","creationTime":"2023-09-27T12:47:41Z","deletionTime":"2023-09-27T13:02:51Z"}]}},{"name":"f1dad7db-968b-4767-8bad-4a6e8d850c52","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1dad7db-968b-4767-8bad-4a6e8d850c52","properties":{"accountName":"cli5dhv4ueq2y5n","apiType":"MongoDB","creationTime":"2023-09-27T12:47:50Z","deletionTime":"2023-09-27T13:02:52Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6b4bf85-3100-4541-84ee-7e99772ee678","creationTime":"2023-09-27T12:47:51Z","deletionTime":"2023-09-27T13:02:52Z"}]}},{"name":"def9cd45-efb8-4cdb-8e42-a3ba40edef2e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/def9cd45-efb8-4cdb-8e42-a3ba40edef2e","properties":{"accountName":"clifo36j7tqi253","apiType":"Sql","creationTime":"2023-09-27T12:47:46Z","deletionTime":"2023-09-27T13:03:18Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0901c2fb-517d-4d0f-953d-e7c8b9ecf068","creationTime":"2023-09-27T12:47:47Z","deletionTime":"2023-09-27T13:03:18Z"}]}},{"name":"b6515594-01e5-48a9-9a03-641ebf0ee677","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6515594-01e5-48a9-9a03-641ebf0ee677","properties":{"accountName":"clip25wwrhx3ysa","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:43Z","deletionTime":"2023-10-03T17:00:19Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fad1ff97-7e07-4ba8-a07c-80504a8e90dd","creationTime":"2023-10-03T16:56:44Z","deletionTime":"2023-10-03T17:00:19Z"}]}},{"name":"66b65df8-9dca-4685-84cc-20c055e2d731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b65df8-9dca-4685-84cc-20c055e2d731","properties":{"accountName":"cli3jsfdtu2txzj","apiType":"Sql","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64dc12b3-cf6c-4015-955f-9506bb35cecf","creationTime":"2023-10-03T16:56:37Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"bacdb2ea-9931-4596-8d70-cf5f17ec1926","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bacdb2ea-9931-4596-8d70-cf5f17ec1926","properties":{"accountName":"clicoo3qjjgnane","apiType":"MongoDB","creationTime":"2023-10-03T16:56:39Z","deletionTime":"2023-10-03T17:00:48Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b0b51ece-7644-4e80-8e15-d58ed1ed1a8d","creationTime":"2023-10-03T16:56:40Z","deletionTime":"2023-10-03T17:00:48Z"}]}},{"name":"71da2637-9960-4c08-b62c-7ad67d1f11f2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/71da2637-9960-4c08-b62c-7ad67d1f11f2","properties":{"accountName":"cli5g6dts4cwcf3","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T16:56:46Z","deletionTime":"2023-10-03T17:01:21Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"89d1b498-cd58-4dc9-95df-5935076050aa","creationTime":"2023-10-03T16:56:47Z","deletionTime":"2023-10-03T17:01:21Z"}]}},{"name":"c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c242ec37-d5df-4fdd-87c2-ec3b81acd7d7","properties":{"accountName":"cliwsz7xdss5eyu","apiType":"Sql","creationTime":"2023-10-03T17:01:32Z","deletionTime":"2023-10-03T17:04:54Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7df78fef-7be7-40e9-9eca-29315ef62b9d","creationTime":"2023-10-03T17:01:33Z","deletionTime":"2023-10-03T17:04:54Z"}]}},{"name":"b98fa561-ccc9-4fd1-a900-6aac78e5e564","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b98fa561-ccc9-4fd1-a900-6aac78e5e564","properties":{"accountName":"cli2sitwhmsp3uj","apiType":"MongoDB","creationTime":"2023-10-03T17:01:43Z","deletionTime":"2023-10-03T17:05:26Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"63900a07-9e71-48ca-bba4-a22969b505ed","creationTime":"2023-10-03T17:01:44Z","deletionTime":"2023-10-03T17:05:26Z"}]}},{"name":"ffe48dc7-eeb3-4e32-a388-09ccaacdb269","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffe48dc7-eeb3-4e32-a388-09ccaacdb269","properties":{"accountName":"cliergsnkaqaqgz","apiType":"MongoDB","creationTime":"2023-10-03T16:56:54Z","deletionTime":"2023-10-03T17:15:04Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9cb1a68c-474c-47d8-a3aa-a5bb2262496c","creationTime":"2023-10-03T16:56:55Z","deletionTime":"2023-10-03T17:15:04Z"}]}},{"name":"e05dae8c-c5e3-4365-8dd9-31b386bc92a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e05dae8c-c5e3-4365-8dd9-31b386bc92a9","properties":{"accountName":"clil6ifriwsoire","apiType":"Sql","creationTime":"2023-10-03T16:56:22Z","deletionTime":"2023-10-03T17:15:05Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b377fa48-08ef-4e61-bc59-55fb0c76fa88","creationTime":"2023-10-03T16:56:23Z","deletionTime":"2023-10-03T17:15:05Z"}]}},{"name":"940a79fc-058f-4a43-a68b-9f667cb4dbbc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/940a79fc-058f-4a43-a68b-9f667cb4dbbc","properties":{"accountName":"clijqycu6atplzw","apiType":"Sql","creationTime":"2023-10-03T16:56:26Z","deletionTime":"2023-10-03T17:19:34Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08c97215-54f0-4734-991e-b9c27534303f","creationTime":"2023-10-03T16:56:27Z","deletionTime":"2023-10-03T17:19:34Z"}]}},{"name":"890ee6b2-a6dc-4a02-944f-e781befadd41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/890ee6b2-a6dc-4a02-944f-e781befadd41","properties":{"accountName":"climcljd335s5vf","apiType":"Table, - Sql","creationTime":"2023-10-03T17:02:36Z","deletionTime":"2023-10-03T17:21:36Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"ebcc0f9d-955a-4fed-b8c1-69d0b785eb3a","creationTime":"2023-10-03T17:02:37Z","deletionTime":"2023-10-03T17:21:36Z"}]}},{"name":"66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66fbe4bb-0cb4-41d8-86ac-a4a71f60adbe","properties":{"accountName":"cliff6yed7cgxic","apiType":"Sql","creationTime":"2023-10-03T17:53:30Z","deletionTime":"2023-10-03T17:57:18Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dfc9dfab-d541-468b-b98f-7a78f6572684","creationTime":"2023-10-03T17:53:31Z","deletionTime":"2023-10-03T17:57:18Z"}]}},{"name":"f93f06e2-cf7e-40de-8055-27fd6b65a51c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93f06e2-cf7e-40de-8055-27fd6b65a51c","properties":{"accountName":"clibkbgb6li5ynj","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:42Z","deletionTime":"2023-10-03T17:57:20Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"688c8a39-1bb8-4797-894e-d7c9703927d9","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T17:57:20Z"}]}},{"name":"393cdc5e-5af8-495e-8ef4-83da248be923","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/393cdc5e-5af8-495e-8ef4-83da248be923","properties":{"accountName":"cli675vhs7bmlf4","apiType":"MongoDB","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:57:52Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7e41bce8-fa97-40c7-98c3-916dd2bec7a1","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:57:52Z"}]}},{"name":"c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0dbcc59-19f2-405d-ae2b-3b4dbbef1b08","properties":{"accountName":"clic5xfsjixbasl","apiType":"Gremlin, - Sql","creationTime":"2023-10-03T17:53:37Z","deletionTime":"2023-10-03T17:58:26Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5edf02d9-aa59-48a5-a404-98bcfcc44dac","creationTime":"2023-10-03T17:53:38Z","deletionTime":"2023-10-03T17:58:26Z"}]}},{"name":"030c3aef-747d-4f18-a941-79ad7af58731","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/030c3aef-747d-4f18-a941-79ad7af58731","properties":{"accountName":"cliphxvgypt54fw","apiType":"Sql","creationTime":"2023-10-03T17:58:03Z","deletionTime":"2023-10-03T18:01:29Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"4d18eb98-7639-41af-b939-3cc06520526b","creationTime":"2023-10-03T17:58:04Z","deletionTime":"2023-10-03T18:01:29Z"}]}},{"name":"7e7be21b-7453-4891-92fe-1963dde9d92b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e7be21b-7453-4891-92fe-1963dde9d92b","properties":{"accountName":"cli2lqnqbco5eyp","apiType":"MongoDB","creationTime":"2023-10-03T17:58:39Z","deletionTime":"2023-10-03T18:02:02Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7713a895-4def-45ce-9d08-842f97ae1eac","creationTime":"2023-10-03T17:58:40Z","deletionTime":"2023-10-03T18:02:02Z"}]}},{"name":"60d4ddb1-8d7c-4a16-95b7-c9c763784d71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60d4ddb1-8d7c-4a16-95b7-c9c763784d71","properties":{"accountName":"cliz7onog2bcti6","apiType":"Sql","creationTime":"2023-10-03T17:53:28Z","deletionTime":"2023-10-03T18:13:47Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8c73e3e3-ae47-4dee-a3a3-2ee25db144b5","creationTime":"2023-10-03T17:53:29Z","deletionTime":"2023-10-03T18:13:47Z"}]}},{"name":"127b199d-140f-44ee-8527-f4af6d7ee003","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/127b199d-140f-44ee-8527-f4af6d7ee003","properties":{"accountName":"cli3kidelq5bxyv","apiType":"Table, - Sql","creationTime":"2023-10-03T17:59:39Z","deletionTime":"2023-10-03T18:13:49Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"3987be4d-636c-4614-afa0-597554eda910","creationTime":"2023-10-03T17:59:40Z","deletionTime":"2023-10-03T18:13:49Z"}]}},{"name":"20da130a-6a16-440d-beb7-59b67028d82f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20da130a-6a16-440d-beb7-59b67028d82f","properties":{"accountName":"cliysb6mkhwinh6","apiType":"MongoDB","creationTime":"2023-10-03T17:53:43Z","deletionTime":"2023-10-03T18:13:51Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ee7dfab8-bbea-42fe-b6b4-e0a5c0b2c985","creationTime":"2023-10-03T17:53:44Z","deletionTime":"2023-10-03T18:13:51Z"}]}},{"name":"6291aa06-aa18-43e7-9991-3fbf281d80de","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6291aa06-aa18-43e7-9991-3fbf281d80de","properties":{"accountName":"clixmbtayzjve4u","apiType":"Sql","creationTime":"2023-10-04T03:51:28Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d34b69e8-db31-4f8b-9bf0-f28ae5a3ad5e","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"77ad2113-d6ac-43be-a7c5-c006db46b311","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/77ad2113-d6ac-43be-a7c5-c006db46b311","properties":{"accountName":"clivimxsz7shw2r","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T03:55:27Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"694058ef-44d7-433f-aee0-ed9c090d2dcd","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:27Z"}]}},{"name":"9e941837-8f58-49e8-83c2-8e199236c65d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e941837-8f58-49e8-83c2-8e199236c65d","properties":{"accountName":"cliqn2wdm2jw2sq","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:40Z","deletionTime":"2023-10-04T03:55:30Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d0ce3fa3-96d3-4d18-9cc2-865125045f98","creationTime":"2023-10-04T03:51:41Z","deletionTime":"2023-10-04T03:55:30Z"}]}},{"name":"575097d7-2967-47b0-8950-d43f097d7103","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/575097d7-2967-47b0-8950-d43f097d7103","properties":{"accountName":"cliw4mv4au5jjum","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T03:55:59Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b083e32-5b07-4f38-b697-aec34141d2b5","creationTime":"2023-10-04T03:51:34Z","deletionTime":"2023-10-04T03:55:59Z"}]}},{"name":"86febbbb-da92-4d24-ad10-2105287ff23a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86febbbb-da92-4d24-ad10-2105287ff23a","properties":{"accountName":"clioajmmwlwqmqq","apiType":"Sql","creationTime":"2023-10-04T03:56:13Z","deletionTime":"2023-10-04T03:58:38Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f8cbfbe-bd40-47ba-8de2-94d17710decc","creationTime":"2023-10-04T03:56:15Z","deletionTime":"2023-10-04T03:58:38Z"}]}},{"name":"5a3814ea-dc05-457d-aaf1-894e4aff9c5d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a3814ea-dc05-457d-aaf1-894e4aff9c5d","properties":{"accountName":"cliu7ltpjcif3sb","apiType":"MongoDB","creationTime":"2023-10-04T03:56:23Z","deletionTime":"2023-10-04T04:00:08Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00eeae36-2283-44da-b436-513937481858","creationTime":"2023-10-04T03:56:24Z","deletionTime":"2023-10-04T04:00:08Z"}]}},{"name":"948812d9-723c-4fec-9039-8c521dfb4141","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/948812d9-723c-4fec-9039-8c521dfb4141","properties":{"accountName":"clib2up3u4yt4cf","apiType":"Sql","creationTime":"2023-10-04T03:51:29Z","deletionTime":"2023-10-04T04:17:17Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1e6928f0-6b45-49ea-a1f3-deb15aaada52","creationTime":"2023-10-04T03:51:30Z","deletionTime":"2023-10-04T04:17:17Z"}]}},{"name":"c4717798-c85e-495a-b2a1-b0551ea956c0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4717798-c85e-495a-b2a1-b0551ea956c0","properties":{"accountName":"climxltjietsq6o","apiType":"MongoDB","creationTime":"2023-10-04T03:51:32Z","deletionTime":"2023-10-04T04:19:25Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"831445e5-d859-4c4d-8929-326a9a56e83e","creationTime":"2023-10-04T03:51:33Z","deletionTime":"2023-10-04T04:19:25Z"}]}},{"name":"21a15e8b-87ae-4ab3-aeea-240ed8b64025","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21a15e8b-87ae-4ab3-aeea-240ed8b64025","properties":{"accountName":"cliywhu6bgedznf","apiType":"Sql","creationTime":"2023-10-04T03:51:26Z","deletionTime":"2023-10-04T04:23:29Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c7a0a2ab-c014-4d61-bfb5-88a4297975f5","creationTime":"2023-10-04T03:51:27Z","deletionTime":"2023-10-04T04:23:29Z"}]}},{"name":"39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39f7d5ee-54a9-4017-9f8b-b37b5c42e8e8","properties":{"accountName":"cliijdfzay4ns3h","apiType":"Sql","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"639c5fd0-ce5e-4f37-88b1-610eaeefc365","creationTime":"2023-10-04T04:18:55Z","deletionTime":"2023-10-04T04:23:44Z"}]}},{"name":"ef396e84-848a-4bf2-87ec-194368ca7acf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef396e84-848a-4bf2-87ec-194368ca7acf","properties":{"accountName":"clixwxcg4nobxf3","apiType":"Table, - Sql","creationTime":"2023-10-04T03:57:09Z","deletionTime":"2023-10-04T04:26:52Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"74a7109a-4203-4771-93c2-2dd49bd0e4b8","creationTime":"2023-10-04T03:57:10Z","deletionTime":"2023-10-04T04:26:52Z"}]}},{"name":"032852c4-3610-4c9c-8104-9b25e322776f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032852c4-3610-4c9c-8104-9b25e322776f","properties":{"accountName":"clidd2oznorh5ab","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:07:58Z","deletionTime":"2023-10-04T05:11:13Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7dd89447-49e0-4318-b7dc-409f2bfc3b08","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:11:13Z"}]}},{"name":"7f02bc09-1406-4e5d-939c-f5a6eb16969e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f02bc09-1406-4e5d-939c-f5a6eb16969e","properties":{"accountName":"clitsetqbgkolzc","apiType":"MongoDB","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2e8b8b2b-96cc-451f-82f9-3dfe2944d268","creationTime":"2023-10-04T05:08:02Z","deletionTime":"2023-10-04T05:11:48Z"}]}},{"name":"e1b21312-7576-48f7-ac81-e075daca5fab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1b21312-7576-48f7-ac81-e075daca5fab","properties":{"accountName":"clirbx4uk7fhuo4","apiType":"Sql","creationTime":"2023-10-04T05:07:59Z","deletionTime":"2023-10-04T05:12:15Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"010731fb-dad4-4607-b1cf-65556cc44781","creationTime":"2023-10-04T05:08:00Z","deletionTime":"2023-10-04T05:12:15Z"}]}},{"name":"c87b2757-192d-4442-8411-6591bffc62b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c87b2757-192d-4442-8411-6591bffc62b3","properties":{"accountName":"clinra5c3xmsepv","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:08:07Z","deletionTime":"2023-10-04T05:12:55Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6850fe76-8a43-4f39-a02f-6ab62460f5ac","creationTime":"2023-10-04T05:08:08Z","deletionTime":"2023-10-04T05:12:55Z"}]}},{"name":"61e78d63-90b0-417b-96e6-5ffe60fae9e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61e78d63-90b0-417b-96e6-5ffe60fae9e0","properties":{"accountName":"cliccov2cra2y4b","apiType":"MongoDB","creationTime":"2023-10-04T05:12:38Z","deletionTime":"2023-10-04T05:15:57Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8e3c218e-69d1-4012-a484-e4ec782ba55a","creationTime":"2023-10-04T05:12:39Z","deletionTime":"2023-10-04T05:15:57Z"}]}},{"name":"f1e79903-758e-4680-a9e3-9aaa1d154a35","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1e79903-758e-4680-a9e3-9aaa1d154a35","properties":{"accountName":"cliiypvcrxtfwyu","apiType":"Sql","creationTime":"2023-10-04T05:12:42Z","deletionTime":"2023-10-04T05:16:28Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a0dfba3e-d0ef-491c-9ed9-f2cdd87b4e26","creationTime":"2023-10-04T05:12:43Z","deletionTime":"2023-10-04T05:16:28Z"}]}},{"name":"e307a0cb-f040-4c3a-81d7-bf8eb0625c48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e307a0cb-f040-4c3a-81d7-bf8eb0625c48","properties":{"accountName":"clin3xfmuree6kq","apiType":"MongoDB","creationTime":"2023-10-04T05:08:04Z","deletionTime":"2023-10-04T05:35:12Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3061a35b-d05b-4c28-9312-786cadc28723","creationTime":"2023-10-04T05:08:05Z","deletionTime":"2023-10-04T05:35:12Z"}]}},{"name":"0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b1c8aa3-54fc-4e73-88b6-b4d0eef2a1ba","properties":{"accountName":"cligikbd2uv5ves","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f171d45-68a5-4503-a271-8353a6b089fe","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:35:23Z"}]}},{"name":"65f4251b-e943-4ddf-95a0-90ed8065f8a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65f4251b-e943-4ddf-95a0-90ed8065f8a1","properties":{"accountName":"cli2olyoqzzi4dz","apiType":"Sql","creationTime":"2023-10-04T05:07:56Z","deletionTime":"2023-10-04T05:40:01Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f1d7e291-30ab-4b1c-9002-8e4f9423983d","creationTime":"2023-10-04T05:07:57Z","deletionTime":"2023-10-04T05:40:01Z"}]}},{"name":"57efa204-824f-444f-b80a-93b585cda271","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57efa204-824f-444f-b80a-93b585cda271","properties":{"accountName":"clipduaad5emxgz","apiType":"Sql","creationTime":"2023-10-04T05:35:42Z","deletionTime":"2023-10-04T05:41:41Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"572acccd-009b-4655-9b12-4c05a116aad6","creationTime":"2023-10-04T05:35:43Z","deletionTime":"2023-10-04T05:41:41Z"}]}},{"name":"a8cc938f-7818-4ff3-a44f-fde2799a5ffc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8cc938f-7818-4ff3-a44f-fde2799a5ffc","properties":{"accountName":"cliqghogu7kdina","apiType":"Table, - Sql","creationTime":"2023-10-04T05:14:15Z","deletionTime":"2023-10-04T05:43:46Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c46313a8-c950-4732-8f0b-9442388d46fc","creationTime":"2023-10-04T05:14:16Z","deletionTime":"2023-10-04T05:43:46Z"}]}},{"name":"a09e1853-034b-4aea-bbd2-58bed8e1281d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a09e1853-034b-4aea-bbd2-58bed8e1281d","properties":{"accountName":"clivfkn47vjkaug","apiType":"MongoDB","creationTime":"2023-10-04T05:36:07Z","deletionTime":"2023-10-04T06:02:58Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d5a70789-c32a-47e7-9edd-4b9124a4804c","creationTime":"2023-10-04T05:36:08Z","deletionTime":"2023-10-04T06:02:58Z"}]}},{"name":"452dbb4a-dc79-485e-9f06-dc35da7e3ccf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/452dbb4a-dc79-485e-9f06-dc35da7e3ccf","properties":{"accountName":"cli4koayigisfsc","apiType":"Sql","creationTime":"2023-10-04T05:40:43Z","deletionTime":"2023-10-04T06:07:17Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8a9b280f-6402-4b37-914c-0cbb7e491e1c","creationTime":"2023-10-04T05:40:44Z","deletionTime":"2023-10-04T06:07:17Z"}]}},{"name":"d716e6de-05ae-4e5c-92c8-a69a708a04da","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d716e6de-05ae-4e5c-92c8-a69a708a04da","properties":{"accountName":"clifa565xmepqu6","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T05:12:06Z","deletionTime":"2023-10-04T06:08:51Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44f82738-43de-446c-b3aa-47bf05b62cea","creationTime":"2023-10-04T05:12:07Z","deletionTime":"2023-10-04T06:08:51Z"}]}},{"name":"69df0d56-8577-4801-93fb-881d970bd4d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69df0d56-8577-4801-93fb-881d970bd4d7","properties":{"accountName":"r-database-account-7281","apiType":"Sql","creationTime":"2023-10-04T16:59:19Z","deletionTime":"2023-10-04T17:00:23Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2986712a-3c85-4e1b-956e-44bad32797d0","creationTime":"2023-10-04T16:59:20Z","deletionTime":"2023-10-04T17:00:23Z"}]}},{"name":"8bc38489-3e12-4b0f-98f4-dac86a927879","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bc38489-3e12-4b0f-98f4-dac86a927879","properties":{"accountName":"r-database-account-9965","apiType":"Sql","creationTime":"2023-10-04T17:11:19Z","deletionTime":"2023-10-04T17:13:19Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7c2f52c0-de9f-43c4-bd96-7f85729c80cc","creationTime":"2023-10-04T17:11:21Z","deletionTime":"2023-10-04T17:13:19Z"}]}},{"name":"c9213e17-9fd0-44d4-8f66-a69cf372b112","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9213e17-9fd0-44d4-8f66-a69cf372b112","properties":{"accountName":"r-database-account-4223","apiType":"Sql","creationTime":"2023-10-04T17:24:59Z","deletionTime":"2023-10-04T17:26:19Z","oldestRestorableTime":"2023-09-27T17:26:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"452036f1-2c26-4f17-a548-d9d0e91c0a99","creationTime":"2023-10-04T17:25:00Z","deletionTime":"2023-10-04T17:26:19Z"}]}},{"name":"6098beed-d364-4bab-93d6-9627fed29598","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6098beed-d364-4bab-93d6-9627fed29598","properties":{"accountName":"r-database-account-6828","apiType":"Sql","creationTime":"2023-10-04T17:37:41Z","deletionTime":"2023-10-04T18:06:57Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9f59f444-ee55-4c62-a5ac-a24f7fc6f475","creationTime":"2023-10-04T17:37:42Z","deletionTime":"2023-10-04T18:06:57Z"}]}},{"name":"961f2774-85e3-4043-bb12-50c8d27f68b7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/961f2774-85e3-4043-bb12-50c8d27f68b7","properties":{"accountName":"restoredaccount-9543","apiType":"Sql","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef955f2e-8d18-4b73-acbf-df819f52b719","creationTime":"2023-10-04T18:05:32Z","deletionTime":"2023-10-04T18:18:45Z"}]}},{"name":"667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667f53cc-ea82-4b3d-a37f-3bd6c4cb25e0","properties":{"accountName":"r-database-account-2767","apiType":"Sql","creationTime":"2023-10-04T18:33:49Z","deletionTime":"2023-10-04T18:35:38Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f528f18-1588-47ea-a294-6f8d31d6ac29","creationTime":"2023-10-04T18:33:50Z","deletionTime":"2023-10-04T18:35:38Z"}]}},{"name":"e46fb697-c611-4800-b782-94d829d9a167","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e46fb697-c611-4800-b782-94d829d9a167","properties":{"accountName":"r-database-account-9681","apiType":"Sql","creationTime":"2023-10-04T18:47:11Z","deletionTime":"2023-10-04T18:48:26Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5e676c66-57df-4f34-8701-6a8a35a21ffc","creationTime":"2023-10-04T18:47:12Z","deletionTime":"2023-10-04T18:48:26Z"}]}},{"name":"3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f05f9ba-22f6-47fb-9b4b-701d5e88b5ed","properties":{"accountName":"r-database-account-551","apiType":"Sql","creationTime":"2023-10-04T19:00:27Z","deletionTime":"2023-10-04T19:01:35Z","oldestRestorableTime":"2023-09-27T19:01:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9306c903-7de8-4be4-9608-45f9290387a0","creationTime":"2023-10-04T19:00:28Z","deletionTime":"2023-10-04T19:01:35Z"}]}},{"name":"37154748-f644-4978-8d43-ed42a9f22267","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37154748-f644-4978-8d43-ed42a9f22267","properties":{"accountName":"r-database-account-5772","apiType":"Sql","creationTime":"2023-10-04T19:13:19Z","deletionTime":"2023-10-04T19:42:02Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8f2cbfb4-51a8-4007-be61-e13eaccd2081","creationTime":"2023-10-04T19:13:20Z","deletionTime":"2023-10-04T19:42:02Z"}]}},{"name":"16d99cee-c567-4b3d-bada-c5863eba2028","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16d99cee-c567-4b3d-bada-c5863eba2028","properties":{"accountName":"restoredaccount-8606","apiType":"Sql","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed26f609-9350-45b1-9abe-cd4679ce69d8","creationTime":"2023-10-04T19:40:55Z","deletionTime":"2023-10-04T19:52:49Z"}]}},{"name":"78f512a3-731e-4274-ba8d-2b5f22c3816b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/78f512a3-731e-4274-ba8d-2b5f22c3816b","properties":{"accountName":"r-grem-db-account-1177","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:06:44Z","deletionTime":"2023-10-04T20:11:49Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3c73c31f-bc3a-4a96-b10f-bb94185f4e45","creationTime":"2023-10-04T20:06:45Z","deletionTime":"2023-10-04T20:11:49Z"}]}},{"name":"cea6cf63-692d-42ce-93e7-b479b490d3ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cea6cf63-692d-42ce-93e7-b479b490d3ff","properties":{"accountName":"r-grem-db-account-756","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:21:08Z","deletionTime":"2023-10-04T20:22:05Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"64aae00c-6aac-4687-8956-41ecbdd4766b","creationTime":"2023-10-04T20:21:09Z","deletionTime":"2023-10-04T20:22:05Z"}]}},{"name":"1a80e302-5ce9-461e-8640-84d54be0a5a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a80e302-5ce9-461e-8640-84d54be0a5a8","properties":{"accountName":"r-grem-db-account-4269","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:34:00Z","deletionTime":"2023-10-04T20:52:09Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"37663201-4c41-4f8e-9134-2f64c8a37fab","creationTime":"2023-10-04T20:34:02Z","deletionTime":"2023-10-04T20:52:09Z"}]}},{"name":"df4f2c9b-ba03-46db-b294-6e7badebd1b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4f2c9b-ba03-46db-b294-6e7badebd1b5","properties":{"accountName":"r-grem-db-account-9191","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:06:26Z","deletionTime":"2023-10-04T21:29:24Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"abd88132-5cfa-4a8b-8fe4-37c694d9c9ec","creationTime":"2023-10-04T21:06:27Z","deletionTime":"2023-10-04T21:29:24Z"}]}},{"name":"a1f393c3-c350-4df8-9040-7e1c8669f1a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f393c3-c350-4df8-9040-7e1c8669f1a3","properties":{"accountName":"restoredaccount-6562","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"00b85348-a177-44f2-8ce0-ee25d25e832e","creationTime":"2023-10-04T21:28:06Z","deletionTime":"2023-10-04T21:40:44Z"}]}},{"name":"d319ddc5-24dd-435e-aa6b-b3e38aa94f75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d319ddc5-24dd-435e-aa6b-b3e38aa94f75","properties":{"accountName":"restoredaccount-2944","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T20:53:13+00:00","deletionTime":"2023-10-04T21:53:53Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42ede432-7b00-4420-a54a-8391da3597f2","creationTime":"2023-10-04T20:53:13Z","deletionTime":"2023-10-04T21:53:53Z"}]}},{"name":"374b510b-8dae-4a57-a3c2-2ea19a7208e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/374b510b-8dae-4a57-a3c2-2ea19a7208e1","properties":{"accountName":"r-grem-db-account-1296","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T21:55:50Z","deletionTime":"2023-10-04T21:58:29Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76b19b7b-ac06-49a0-9761-e11a526973dd","creationTime":"2023-10-04T21:55:51Z","deletionTime":"2023-10-04T21:58:29Z"}]}},{"name":"6a4169e2-f086-4192-a489-3f970ae8df80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a4169e2-f086-4192-a489-3f970ae8df80","properties":{"accountName":"r-grem-db-account-6356","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:12:44Z","deletionTime":"2023-10-04T22:14:10Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"30c23d3e-f39c-459c-8ee2-1710a0a5e14b","creationTime":"2023-10-04T22:12:45Z","deletionTime":"2023-10-04T22:14:10Z"}]}},{"name":"decebecf-c0fa-4344-8b8f-ccac45789fdf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/decebecf-c0fa-4344-8b8f-ccac45789fdf","properties":{"accountName":"r-grem-db-account-8422","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:27:10Z","deletionTime":"2023-10-04T22:49:58Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8ad32ee2-da92-4475-bf2b-92db00b1ce32","creationTime":"2023-10-04T22:27:11Z","deletionTime":"2023-10-04T22:49:58Z"}]}},{"name":"305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/305e6aa1-c5bc-49b3-b104-24d49eb6d6bf","properties":{"accountName":"restoredaccount-3416","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"da3072b5-9949-4523-a2fb-f722f8519620","creationTime":"2023-10-04T22:48:43Z","deletionTime":"2023-10-04T23:01:23Z"}]}},{"name":"293f81a0-607b-42be-a382-fd12a5f1bd59","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/293f81a0-607b-42be-a382-fd12a5f1bd59","properties":{"accountName":"r-grem-db-account-3088","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:15:01Z","deletionTime":"2023-10-04T23:36:04Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"824a153f-0468-4431-a9f3-550eafec49e9","creationTime":"2023-10-04T23:15:02Z","deletionTime":"2023-10-04T23:36:04Z"}]}},{"name":"3012923d-3c2d-44f2-a08c-3c3267e49ba6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3012923d-3c2d-44f2-a08c-3c3267e49ba6","properties":{"accountName":"restoredaccount-6306","apiType":"Gremlin, - Sql","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"354b43ea-668f-44bc-b013-66b1d867738e","creationTime":"2023-10-04T23:34:41Z","deletionTime":"2023-10-04T23:46:47Z"}]}},{"name":"18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18e07ce7-7b83-4ed4-ba83-0cfa12fc1ada","properties":{"accountName":"r-table-account-1502","apiType":"Table, - Sql","creationTime":"2023-10-05T00:01:49Z","deletionTime":"2023-10-05T00:02:53Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2a84832b-a8b0-492a-8289-2d2bdd3982a0","creationTime":"2023-10-05T00:01:51Z","deletionTime":"2023-10-05T00:02:53Z"}]}},{"name":"7b99de39-c05a-4042-a668-04c263ce1787","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b99de39-c05a-4042-a668-04c263ce1787","properties":{"accountName":"r-table-account-8874","apiType":"Table, - Sql","creationTime":"2023-10-05T14:42:14Z","deletionTime":"2023-10-05T14:43:00Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5597aad7-bbd9-4b2c-91c6-db13287a7dd2","creationTime":"2023-10-05T14:42:15Z","deletionTime":"2023-10-05T14:43:00Z"}]}},{"name":"0d22b149-1c12-41cb-b308-a79b1e9f7295","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d22b149-1c12-41cb-b308-a79b1e9f7295","properties":{"accountName":"r-table-account-8408","apiType":"Table, - Sql","creationTime":"2023-10-05T14:53:46+00:00","deletionTime":"2023-10-05T15:13:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a6f4efd6-4782-4825-a637-47ea1b72a11c","creationTime":"2023-10-05T14:53:47Z","deletionTime":"2023-10-05T15:13:03Z"}]}},{"name":"60738e87-07f6-48bf-b649-b6053f682cd6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/60738e87-07f6-48bf-b649-b6053f682cd6","properties":{"accountName":"restoredaccount-5189","apiType":"Table, - Sql","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1670a753-07ed-40b7-8ef1-e307b4851c1b","creationTime":"2023-10-05T15:11:51Z","deletionTime":"2023-10-05T15:23:22Z"}]}},{"name":"53e5c44a-792b-4a24-a248-ec5d25d96766","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53e5c44a-792b-4a24-a248-ec5d25d96766","properties":{"accountName":"r-table-account-6805","apiType":"Table, - Sql","creationTime":"2023-10-05T15:36:22Z","deletionTime":"2023-10-05T15:53:48Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"13b4e548-b141-4d2c-bf5f-4745d48e454d","creationTime":"2023-10-05T15:36:23Z","deletionTime":"2023-10-05T15:53:48Z"}]}},{"name":"04a7797e-7622-4a28-8527-27c2ed445c61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a7797e-7622-4a28-8527-27c2ed445c61","properties":{"accountName":"restoredaccount-9742","apiType":"Table, - Sql","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"53b61867-5723-4e6c-a68a-eb5453f48f79","creationTime":"2023-10-05T15:52:46Z","deletionTime":"2023-10-05T16:04:09Z"}]}},{"name":"c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6c3b05a-e38e-4e39-a38a-afb01c2d71a0","properties":{"accountName":"r-table-account-8143","apiType":"Table, - Sql","creationTime":"2023-10-05T16:17:32Z","deletionTime":"2023-10-05T16:19:01Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"9b1dd07d-fd72-4c80-91d9-57f8ba6ca003","creationTime":"2023-10-05T16:17:33Z","deletionTime":"2023-10-05T16:19:01Z"}]}},{"name":"674790fd-2443-4a65-aa16-65cf431697d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/674790fd-2443-4a65-aa16-65cf431697d7","properties":{"accountName":"r-table-account-6906","apiType":"Table, - Sql","creationTime":"2023-10-05T16:32:10Z","deletionTime":"2023-10-05T16:32:57Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ed8f9bfb-783a-495b-bc5e-bda6ff8107c7","creationTime":"2023-10-05T16:32:11Z","deletionTime":"2023-10-05T16:32:57Z"}]}},{"name":"464c80a0-28bd-44f4-93fc-9dfb822e4db2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/464c80a0-28bd-44f4-93fc-9dfb822e4db2","properties":{"accountName":"r-table-account-9845","apiType":"Table, - Sql","creationTime":"2023-10-05T16:43:48Z","deletionTime":"2023-10-05T17:02:34Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cff67a1c-94a7-44b5-99c4-680f7ee9bdd9","creationTime":"2023-10-05T16:43:49Z","deletionTime":"2023-10-05T17:02:34Z"}]}},{"name":"40a532fc-1229-4d8a-8da0-b8220f537a4b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40a532fc-1229-4d8a-8da0-b8220f537a4b","properties":{"accountName":"restoredaccount-6218","apiType":"Table, - Sql","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dcdb3fe4-654f-4898-9d96-38af09fdb6f4","creationTime":"2023-10-05T17:01:41Z","deletionTime":"2023-10-05T17:13:28Z"}]}},{"name":"e5b6105d-f74c-4b94-9d96-4e457e081111","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5b6105d-f74c-4b94-9d96-4e457e081111","properties":{"accountName":"r-table-account-4432","apiType":"Table, - Sql","creationTime":"2023-10-05T17:26:31Z","deletionTime":"2023-10-05T17:43:17Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"db20737f-85dd-4a66-99ad-e6b186981d1f","creationTime":"2023-10-05T17:26:32Z","deletionTime":"2023-10-05T17:43:17Z"}]}},{"name":"d25cbff1-e83d-4d44-afec-4cd734c5832e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25cbff1-e83d-4d44-afec-4cd734c5832e","properties":{"accountName":"restoredaccount-1800","apiType":"Table, - Sql","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"62e3330f-d92b-46f6-ab20-095da4813d64","creationTime":"2023-10-05T17:42:32Z","deletionTime":"2023-10-05T17:54:10Z"}]}},{"name":"faf93f67-a2cb-4912-8851-2c9fef935bdb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/faf93f67-a2cb-4912-8851-2c9fef935bdb","properties":{"accountName":"r-table-account-4874","apiType":"Table, - Sql","creationTime":"2023-10-05T18:07:42Z","deletionTime":"2023-10-05T18:11:31Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d504d24e-ae08-4217-9c2a-736953070c11","creationTime":"2023-10-05T18:07:44Z","deletionTime":"2023-10-05T18:11:31Z"}]}},{"name":"1f52c8c9-2084-4b38-be3f-a5b81802eaec","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f52c8c9-2084-4b38-be3f-a5b81802eaec","properties":{"accountName":"dbaccount-2266","apiType":"Sql","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0c709eee-3f70-4400-b1cb-606ae94193c3","creationTime":"2023-10-05T18:45:06Z","deletionTime":"2023-10-05T18:49:26Z"}]}},{"name":"5aa5a170-2bc9-475f-a1b2-7459af5f67ea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5aa5a170-2bc9-475f-a1b2-7459af5f67ea","properties":{"accountName":"dbaccount-1283","apiType":"Sql","creationTime":"2023-10-05T18:51:21Z","deletionTime":"2023-10-05T18:57:12Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6e3db6ee-8d0f-4ce0-8573-bcd278438ca6","creationTime":"2023-10-05T18:51:22Z","deletionTime":"2023-10-05T18:57:12Z"}]}},{"name":"ab4538df-f051-4ffd-b3d8-51a9660584b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4538df-f051-4ffd-b3d8-51a9660584b8","properties":{"accountName":"r-table-account-8949","apiType":"Table, - Sql","creationTime":"2023-10-06T03:20:53Z","deletionTime":"2023-10-06T03:22:10Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"823151df-7260-43ed-b0ef-fdd4fa883946","creationTime":"2023-10-06T03:20:54Z","deletionTime":"2023-10-06T03:22:10Z"}]}},{"name":"6da19be2-963a-4255-ae09-98b25560273c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6da19be2-963a-4255-ae09-98b25560273c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T10:42:03Z","deletionTime":"2023-10-08T11:00:54Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e1f6f3ba-ccba-4c3d-afc7-7745b24b844e","creationTime":"2023-10-08T10:42:04Z","deletionTime":"2023-10-08T11:00:54Z"}]}},{"name":"7055918e-ed18-4299-b387-d170f004bde0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7055918e-ed18-4299-b387-d170f004bde0","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a38f4d55-97bf-4927-868c-66f1c1b0a4e2","creationTime":"2023-10-08T10:59:03Z","deletionTime":"2023-10-08T11:00:57Z"}]}},{"name":"2354e842-d2d5-4f2f-b136-edac7691384f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2354e842-d2d5-4f2f-b136-edac7691384f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"07b8780f-aa18-4f85-a44d-8d8b4f351ac2","creationTime":"2023-10-08T11:16:31Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"dbbd9794-69c3-47bf-a532-7bd3b83176e6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbbd9794-69c3-47bf-a532-7bd3b83176e6","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-08T11:01:48Z","deletionTime":"2023-10-08T11:18:28Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"75d06ab2-478e-4353-a83a-aa8748cc376f","creationTime":"2023-10-08T11:01:49Z","deletionTime":"2023-10-08T11:18:28Z"}]}},{"name":"df8ec147-989d-4228-987a-a53b9aff4af1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df8ec147-989d-4228-987a-a53b9aff4af1","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-08T11:19:21Z","deletionTime":"2023-10-08T11:21:25Z","oldestRestorableTime":"2023-10-01T11:21:25Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"aca74595-29b1-4eef-a042-a79e794bb626","creationTime":"2023-10-08T11:19:22Z","deletionTime":"2023-10-08T11:21:25Z"}]}},{"name":"9c451fe3-49bf-4d4f-be60-6da9c068bc0e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c451fe3-49bf-4d4f-be60-6da9c068bc0e","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b42f9a81-54a3-4cb5-b859-44861ce162f3","creationTime":"2023-10-08T11:44:27Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"1736ceae-6d84-44f8-83d8-d71ae1acad4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1736ceae-6d84-44f8-83d8-d71ae1acad4e","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-08T11:26:53Z","deletionTime":"2023-10-08T11:46:34Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fb1f0a07-1c69-4235-8879-eacad7936c35","creationTime":"2023-10-08T11:26:54Z","deletionTime":"2023-10-08T11:46:34Z"}]}},{"name":"7ff9852a-8447-4c25-acf1-5a525c364df6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ff9852a-8447-4c25-acf1-5a525c364df6","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a1854c58-2ef8-49c8-b870-fc85b4696b67","creationTime":"2023-10-08T12:10:50Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b6f97f3-ffdc-4cbf-aba1-e38f8426b928","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:52:05Z","deletionTime":"2023-10-08T12:12:50Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"0df8ac9d-ef26-4181-9d98-d3599acc27a2","creationTime":"2023-10-08T11:52:06Z","deletionTime":"2023-10-08T12:12:50Z"}]}},{"name":"7a5137c0-495c-48a8-884a-ea22cdd774a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a5137c0-495c-48a8-884a-ea22cdd774a1","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:21:38Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7b80602a-8614-4108-bdfd-3a1b1f1686b1","creationTime":"2023-10-08T12:21:39Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"e2ef4a6d-3c43-426a-9b10-09fd97271aeb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ef4a6d-3c43-426a-9b10-09fd97271aeb","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0b74ff7-e140-4da7-b44a-b5595ab13a9a","creationTime":"2023-10-08T12:39:44Z","deletionTime":"2023-10-08T12:41:42Z"}]}},{"name":"6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d13e5c4-a0ab-4488-8ad5-b8f93dcf3cf1","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b384e63b-a533-4d40-8be2-44ddf1d9b794","creationTime":"2023-10-08T12:42:33Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"e87f0b32-1666-4b52-becf-e5165d71965c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e87f0b32-1666-4b52-becf-e5165d71965c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"83189b2b-c016-4f8c-9ea5-3e3ad62bb1aa","creationTime":"2023-10-08T12:59:56Z","deletionTime":"2023-10-08T13:02:02Z"}]}},{"name":"4944e157-54eb-473b-a924-64134ddd0e6f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4944e157-54eb-473b-a924-64134ddd0e6f","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f196c21c-881d-4d48-bbf2-3429f2c8626e","creationTime":"2023-10-08T13:18:50Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47cc4e28-1e2d-4c62-8b2d-b4c3311e4284","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T13:03:01Z","deletionTime":"2023-10-08T13:21:01Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"af2f9d09-8e23-4247-a616-f0fd67a59151","creationTime":"2023-10-08T13:03:02Z","deletionTime":"2023-10-08T13:21:01Z"}]}},{"name":"51edaa5e-4374-4458-aaf1-fadfd203e1c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51edaa5e-4374-4458-aaf1-fadfd203e1c7","properties":{"accountName":"r-database-account-3142","apiType":"Sql","creationTime":"2023-10-09T11:35:59Z","deletionTime":"2023-10-09T11:36:42Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d784b07c-7a09-47f6-8ca6-622249538bd0","creationTime":"2023-10-09T11:36:00Z","deletionTime":"2023-10-09T11:36:42Z"}]}},{"name":"8fbd2f53-65cc-4362-b7e3-7ed21c81b758","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fbd2f53-65cc-4362-b7e3-7ed21c81b758","properties":{"accountName":"r-grem-db-account-3155","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T11:47:34Z","deletionTime":"2023-10-09T11:50:00Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"90b6f987-91a1-4ff0-bbea-85b84cdb1519","creationTime":"2023-10-09T11:47:35Z","deletionTime":"2023-10-09T11:50:00Z"}]}},{"name":"5df9a265-59fb-440f-b0b3-e7ba0769885f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5df9a265-59fb-440f-b0b3-e7ba0769885f","properties":{"accountName":"r-grem-db-account-7140","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"44aeca93-1662-4fb8-ac40-1fdc26c93238","creationTime":"2023-10-09T12:02:15Z","deletionTime":"2023-10-09T12:20:11Z"}]}},{"name":"5c6abda5-ca6e-4ad8-b281-115239a0da72","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c6abda5-ca6e-4ad8-b281-115239a0da72","properties":{"accountName":"restoredaccount-128","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d33fb8eb-275f-43bc-a1bf-36ca03ee8ee6","creationTime":"2023-10-09T12:19:20Z","deletionTime":"2023-10-09T12:30:38Z"}]}},{"name":"b6739351-f614-47d4-aaa3-7c7dc9c67539","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6739351-f614-47d4-aaa3-7c7dc9c67539","properties":{"accountName":"r-table-account-2396","apiType":"Table, - Sql","creationTime":"2023-10-09T12:43:19Z","deletionTime":"2023-10-09T12:44:15Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"094b2684-d489-4a0b-86ef-ab44bbb94c46","creationTime":"2023-10-09T12:43:20Z","deletionTime":"2023-10-09T12:44:15Z"}]}},{"name":"2a205edb-de18-4abf-99d3-ce3b28d8c592","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a205edb-de18-4abf-99d3-ce3b28d8c592","properties":{"accountName":"r-table-account-9681","apiType":"Table, - Sql","creationTime":"2023-10-09T12:55:01Z","deletionTime":"2023-10-09T13:13:47Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce0ddcd2-4d5a-4140-bc20-cfeefacf70ea","creationTime":"2023-10-09T12:55:02Z","deletionTime":"2023-10-09T13:13:47Z"}]}},{"name":"8fc79b26-47a9-48c5-be99-8d932b7a5ffd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fc79b26-47a9-48c5-be99-8d932b7a5ffd","properties":{"accountName":"restoredaccount-8645","apiType":"Table, - Sql","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5a8c639f-33c8-4752-bbfc-6206149c0e8d","creationTime":"2023-10-09T13:12:43Z","deletionTime":"2023-10-09T13:24:26Z"}]}},{"name":"dec4c23a-1365-4a71-938b-0caebd01d040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dec4c23a-1365-4a71-938b-0caebd01d040","properties":{"accountName":"r-table-account-1655","apiType":"Table, - Sql","creationTime":"2023-10-09T13:37:26Z","deletionTime":"2023-10-09T13:55:23Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ef20e9ff-c7ea-4c08-8091-cdf869455842","creationTime":"2023-10-09T13:37:27Z","deletionTime":"2023-10-09T13:55:23Z"}]}},{"name":"471b967b-f425-4090-bd86-dc3928612014","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/471b967b-f425-4090-bd86-dc3928612014","properties":{"accountName":"restoredaccount-8101","apiType":"Table, - Sql","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c073b3bb-137b-4a3f-adbe-48fc4d0f1124","creationTime":"2023-10-09T13:54:17Z","deletionTime":"2023-10-09T14:06:16Z"}]}},{"name":"54984027-5ad1-43ed-b4b5-50fe9c986fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/54984027-5ad1-43ed-b4b5-50fe9c986fd5","properties":{"accountName":"r-database-account-9475","apiType":"Sql","creationTime":"2023-10-09T21:16:27Z","deletionTime":"2023-10-09T21:17:29Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad27e389-e70a-4854-8dff-e93510305fc7","creationTime":"2023-10-09T21:16:28Z","deletionTime":"2023-10-09T21:17:29Z"}]}},{"name":"1b3f6617-d711-4363-9c1e-3b7f337ca20d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b3f6617-d711-4363-9c1e-3b7f337ca20d","properties":{"accountName":"r-database-account-9073","apiType":"Sql","creationTime":"2023-10-09T21:28:12Z","deletionTime":"2023-10-09T21:52:08Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f632ee52-4807-4d1b-a201-b50916357bba","creationTime":"2023-10-09T21:28:13Z","deletionTime":"2023-10-09T21:52:08Z"}]}},{"name":"c679da7f-aba0-4421-9d33-94c66124b17f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c679da7f-aba0-4421-9d33-94c66124b17f","properties":{"accountName":"restoredaccount-1580","apiType":"Sql","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01b62397-08ec-43cd-8d95-e438a1c2c7df","creationTime":"2023-10-09T21:50:57Z","deletionTime":"2023-10-09T22:02:28Z"}]}},{"name":"033ce920-5add-49b2-9570-c0b68a49a291","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/033ce920-5add-49b2-9570-c0b68a49a291","properties":{"accountName":"r-grem-db-account-5949","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:14:59Z","deletionTime":"2023-10-09T22:16:52Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0e474ab-47e9-4755-af77-f714c0d4d318","creationTime":"2023-10-09T22:15:00Z","deletionTime":"2023-10-09T22:16:52Z"}]}},{"name":"ae0984aa-973a-4212-a0f5-96118c03c840","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae0984aa-973a-4212-a0f5-96118c03c840","properties":{"accountName":"r-grem-db-account-2778","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d005d862-eb3f-46ba-b70a-454281a7049e","creationTime":"2023-10-09T22:29:47Z","deletionTime":"2023-10-09T22:30:43Z"}]}},{"name":"6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e236ecb-5d8d-4ecd-a1bc-462510c47d6d","properties":{"accountName":"r-grem-db-account-1930","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:40:56Z","deletionTime":"2023-10-09T22:58:08Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"daaef020-b1d4-463d-adb5-38e126a73cba","creationTime":"2023-10-09T22:40:57Z","deletionTime":"2023-10-09T22:58:08Z"}]}},{"name":"4ad7ea98-95f2-4278-b237-ef091838870d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ad7ea98-95f2-4278-b237-ef091838870d","properties":{"accountName":"restoredaccount-9622","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"29e61113-0f64-4990-9e08-53496e44c01a","creationTime":"2023-10-09T22:57:13Z","deletionTime":"2023-10-09T23:08:58Z"}]}},{"name":"a5c87286-5dff-454c-b501-916bcb202bdd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c87286-5dff-454c-b501-916bcb202bdd","properties":{"accountName":"r-grem-db-account-9924","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:21:54Z","deletionTime":"2023-10-09T23:41:01Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"424dd3c0-d53c-44e5-a8e9-a3964de31433","creationTime":"2023-10-09T23:21:55Z","deletionTime":"2023-10-09T23:41:01Z"}]}},{"name":"fd91ed12-6de1-4a01-ac91-f97f10674469","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd91ed12-6de1-4a01-ac91-f97f10674469","properties":{"accountName":"restoredaccount-1075","apiType":"Gremlin, - Sql","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cd07df3f-14a9-48dc-aa6e-ae59c97c03c2","creationTime":"2023-10-09T23:40:05Z","deletionTime":"2023-10-09T23:51:53Z"}]}},{"name":"b851071e-d08c-4ffa-908e-bd44fa34daa5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b851071e-d08c-4ffa-908e-bd44fa34daa5","properties":{"accountName":"r-table-account-2291","apiType":"Table, - Sql","creationTime":"2023-10-10T00:05:06Z","deletionTime":"2023-10-10T00:05:59Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"78963ec0-f32a-44e1-a090-09194eb78991","creationTime":"2023-10-10T00:05:07Z","deletionTime":"2023-10-10T00:05:59Z"}]}},{"name":"2c85ebdf-b8e5-4447-a114-ae2baff14d92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2c85ebdf-b8e5-4447-a114-ae2baff14d92","properties":{"accountName":"r-table-account-5343","apiType":"Table, - Sql","creationTime":"2023-10-10T00:16:19Z","deletionTime":"2023-10-10T00:35:09Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2685ab37-2df0-499a-b0df-d2db7d20d5c6","creationTime":"2023-10-10T00:16:20Z","deletionTime":"2023-10-10T00:35:09Z"}]}},{"name":"106a978e-1188-4e4e-9bcc-067ffe27e93e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/106a978e-1188-4e4e-9bcc-067ffe27e93e","properties":{"accountName":"restoredaccount-4707","apiType":"Table, - Sql","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23020234-2734-4946-92f4-26d912dbd1df","creationTime":"2023-10-10T00:34:21Z","deletionTime":"2023-10-10T00:46:01Z"}]}},{"name":"657bfff2-3f2e-4043-b8fa-2760fdce149d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/657bfff2-3f2e-4043-b8fa-2760fdce149d","properties":{"accountName":"r-table-account-6010","apiType":"Table, - Sql","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ad19fd5d-100e-4281-92f0-41b077640a10","creationTime":"2023-10-10T00:59:01Z","deletionTime":"2023-10-10T01:15:55Z"}]}},{"name":"20c7a786-7154-4544-9257-be7ac13e73e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20c7a786-7154-4544-9257-be7ac13e73e0","properties":{"accountName":"restoredaccount-7929","apiType":"Table, - Sql","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e42a296a-4b97-4c5b-802c-a74eb27ce60b","creationTime":"2023-10-10T01:15:04Z","deletionTime":"2023-10-10T01:26:47Z"}]}},{"name":"1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fc8f51a-70e5-4454-9ab1-8f303c1ffa6d","properties":{"accountName":"r-table-account-7196","apiType":"Table, - Sql","creationTime":"2023-10-10T01:39:55Z","deletionTime":"2023-10-10T01:41:07Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"060a8063-d4f5-4495-a53b-3a57c7d781aa","creationTime":"2023-10-10T01:39:56Z","deletionTime":"2023-10-10T01:41:07Z"}]}},{"name":"ea037ab2-3288-4b2b-9bbd-110279a27b2d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea037ab2-3288-4b2b-9bbd-110279a27b2d","properties":{"accountName":"r-database-account-766","apiType":"Sql","creationTime":"2023-10-10T08:06:24Z","deletionTime":"2023-10-10T08:07:31Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"be2cf885-e44f-4dd5-b643-a3ec5a95cb9f","creationTime":"2023-10-10T08:06:25Z","deletionTime":"2023-10-10T08:07:31Z"}]}},{"name":"667c1c85-a4d5-4956-80b9-030317586229","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667c1c85-a4d5-4956-80b9-030317586229","properties":{"accountName":"r-database-account-2710","apiType":"Sql","creationTime":"2023-10-10T08:18:20Z","deletionTime":"2023-10-10T08:19:07Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ce90e04-47e5-4f5b-a668-cd98473cacc8","creationTime":"2023-10-10T08:18:21Z","deletionTime":"2023-10-10T08:19:07Z"}]}},{"name":"cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cdd1d380-aede-4b75-b4ad-f8f59b6ea0a9","properties":{"accountName":"r-database-account-9243","apiType":"Sql","creationTime":"2023-10-10T08:29:44Z","deletionTime":"2023-10-10T08:30:47Z","oldestRestorableTime":"2023-10-03T08:30:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1ffeb08c-95a2-403c-b5b5-38edefc2b929","creationTime":"2023-10-10T08:29:45Z","deletionTime":"2023-10-10T08:30:47Z"}]}},{"name":"d102beec-8877-4ca9-a528-3244894caed8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d102beec-8877-4ca9-a528-3244894caed8","properties":{"accountName":"r-database-account-7028","apiType":"Sql","creationTime":"2023-10-10T08:40:54Z","deletionTime":"2023-10-10T09:04:50Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e12ed7b2-b437-4d1a-80f8-b566ef47db42","creationTime":"2023-10-10T08:40:55Z","deletionTime":"2023-10-10T09:04:50Z"}]}},{"name":"2f0f0564-5315-43c9-a806-0fa7bb5c8708","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f0f0564-5315-43c9-a806-0fa7bb5c8708","properties":{"accountName":"restoredaccount-488","apiType":"Sql","creationTime":"2023-10-10T09:03:51+00:00","deletionTime":"2023-10-10T09:15:43Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5a8cbea-fd51-4713-bb92-910ff34d0d6c","creationTime":"2023-10-10T09:03:51Z","deletionTime":"2023-10-10T09:15:43Z"}]}},{"name":"8d13cc18-22d0-4105-bd97-5caff77bb086","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d13cc18-22d0-4105-bd97-5caff77bb086","properties":{"accountName":"cliummhvburhyln","apiType":"Table, - Sql","creationTime":"2023-09-27T11:03:37+00:00","deletionTime":"2023-10-11T02:04:56Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"e2968b69-c40e-4c0c-b07a-d59cb626da50","creationTime":"2023-09-27T11:03:38Z","deletionTime":"2023-10-11T02:04:56Z"}]}},{"name":"d89ec4df-4753-4246-a86a-4f6159c1d5b8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d89ec4df-4753-4246-a86a-4f6159c1d5b8","properties":{"accountName":"cliwybqc5jnks5k","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T11:02:04+00:00","deletionTime":"2023-10-11T02:05:35Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"1d05702a-0c46-481b-bf3b-9fb0142d52a2","creationTime":"2023-09-27T11:02:05Z","deletionTime":"2023-10-11T02:05:35Z"}]}},{"name":"352ed4a6-c024-4322-a88a-38496c94bdc1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/352ed4a6-c024-4322-a88a-38496c94bdc1","properties":{"accountName":"clivfymi2kyfxmz","apiType":"Table, - Sql","creationTime":"2023-09-27T12:53:11+00:00","deletionTime":"2023-10-11T02:05:52Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"04362e49-666c-49ab-86db-c7c92ecefbe3","creationTime":"2023-09-27T12:53:12Z","deletionTime":"2023-10-11T02:05:52Z"}]}},{"name":"93f213fe-d72b-459c-aed0-a61ba7d863a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93f213fe-d72b-459c-aed0-a61ba7d863a1","properties":{"accountName":"cliimctaa3cwmeb","apiType":"Gremlin, - Sql","creationTime":"2023-09-27T12:52:22+00:00","deletionTime":"2023-10-11T02:06:45Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ff982440-e5dd-4760-9b4f-37f479338402","creationTime":"2023-09-27T12:52:23Z","deletionTime":"2023-10-11T02:06:45Z"}]}},{"name":"1179501b-5fc1-4d06-a453-44ad7f91b938","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1179501b-5fc1-4d06-a453-44ad7f91b938","properties":{"accountName":"climqgpyowgl37z","apiType":"MongoDB","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"902a77fb-ad26-45f1-8aec-506f3ad366bd","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:18:36Z"}]}},{"name":"0a8b47aa-7682-4454-afef-21c5b743c66f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a8b47aa-7682-4454-afef-21c5b743c66f","properties":{"accountName":"cli6cahnirl6mjc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:12Z","deletionTime":"2023-10-11T05:19:02Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"59760079-66d0-4571-aa15-f2cc6813a33a","creationTime":"2023-10-11T05:15:13Z","deletionTime":"2023-10-11T05:19:02Z"}]}},{"name":"29652d14-7a76-461c-a04e-43bec0209efd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29652d14-7a76-461c-a04e-43bec0209efd","properties":{"accountName":"clio4l74ex4fwll","apiType":"Sql","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"397cbd68-aaf7-4c0e-b024-f2bc073815d5","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:19:03Z"}]}},{"name":"21afe97c-3ba1-440d-be9f-51536b0f5bfd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/21afe97c-3ba1-440d-be9f-51536b0f5bfd","properties":{"accountName":"cli7uxlv3t3dlc3","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:15:15Z","deletionTime":"2023-10-11T05:20:08Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"08d9ba48-cd07-4d8e-ae78-89efddd0b2a7","creationTime":"2023-10-11T05:15:16Z","deletionTime":"2023-10-11T05:20:08Z"}]}},{"name":"d6c46489-1e56-42d5-9b42-b1bdd680ee9f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6c46489-1e56-42d5-9b42-b1bdd680ee9f","properties":{"accountName":"cli5be3mgmoekue","apiType":"MongoDB","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"3f6034df-bb81-4690-9f26-188fb610d557","creationTime":"2023-10-11T05:19:26Z","deletionTime":"2023-10-11T05:21:48Z"}]}},{"name":"df4961f1-1df8-4519-8820-55766ec1c1ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df4961f1-1df8-4519-8820-55766ec1c1ff","properties":{"accountName":"cliuvrs34yiqbbt","apiType":"Sql","creationTime":"2023-10-11T05:19:44Z","deletionTime":"2023-10-11T05:22:40Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5d794766-b824-4c0b-a13d-770b26cfc419","creationTime":"2023-10-11T05:19:45Z","deletionTime":"2023-10-11T05:22:40Z"}]}},{"name":"2431491e-6ee6-4bcb-b746-0e23f87e6cc3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2431491e-6ee6-4bcb-b746-0e23f87e6cc3","properties":{"accountName":"cli7raqekhwrgjt","apiType":"Sql","creationTime":"2023-10-11T05:15:18Z","deletionTime":"2023-10-11T05:42:43Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b9505c1b-7ceb-407f-a883-26a047001b0c","creationTime":"2023-10-11T05:15:20Z","deletionTime":"2023-10-11T05:42:43Z"}]}},{"name":"f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f56fbdc4-f69b-4dd0-ab89-a0ddf6b84571","properties":{"accountName":"clin6jryn7ygkgx","apiType":"MongoDB","creationTime":"2023-10-11T05:15:10Z","deletionTime":"2023-10-11T05:43:25Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7fdb8e50-b9e9-4691-94cf-03d84f780c88","creationTime":"2023-10-11T05:15:11Z","deletionTime":"2023-10-11T05:43:25Z"}]}},{"name":"f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46320ba-abd8-49cb-9dfc-bce7ca22e6e0","properties":{"accountName":"clik73odbgs2na3","apiType":"Sql","creationTime":"2023-10-11T05:43:26Z","deletionTime":"2023-10-11T05:49:10Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45eb01f0-a2e6-4bc8-b621-9d27ea455d97","creationTime":"2023-10-11T05:43:27Z","deletionTime":"2023-10-11T05:49:10Z"}]}},{"name":"2b2e1750-538f-4de4-a8e9-001ec68743ef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b2e1750-538f-4de4-a8e9-001ec68743ef","properties":{"accountName":"clihvjwthe47cwq","apiType":"Sql","creationTime":"2023-10-11T05:15:08Z","deletionTime":"2023-10-11T05:49:22Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6ede5e69-9940-4ed9-9e73-79397077272b","creationTime":"2023-10-11T05:15:09Z","deletionTime":"2023-10-11T05:49:22Z"}]}},{"name":"d3bb653e-f152-4480-9af4-a95f03f32b4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3bb653e-f152-4480-9af4-a95f03f32b4e","properties":{"accountName":"cli7hcfaxf5y5ke","apiType":"Table, - Sql","creationTime":"2023-10-11T05:21:27Z","deletionTime":"2023-10-11T05:51:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"48c4aa50-3cf1-4660-8060-adc2de2ddcd8","creationTime":"2023-10-11T05:21:28Z","deletionTime":"2023-10-11T05:51:03Z"}]}},{"name":"4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4dacc2a8-be47-4f7b-85b3-5da0c3eaca61","properties":{"accountName":"clifld5rmarlep3","apiType":"MongoDB","creationTime":"2023-10-11T05:43:36Z","deletionTime":"2023-10-11T06:10:10Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6744cfbe-4733-4992-a7a1-9ff285ed394b","creationTime":"2023-10-11T05:43:37Z","deletionTime":"2023-10-11T06:10:10Z"}]}},{"name":"b708d908-316a-4b53-8821-4f4915046466","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b708d908-316a-4b53-8821-4f4915046466","properties":{"accountName":"clid74jzssbajrc","apiType":"Sql","creationTime":"2023-10-11T05:49:57Z","deletionTime":"2023-10-11T06:16:37Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"70059ad8-28a1-4a98-a80b-32e18dacbb9d","creationTime":"2023-10-11T05:49:58Z","deletionTime":"2023-10-11T06:16:37Z"}]}},{"name":"47b0757a-532f-4196-b035-289d44312434","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47b0757a-532f-4196-b035-289d44312434","properties":{"accountName":"cliwolrtzbkj7zp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T05:20:02Z","deletionTime":"2023-10-11T06:17:16Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c1bc9f1f-e23f-4d97-a9ff-e7f4596b8c57","creationTime":"2023-10-11T05:20:03Z","deletionTime":"2023-10-11T06:17:16Z"}]}},{"name":"765a3706-b75e-4fdc-877a-51ff575bfe66","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/765a3706-b75e-4fdc-877a-51ff575bfe66","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T07:18:38Z","deletionTime":"2023-10-11T07:37:57Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"94300b1b-45d0-4a32-959a-b93fe878a4d6","creationTime":"2023-10-11T07:18:39Z","deletionTime":"2023-10-11T07:37:57Z"}]}},{"name":"50b0555a-16af-4297-a14b-7ba8d3cb3a92","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50b0555a-16af-4297-a14b-7ba8d3cb3a92","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"54a2cb30-e441-4f85-bed4-25dacb64ab87","creationTime":"2023-10-11T07:35:46Z","deletionTime":"2023-10-11T07:37:58Z"}]}},{"name":"85497728-3058-477c-bf67-55c04ebdc63f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85497728-3058-477c-bf67-55c04ebdc63f","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"01089513-c188-4b7b-acac-886f9b1e540d","creationTime":"2023-10-11T07:53:07Z","deletionTime":"2023-10-11T07:55:03Z"}]}},{"name":"0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a9c0ae9-e4ce-49ac-96f5-e93716dd36d3","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2023-10-11T07:38:48Z","deletionTime":"2023-10-11T07:55:04Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e0ff7777-599b-40b4-9a35-a0df7dfc9b4a","creationTime":"2023-10-11T07:38:49Z","deletionTime":"2023-10-11T07:55:04Z"}]}},{"name":"7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c03a07a-4b94-4bc4-b9f2-b9dcdd4a2e27","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2023-10-11T07:56:05Z","deletionTime":"2023-10-11T07:58:24Z","oldestRestorableTime":"2023-10-04T07:58:24Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"51674a9a-f614-4229-957a-c4b79b9d484f","creationTime":"2023-10-11T07:56:06Z","deletionTime":"2023-10-11T07:58:24Z"}]}},{"name":"8d74ab04-2dad-4d0b-bc07-0717d4068cd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d74ab04-2dad-4d0b-bc07-0717d4068cd5","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"904b33ac-0b7d-4a62-bdf0-ba03a770d75d","creationTime":"2023-10-11T08:24:03Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"18df5970-0900-4098-86be-8cc067cb61b0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18df5970-0900-4098-86be-8cc067cb61b0","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f5becffa-3a40-47c8-ba59-b4fa3a0ae542","creationTime":"2023-10-11T08:03:51Z","deletionTime":"2023-10-11T08:26:05Z"}]}},{"name":"73072ca5-b774-48d5-93fc-2066adaa3caf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73072ca5-b774-48d5-93fc-2066adaa3caf","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e5671ef7-1983-49d1-8a24-5ee4de457fde","creationTime":"2023-10-11T08:50:10Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"d3154f96-b24e-457c-9559-f6b096fea7ff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3154f96-b24e-457c-9559-f6b096fea7ff","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:31:40Z","deletionTime":"2023-10-11T08:52:25Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"df4af9fe-853e-4d72-b199-c3dafcdab911","creationTime":"2023-10-11T08:31:41Z","deletionTime":"2023-10-11T08:52:25Z"}]}},{"name":"5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f5fc581-d13a-497f-b6d8-c2cc265bc6a8","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"dd27e0dd-cb24-4c02-8ea9-12db21c6856c","creationTime":"2023-10-11T09:17:05Z","deletionTime":"2023-10-11T09:19:03Z"}]}},{"name":"e0157738-fb2b-4120-a95f-0d6c8a0af040","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0157738-fb2b-4120-a95f-0d6c8a0af040","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2023-10-11T09:01:43Z","deletionTime":"2023-10-11T09:19:06Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"86099f66-cf3d-4ca9-b839-d9268452043f","creationTime":"2023-10-11T09:01:44Z","deletionTime":"2023-10-11T09:19:06Z"}]}},{"name":"34d385e4-9499-4607-bcb1-ac48d1282d7c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34d385e4-9499-4607-bcb1-ac48d1282d7c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2023-10-11T09:20:12Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"bcfb6695-c021-48a3-b89c-27d829ad71fd","creationTime":"2023-10-11T09:20:13Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"fb67ac8a-cf81-43b8-97b1-68e6a2885775","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fb67ac8a-cf81-43b8-97b1-68e6a2885775","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c9bc4ee3-70ef-4021-9793-c48ca3843687","creationTime":"2023-10-11T09:37:10Z","deletionTime":"2023-10-11T09:39:03Z"}]}},{"name":"d4b42ab2-3e2a-4db2-9933-68f160fd8a57","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4b42ab2-3e2a-4db2-9933-68f160fd8a57","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45b57258-0017-4c32-b074-6e69a5c42aa5","creationTime":"2023-10-11T09:55:08Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"d143a3a3-c1d9-466d-9ff3-4fc89929f726","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d143a3a3-c1d9-466d-9ff3-4fc89929f726","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T09:40:13Z","deletionTime":"2023-10-11T09:57:10Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8434207a-535d-4d29-bde5-1651f61ee788","creationTime":"2023-10-11T09:40:14Z","deletionTime":"2023-10-11T09:57:10Z"}]}},{"name":"391b13cd-9388-42e0-8760-e92419a5ce75","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/391b13cd-9388-42e0-8760-e92419a5ce75","properties":{"accountName":"cliifilu6mvhuuc","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:32Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"cb1f0d65-8885-459c-b63b-136740e6bb51","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T10:58:32Z"}]}},{"name":"f370889c-b08f-4fcc-b846-78fb7554f36b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f370889c-b08f-4fcc-b846-78fb7554f36b","properties":{"accountName":"clirmyzjfys2tqq","apiType":"Sql","creationTime":"2023-10-11T10:54:47Z","deletionTime":"2023-10-11T10:58:36Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"e7f8af2b-f480-4f50-b93c-f2782b218088","creationTime":"2023-10-11T10:54:48Z","deletionTime":"2023-10-11T10:58:36Z"}]}},{"name":"61cbf627-7776-4cda-a9af-d5e04a2a919a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61cbf627-7776-4cda-a9af-d5e04a2a919a","properties":{"accountName":"cliccarn4xdxkov","apiType":"MongoDB","creationTime":"2023-10-11T10:54:52Z","deletionTime":"2023-10-11T10:59:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"201af9fd-5fd9-4a21-8f58-7cbd51bef620","creationTime":"2023-10-11T10:54:53Z","deletionTime":"2023-10-11T10:59:03Z"}]}},{"name":"bbbce644-dc36-4431-b288-cf74f7b00140","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbbce644-dc36-4431-b288-cf74f7b00140","properties":{"accountName":"cliafrfq3k6kzrp","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T10:59:21Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fcb58481-b5fd-407e-878c-0e7fac331788","creationTime":"2023-10-11T10:54:51Z","deletionTime":"2023-10-11T10:59:21Z"}]}},{"name":"0be6b0ff-32d5-4470-a086-b397df79d247","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0be6b0ff-32d5-4470-a086-b397df79d247","properties":{"accountName":"clinswup44fs5c6","apiType":"Sql","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ae6cbcc6-e012-465a-b97f-7b7cf5df8df6","creationTime":"2023-10-11T10:59:16Z","deletionTime":"2023-10-11T11:02:39Z"}]}},{"name":"3db0b203-fd7e-402c-926c-a5de95c8370b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3db0b203-fd7e-402c-926c-a5de95c8370b","properties":{"accountName":"cliyrxrydq6etrz","apiType":"MongoDB","creationTime":"2023-10-11T11:00:24Z","deletionTime":"2023-10-11T11:04:04Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fc610462-a5c8-42b1-939f-d232cca17398","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:04:04Z"}]}},{"name":"8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8289f91f-c9ef-4dcb-9c4f-2ccfba730fe8","properties":{"accountName":"cli33xeh367xfp2","apiType":"Sql","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:20:31Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74e39357-d726-4541-8a22-6f6950a1a1c2","creationTime":"2023-10-11T10:54:46Z","deletionTime":"2023-10-11T11:20:31Z"}]}},{"name":"93b920b6-a112-4627-8352-48832a140f4d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/93b920b6-a112-4627-8352-48832a140f4d","properties":{"accountName":"clii4sezm67ixld","apiType":"MongoDB","creationTime":"2023-10-11T10:54:49Z","deletionTime":"2023-10-11T11:22:15Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d35ec060-3da4-4b6f-8829-1146342fa16a","creationTime":"2023-10-11T10:54:50Z","deletionTime":"2023-10-11T11:22:15Z"}]}},{"name":"5e127542-e939-4304-8e7a-7cfb27d1f802","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e127542-e939-4304-8e7a-7cfb27d1f802","properties":{"accountName":"cli3pzey5poqmwg","apiType":"Sql","creationTime":"2023-10-11T10:54:44Z","deletionTime":"2023-10-11T11:26:26Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5b442716-2203-4d1d-99b7-3ef90fa0129d","creationTime":"2023-10-11T10:54:45Z","deletionTime":"2023-10-11T11:26:26Z"}]}},{"name":"f025e4c4-7e9c-4473-9cac-da6e5650c805","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f025e4c4-7e9c-4473-9cac-da6e5650c805","properties":{"accountName":"clitoo4kbzxdv36","apiType":"Sql","creationTime":"2023-10-11T11:21:48Z","deletionTime":"2023-10-11T11:27:31Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7f153ee6-70b5-4da0-ac1b-d02329e188e9","creationTime":"2023-10-11T11:21:49Z","deletionTime":"2023-10-11T11:27:31Z"}]}},{"name":"16045498-bca1-4e2e-82df-8bcdbff0463a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16045498-bca1-4e2e-82df-8bcdbff0463a","properties":{"accountName":"cliu4bqlrxw63r6","apiType":"Table, - Sql","creationTime":"2023-10-11T11:00:25Z","deletionTime":"2023-10-11T11:30:37Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2cb7c3be-0d3c-44c6-96a7-d6318a0ea2e0","creationTime":"2023-10-11T11:00:26Z","deletionTime":"2023-10-11T11:30:37Z"}]}},{"name":"6707b86b-84a2-4d13-85b6-e13c9a923924","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6707b86b-84a2-4d13-85b6-e13c9a923924","properties":{"accountName":"cliwyz65eoffguj","apiType":"MongoDB","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"74d56e06-0749-4e0b-9fb9-4c15ff55c569","creationTime":"2023-10-11T11:23:04Z","deletionTime":"2023-10-11T11:50:03Z"}]}},{"name":"0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c87d80b-b00c-4adb-8a3f-88eaddd9f89a","properties":{"accountName":"cli5d6s7fvh55pq","apiType":"Sql","creationTime":"2023-10-11T11:27:56Z","deletionTime":"2023-10-11T11:54:45Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d9f83c08-35e0-4edd-8fce-e41b984073e7","creationTime":"2023-10-11T11:27:57Z","deletionTime":"2023-10-11T11:54:45Z"}]}},{"name":"49d3f089-42d2-4684-af63-edd627bfff1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49d3f089-42d2-4684-af63-edd627bfff1c","properties":{"accountName":"cliscz4ntvki7sz","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T10:59:37Z","deletionTime":"2023-10-11T11:56:42Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"267723ca-7149-485a-b0c0-85ed3be57028","creationTime":"2023-10-11T10:59:38Z","deletionTime":"2023-10-11T11:56:42Z"}]}},{"name":"f20c987f-d091-488f-b4eb-e3b9ba436ace","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f20c987f-d091-488f-b4eb-e3b9ba436ace","properties":{"accountName":"cli4gaherorb3dk","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:56Z","deletionTime":"2023-10-12T04:48:15Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a96da920-d2b7-4ab3-b25a-c24a07f089be","creationTime":"2023-10-12T04:44:57Z","deletionTime":"2023-10-12T04:48:15Z"}]}},{"name":"2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2dbe5c5a-a12e-48d2-826a-e85957d7fa0b","properties":{"accountName":"clipx6mp57vtm5o","apiType":"Sql","creationTime":"2023-10-12T04:44:39Z","deletionTime":"2023-10-12T04:48:37Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c04de7ea-9b39-4276-9a47-5d7b591ffbc7","creationTime":"2023-10-12T04:44:40Z","deletionTime":"2023-10-12T04:48:37Z"}]}},{"name":"0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cd86cdb-f7b1-47ef-8d50-ba7cabfab204","properties":{"accountName":"cliqjole6zkfyst","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"38d94be4-248d-4b23-9203-268fae3c2647","creationTime":"2023-10-12T04:44:48Z","deletionTime":"2023-10-12T04:48:43Z"}]}},{"name":"090ac258-70c7-499b-9e7d-8b8c00294af0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/090ac258-70c7-499b-9e7d-8b8c00294af0","properties":{"accountName":"cli3l6laxawyan2","apiType":"MongoDB","creationTime":"2023-10-12T04:44:52Z","deletionTime":"2023-10-12T04:49:07Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"347db127-5e7e-49af-8d32-1e8a7e828d95","creationTime":"2023-10-12T04:44:53Z","deletionTime":"2023-10-12T04:49:07Z"}]}},{"name":"79b36fc1-95f0-4a17-a43a-bc087fd2672f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79b36fc1-95f0-4a17-a43a-bc087fd2672f","properties":{"accountName":"cliyycu3q2a54ym","apiType":"Sql","creationTime":"2023-10-12T04:49:17Z","deletionTime":"2023-10-12T04:52:44Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"77194177-6247-4a22-ac04-3ecdb5ccbcf9","creationTime":"2023-10-12T04:49:18Z","deletionTime":"2023-10-12T04:52:44Z"}]}},{"name":"0e0bd954-0d6b-412d-b82f-908e759b2f47","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e0bd954-0d6b-412d-b82f-908e759b2f47","properties":{"accountName":"cliwcs3ef3sjgwe","apiType":"MongoDB","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"c0bdaed8-8090-4504-ad93-814f632a9477","creationTime":"2023-10-12T04:49:53Z","deletionTime":"2023-10-12T04:53:27Z"}]}},{"name":"9a56f1c7-8341-48fc-9f5e-b967b452f09e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a56f1c7-8341-48fc-9f5e-b967b452f09e","properties":{"accountName":"cli77kdodzgcj2h","apiType":"Sql","creationTime":"2023-10-12T04:44:42Z","deletionTime":"2023-10-12T05:11:46Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f458eaa8-e96a-424f-8959-3576b28dd1ef","creationTime":"2023-10-12T04:44:44Z","deletionTime":"2023-10-12T05:11:46Z"}]}},{"name":"0e95180d-9a50-4b4b-b882-9b166c24b3fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e95180d-9a50-4b4b-b882-9b166c24b3fe","properties":{"accountName":"cli2gcswosj326d","apiType":"MongoDB","creationTime":"2023-10-12T04:44:50Z","deletionTime":"2023-10-12T05:13:14Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2388dd61-c42d-4963-a1b8-0e3c4738fa58","creationTime":"2023-10-12T04:44:51Z","deletionTime":"2023-10-12T05:13:14Z"}]}},{"name":"0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a7f1554-5fa1-4cad-bd90-3cb7db327dcb","properties":{"accountName":"cliedbxu7vvt35f","apiType":"Sql","creationTime":"2023-10-12T04:45:05Z","deletionTime":"2023-10-12T05:17:58Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8fab242e-2340-47e4-bd09-91a9b06aa75e","creationTime":"2023-10-12T04:45:06Z","deletionTime":"2023-10-12T05:17:58Z"}]}},{"name":"19e3ffdd-a060-4d52-a549-99c793d30eea","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19e3ffdd-a060-4d52-a549-99c793d30eea","properties":{"accountName":"cliigum4dsaokhy","apiType":"Sql","creationTime":"2023-10-12T05:12:26Z","deletionTime":"2023-10-12T05:18:08Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"ce77dfd6-a9d6-4360-9b99-3d33c45f57bf","creationTime":"2023-10-12T05:12:27Z","deletionTime":"2023-10-12T05:18:08Z"}]}},{"name":"55d6763a-dc5c-4c39-b79c-4789eecfda4e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55d6763a-dc5c-4c39-b79c-4789eecfda4e","properties":{"accountName":"cli5hs5zqqzmu6n","apiType":"Table, - Sql","creationTime":"2023-10-12T04:51:00Z","deletionTime":"2023-10-12T05:21:03Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"c923ee1a-ae2e-4c47-aedf-f3994f34eb09","creationTime":"2023-10-12T04:51:01Z","deletionTime":"2023-10-12T05:21:03Z"}]}},{"name":"44b1d386-91c0-4fc7-8925-98690a67879e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44b1d386-91c0-4fc7-8925-98690a67879e","properties":{"accountName":"clijommq25lw7wy","apiType":"MongoDB","creationTime":"2023-10-12T05:14:09Z","deletionTime":"2023-10-12T05:40:47Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"5275cef5-63d1-4cf6-93a4-41df002724b8","creationTime":"2023-10-12T05:14:10Z","deletionTime":"2023-10-12T05:40:47Z"}]}},{"name":"ed8a2359-9af8-46a7-a48e-5d594c95ebf2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed8a2359-9af8-46a7-a48e-5d594c95ebf2","properties":{"accountName":"clinn2fmuytn2ps","apiType":"Sql","creationTime":"2023-10-12T05:18:42Z","deletionTime":"2023-10-12T05:45:20Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"2025cc29-35a0-442e-87b8-ce4769b3763f","creationTime":"2023-10-12T05:18:43Z","deletionTime":"2023-10-12T05:45:20Z"}]}},{"name":"fbb41c45-070c-498f-9057-ad24ab7ab26b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbb41c45-070c-498f-9057-ad24ab7ab26b","properties":{"accountName":"clil2lkkpqihzkf","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"04b6ba34-fc9d-471c-86e3-79aa80dc1f28","creationTime":"2023-10-12T04:49:03Z","deletionTime":"2023-10-12T05:45:30Z"}]}},{"name":"da53f266-f24c-47a4-a796-e1735ba957b9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da53f266-f24c-47a4-a796-e1735ba957b9","properties":{"accountName":"clig3duurxmvww6","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T10:57:46Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"42b9a61a-8549-49b6-a5cc-db126e4fbc6d","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T10:57:46Z"}]}},{"name":"ec60c860-cd77-4ca2-91c2-070439b03a27","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec60c860-cd77-4ca2-91c2-070439b03a27","properties":{"accountName":"clirfxdddfzr2br","apiType":"Sql","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T10:58:19Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"7922a475-ffe4-4d4f-aa9d-b5bf3fbe8832","creationTime":"2023-10-12T10:54:26Z","deletionTime":"2023-10-12T10:58:19Z"}]}},{"name":"c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c38eda2b-df05-40ca-ba09-e4c8ad1ca50b","properties":{"accountName":"clieqy5337deovs","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T10:58:53Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"8459e638-cb21-4197-b80f-32b813939aa2","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T10:58:53Z"}]}},{"name":"750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/750a64d5-b7f6-4525-adca-5a1bc7bc9bbf","properties":{"accountName":"clih3c4evlxxtjj","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:54:51Z","deletionTime":"2023-10-12T10:59:27Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"92972399-0f87-4e92-8abe-68df80e7abda","creationTime":"2023-10-12T10:54:52Z","deletionTime":"2023-10-12T10:59:27Z"}]}},{"name":"b3478ae0-a78c-4967-89e5-d27885114ac9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3478ae0-a78c-4967-89e5-d27885114ac9","properties":{"accountName":"cliexribpgiibye","apiType":"Sql","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"fd90fc9b-3727-489a-b8da-97abbf8eb464","creationTime":"2023-10-12T10:59:02Z","deletionTime":"2023-10-12T11:01:55Z"}]}},{"name":"3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f5bf9f3-14e0-47b4-b3fb-d2a8a3f4886a","properties":{"accountName":"clixz5lczxjmze6","apiType":"MongoDB","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"eceba26d-e8e8-458b-8180-599611a2aaf7","creationTime":"2023-10-12T10:59:45Z","deletionTime":"2023-10-12T11:03:06Z"}]}},{"name":"1211b4db-63e9-496c-aeaf-da6e138d5b68","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1211b4db-63e9-496c-aeaf-da6e138d5b68","properties":{"accountName":"clizcxs5wfc5v3f","apiType":"MongoDB","creationTime":"2023-10-12T10:54:29Z","deletionTime":"2023-10-12T11:22:34Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"45815cd1-9ac1-4075-8a12-59714534b70d","creationTime":"2023-10-12T10:54:30Z","deletionTime":"2023-10-12T11:22:34Z"}]}},{"name":"de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2b080d-ae15-433b-bfa1-aa0fc0c0a12b","properties":{"accountName":"cliukzzcjq3oxsv","apiType":"Sql","creationTime":"2023-10-12T10:54:22Z","deletionTime":"2023-10-12T11:23:32Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"6d783eeb-2606-4f25-99c4-4510ccc5dec2","creationTime":"2023-10-12T10:54:23Z","deletionTime":"2023-10-12T11:23:32Z"}]}},{"name":"ad7b5074-11c5-43f7-81b7-585c1d1017c4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad7b5074-11c5-43f7-81b7-585c1d1017c4","properties":{"accountName":"cliodnsunabwe2n","apiType":"Sql","creationTime":"2023-10-12T10:54:24Z","deletionTime":"2023-10-12T11:26:34Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"76c39a12-6a9e-4c86-bb67-4dfa7f8ff6c6","creationTime":"2023-10-12T10:54:25Z","deletionTime":"2023-10-12T11:26:34Z"}]}},{"name":"815137b0-4645-4866-bb5d-815320a1fc1e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/815137b0-4645-4866-bb5d-815320a1fc1e","properties":{"accountName":"clin66mzeeqx6jk","apiType":"Sql","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f0448f85-2274-4859-9586-51e00679a697","creationTime":"2023-10-12T11:24:16Z","deletionTime":"2023-10-12T11:29:55Z"}]}},{"name":"67106540-7441-4faa-96da-f1638c9e31c7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/67106540-7441-4faa-96da-f1638c9e31c7","properties":{"accountName":"clisdkb2szya2zz","apiType":"Table, - Sql","creationTime":"2023-10-12T11:00:51Z","deletionTime":"2023-10-12T11:29:56Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"5d937f69-ad48-4b7c-a883-42e8f1547d69","creationTime":"2023-10-12T11:00:52Z","deletionTime":"2023-10-12T11:29:56Z"}]}},{"name":"73d7201c-c19c-44b5-a19c-79d715712c60","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d7201c-c19c-44b5-a19c-79d715712c60","properties":{"accountName":"clidfc4o3k3sehe","apiType":"MongoDB","creationTime":"2023-10-12T11:23:32Z","deletionTime":"2023-10-12T11:50:37Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"f215dc78-6d92-4455-a851-c3d2ccb74f3c","creationTime":"2023-10-12T11:23:33Z","deletionTime":"2023-10-12T11:50:37Z"}]}},{"name":"6ac2cf13-1498-45ed-a0f4-845be538fff7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6ac2cf13-1498-45ed-a0f4-845be538fff7","properties":{"accountName":"clitucd67wyeecs","apiType":"Sql","creationTime":"2023-10-12T11:27:15Z","deletionTime":"2023-10-12T11:53:51Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"702cc7c8-83fc-425c-ac0f-f1d0a1795a51","creationTime":"2023-10-12T11:27:16Z","deletionTime":"2023-10-12T11:53:51Z"}]}},{"name":"086cacf3-e6e5-4565-b7ba-924a0172ff53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/086cacf3-e6e5-4565-b7ba-924a0172ff53","properties":{"accountName":"clixrtfyz4evrgw","apiType":"Gremlin, - Sql","creationTime":"2023-10-12T10:58:46Z","deletionTime":"2023-10-12T11:57:30Z","oldestRestorableTime":"2023-09-12T13:03:36Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"d2510a9e-3ff3-4875-82da-e5fed3ec650c","creationTime":"2023-10-12T10:58:47Z","deletionTime":"2023-10-12T11:57:30Z"}]}},{"name":"63f6b6f2-8485-45c2-ac27-145d61be85e0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/63f6b6f2-8485-45c2-ac27-145d61be85e0","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"ff5069be-ca24-45f8-a435-3a139fd49d66","creationTime":"2023-09-18T18:05:33Z","deletionTime":"2023-09-18T18:07:28Z"}]}},{"name":"acbe5681-f827-48fd-a82c-0599e70da937","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/acbe5681-f827-48fd-a82c-0599e70da937","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-09-18T17:47:57Z","deletionTime":"2023-09-18T18:07:31Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c0450322-94ba-4c57-bd07-738c173bbf13","creationTime":"2023-09-18T17:47:58Z","deletionTime":"2023-09-18T18:07:31Z"}]}},{"name":"da09fa1d-e6e5-4f8a-858d-0adcf437d816","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da09fa1d-e6e5-4f8a-858d-0adcf437d816","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z","oldestRestorableTime":"2023-09-18T18:32:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"f081c4d3-1a3b-4aec-a3b1-79a8e07bc70c","creationTime":"2023-09-18T18:32:14Z","deletionTime":"2023-09-18T18:37:40Z"}]}},{"name":"cc4b34b0-0568-42a9-b96b-905b14cc5a3e","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc4b34b0-0568-42a9-b96b-905b14cc5a3e","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-09-18T19:20:48Z","deletionTime":"2023-09-18T19:24:46Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5e6fd0e5-14ae-4c11-abd1-367f864f0b64","creationTime":"2023-09-18T19:20:49Z","deletionTime":"2023-09-18T19:24:46Z"}]}},{"name":"ec52f566-5155-43ff-8190-c8a2d6263aa4","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec52f566-5155-43ff-8190-c8a2d6263aa4","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-09-18T19:46:03Z","deletionTime":"2023-09-18T19:49:50Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"bc809d68-37fb-4bb3-a758-62f44823f206","creationTime":"2023-09-18T19:46:04Z","deletionTime":"2023-09-18T19:49:50Z"}]}},{"name":"8e5554cf-a2ae-47c0-a62d-46f31335814c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e5554cf-a2ae-47c0-a62d-46f31335814c","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-09-18T20:11:40Z","deletionTime":"2023-09-18T20:14:59Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"30afabc3-606d-496d-b33b-fcbfc8c6e34a","creationTime":"2023-09-18T20:11:41Z","deletionTime":"2023-09-18T20:14:59Z"}]}},{"name":"e6285b2d-2cfd-4d0d-a824-42642f6adac2","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e6285b2d-2cfd-4d0d-a824-42642f6adac2","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-09-18T20:15:41Z","deletionTime":"2023-09-18T20:19:13Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"930aeb40-fc0b-4a2b-b12c-3b7d675c9764","creationTime":"2023-09-18T20:15:42Z","deletionTime":"2023-09-18T20:19:13Z"}]}},{"name":"8f8ced11-7dc0-487e-ab5d-34d478aabf55","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8f8ced11-7dc0-487e-ab5d-34d478aabf55","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z","oldestRestorableTime":"2023-09-18T21:40:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"61d486d9-27ec-43c7-ba30-c4de9fc4e545","creationTime":"2023-09-18T21:40:06Z","deletionTime":"2023-09-18T21:45:10Z"}]}},{"name":"0a26b436-45ae-44a4-9113-2ab1489094b7","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0a26b436-45ae-44a4-9113-2ab1489094b7","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-09-18T21:45:47Z","deletionTime":"2023-09-18T21:49:50Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"985e89e6-bc31-4c82-a9fa-1d13e682dee0","creationTime":"2023-09-18T21:45:48Z","deletionTime":"2023-09-18T21:49:50Z"}]}},{"name":"9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9e2432c8-14bd-4bff-9a4a-cb7db924bcb0","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-08T09:54:31Z","deletionTime":"2023-10-08T10:11:14Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"238b0fb7-3f05-4b4b-8e98-ccc670107352","creationTime":"2023-10-08T09:54:32Z","deletionTime":"2023-10-08T10:11:14Z"}]}},{"name":"7ae21446-283a-4776-9114-7e7d717ca667","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7ae21446-283a-4776-9114-7e7d717ca667","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"8a01ce89-cc87-4155-ad6e-84c18ef5d738","creationTime":"2023-10-08T10:09:25Z","deletionTime":"2023-10-08T10:11:15Z"}]}},{"name":"0becdd50-aaa0-45b8-b15d-b33bb5e96b88","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0becdd50-aaa0-45b8-b15d-b33bb5e96b88","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z","oldestRestorableTime":"2023-10-08T10:35:47Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"c74ea583-a968-4724-b677-fd6a0cc87f9f","creationTime":"2023-10-08T10:35:47Z","deletionTime":"2023-10-08T10:41:07Z"}]}},{"name":"b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7c87c78-bb88-4aa2-8dca-51b5ccda7ab5","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-08T11:22:00Z","deletionTime":"2023-10-08T11:25:50Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a19fa7f6-4e85-45c7-be62-eac2fdcd5ea7","creationTime":"2023-10-08T11:22:01Z","deletionTime":"2023-10-08T11:25:50Z"}]}},{"name":"e462b6c8-1a31-4f1f-a31b-4056571f9936","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e462b6c8-1a31-4f1f-a31b-4056571f9936","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-08T11:47:12Z","deletionTime":"2023-10-08T11:51:06Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"284236a7-7362-445d-aa9a-55501466e6ae","creationTime":"2023-10-08T11:47:13Z","deletionTime":"2023-10-08T11:51:06Z"}]}},{"name":"c37100ad-59df-4755-815f-678558f80c70","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c37100ad-59df-4755-815f-678558f80c70","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-08T12:13:24Z","deletionTime":"2023-10-08T12:16:46Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"1db0054c-57ba-45fb-a338-938c6f814947","creationTime":"2023-10-08T12:13:25Z","deletionTime":"2023-10-08T12:16:46Z"}]}},{"name":"25ccd82c-85ee-43a2-969f-596ee8dd38b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/25ccd82c-85ee-43a2-969f-596ee8dd38b6","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-08T12:17:20Z","deletionTime":"2023-10-08T12:20:45Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"524ab3d3-af00-4669-a086-65d42f61b3c6","creationTime":"2023-10-08T12:17:21Z","deletionTime":"2023-10-08T12:20:45Z"}]}},{"name":"b7244721-a8b5-43e1-905f-97033c71dbec","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b7244721-a8b5-43e1-905f-97033c71dbec","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z","oldestRestorableTime":"2023-10-08T13:41:06Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"45a890b6-87cc-4f8e-89a8-468fd4a673d9","creationTime":"2023-10-08T13:41:06Z","deletionTime":"2023-10-08T13:46:03Z"}]}},{"name":"cd2cba57-b2cf-4205-acaf-c29f677ee7fb","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cd2cba57-b2cf-4205-acaf-c29f677ee7fb","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-08T13:46:40Z","deletionTime":"2023-10-08T13:50:38Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"4ccf469d-dcba-487d-b42d-7e86ea293d13","creationTime":"2023-10-08T13:46:41Z","deletionTime":"2023-10-08T13:50:38Z"}]}},{"name":"273e5793-1c6e-4bef-8577-14dbb8cca66a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/273e5793-1c6e-4bef-8577-14dbb8cca66a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2023-10-11T06:23:25Z","deletionTime":"2023-10-11T06:40:34Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"5231928c-b161-4cff-8bc1-1ab9c384b881","creationTime":"2023-10-11T06:23:26Z","deletionTime":"2023-10-11T06:40:34Z"}]}},{"name":"e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e2d8d32f-ee2a-4bb3-a984-52b4ed4f4bc5","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"fdb5aada-10b5-4f20-b03d-b900c740522c","creationTime":"2023-10-11T06:38:21Z","deletionTime":"2023-10-11T06:40:35Z"}]}},{"name":"00325fd9-44f0-4ca6-8611-fef342efbd14","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/00325fd9-44f0-4ca6-8611-fef342efbd14","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z","oldestRestorableTime":"2023-10-11T07:12:14Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"a216cc06-7a12-4b01-9a81-ce6d76c1b944","creationTime":"2023-10-11T07:12:14Z","deletionTime":"2023-10-11T07:17:45Z"}]}},{"name":"5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5861c0fb-65fc-4c0a-ba0a-2dc056b2168c","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2023-10-11T07:59:00Z","deletionTime":"2023-10-11T08:02:54Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"66220bc6-33e3-4d30-b78a-1efda9268e6a","creationTime":"2023-10-11T07:59:01Z","deletionTime":"2023-10-11T08:02:54Z"}]}},{"name":"db056d82-7944-46d7-9669-ad5a36cea58c","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/db056d82-7944-46d7-9669-ad5a36cea58c","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2023-10-11T08:26:45Z","deletionTime":"2023-10-11T08:30:38Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"b0df4d46-202d-4779-aa1e-21707af60264","creationTime":"2023-10-11T08:26:46Z","deletionTime":"2023-10-11T08:30:38Z"}]}},{"name":"da8f8da8-36e3-4de8-89ac-281ea68d2c31","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/da8f8da8-36e3-4de8-89ac-281ea68d2c31","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2023-10-11T08:53:07Z","deletionTime":"2023-10-11T08:56:21Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"972a2e95-0f8c-48c7-a32d-99c5f2ca2e81","creationTime":"2023-10-11T08:53:08Z","deletionTime":"2023-10-11T08:56:21Z"}]}},{"name":"64bb82c4-4893-4482-b4bf-fb75aefb9e02","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64bb82c4-4893-4482-b4bf-fb75aefb9e02","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"258cddfa-0613-413d-9ab1-3a729db396c2","creationTime":"2023-10-11T08:56:57Z","deletionTime":"2023-10-11T09:00:22Z"}]}},{"name":"7c8590dd-7b97-4485-94b5-abaeffdd202b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c8590dd-7b97-4485-94b5-abaeffdd202b","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2023-10-11T09:59:34Z","deletionTime":"2023-10-11T10:03:03Z","oldestRestorableTime":"2023-09-12T13:03:35Z","restorableLocations":[{"locationName":"East - US","regionalDatabaseAccountInstanceId":"aff386b8-41ca-4317-8979-a6d0dc6dc363","creationTime":"2023-10-11T09:59:35Z","deletionTime":"2023-10-11T10:03:03Z"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '306696' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 13:03:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/9.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711/restorableSqlResources?api-version=2023-09-15&restoreLocation=West%20Central%20US&restoreTimestampInUtc=2023-10-12%2013%3A01%3A33%2B00%3A00 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711/restorableSqlResources/cli-xrr000003","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlResources","name":"cli-xrr000003","databaseName":"cli-xrr000003","collectionNames":["cli-xrr000002"]}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '408' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:03:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"location": "West Central US", "kind": "GlobalDocumentDB", "properties": - {"locations": [{"locationName": "northcentralus", "failoverPriority": 0}], "databaseAccountOfferType": - "Standard", "apiProperties": {}, "createMode": "Restore", "restoreParameters": - {"restoreSource": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711", - "restoreTimestampInUtc": "2023-10-12T13:01:33.000Z", "restoreMode": "PointInTime", - "sourceBackupLocation": "West Central US"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - Content-Length: - - '575' - Content-Type: - - application/json - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored","name":"cli-xrr-000004-restored","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:03:46.9439007Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{},"instanceId":"b6468c4b-e6fe-4791-85a7-2093162dfbd5","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711","restoreTimestampInUtc":"2023-10-12T13:01:33Z","sourceBackupLocation":"West - Central US","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:03:46.9439007Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:03:46.9439007Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:03:46.9439007Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:03:46.9439007Z"}}},"identity":{"type":"None"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - cache-control: - - no-store, no-cache - content-length: - - '3016' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:03:49 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored/operationResults/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:03:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:04:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:04:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:05:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:05:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:06:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:06:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:07:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:07:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:08:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:08:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:09:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:09:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:10:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:10:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:11:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:11:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:12:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:12:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:13:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:13:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:14:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:14:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:15:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:15:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:16:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:17:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:17:31 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/dcf6e71c-f4e7-4f58-a149-848966815431?api-version=2023-09-15-preview&t=638327126294675669&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=PAToy_8uMz3uOTnwuMOf5B4TxxS54g6dO5aRLhCgwZBfgbj3K1ifjUouF4GjpDdcHn2skayvqTNXeJ4Vp8eiNC4uhB1nZoeC8v86CUd2WS8GF_Vzts64R01liZ5akQWagR0HpKg-vFXKjfdpj8N-Jg9U5YIiqFWeFiCVvM84bwq9gJJ30ROEmTlgT636oiM5JpoMJJFdgN8PFDAEKRSasC25EMlCKb3onMcTRj6pAI3-xFPNuds-WZW6A53iSUo3d8LOeUe8ldT16sPMC5V4XT9tVV5kaJ2IeE_rhZ318LP4pGo9xt-I6QU_00FRDwq0bW-Ff4jGnon1VkkoRr0meQ&h=Wu71EXSD1JAefSQ-nOiA2Y5tMAOP9y-wxHlHLxikfrA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored","name":"cli-xrr-000004-restored","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:17:25.2597112Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004-restored.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":"b6468c4b-e6fe-4791-85a7-2093162dfbd5","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711","restoreTimestampInUtc":"2023-10-12T13:01:33Z","sourceBackupLocation":"West - Central US","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3384' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb restore - Connection: - - keep-alive - ParameterSetName: - - -n -g -a --restore-timestamp --source-backup-location --location - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored","name":"cli-xrr-000004-restored","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:17:25.2597112Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004-restored.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":"b6468c4b-e6fe-4791-85a7-2093162dfbd5","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711","restoreTimestampInUtc":"2023-10-12T13:01:33Z","sourceBackupLocation":"West - Central US","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3384' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cross_region_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-xrr-000004-restored","name":"cli-xrr-000004-restored","location":"West - Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2023-10-12T13:17:25.2597112Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-xrr-000004-restored.documents.azure.com:443/","sqlEndpoint":"https://cli-xrr-000004-restored.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":"b6468c4b-e6fe-4791-85a7-2093162dfbd5","createMode":"Restore","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minimalTlsVersion":"Tls","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","documentEndpoint":"https://cli-xrr-000004-restored-northcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-xrr-000004-restored-northcentralus","locationName":"North - Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous7Days"}},"restoreParameters":{"restoreMode":"PointInTime","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6109f15a-f7c9-4281-90ff-6807547b5711","restoreTimestampInUtc":"2023-10-12T13:01:33Z","sourceBackupLocation":"West - Central US","databasesToRestore":[]},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"capacity":{"totalThroughputLimit":-1},"keysMetadata":{"primaryMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"secondaryMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"primaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"},"secondaryReadonlyMasterKey":{"generationTime":"2023-10-12T13:17:25.2597112Z"}}},"identity":{"type":"None"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '3384' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 13:18:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml deleted file mode 100644 index 7192c2ab605..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml +++ /dev/null @@ -1,2090 +0,0 @@ -interactions: -- request: - body: '{"location": "eastus2", "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, - "subnets": [{"name": "cli000004", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - Content-Length: - - '237' - Content-Type: - - application/json - ParameterSetName: - - -g -l -n --subnet-name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"5abb8a73-bc0f-41fc-aeb3-7585fce6945b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"357dc715-ec03-4b4f-86ac-5e798d94300c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"5abb8a73-bc0f-41fc-aeb3-7585fce6945b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/865658dc-26f3-4382-884f-311e93a57487?api-version=2022-01-01 - cache-control: - - no-cache - content-length: - - '1256' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - de774a37-7057-4e7d-bfd5-a9888d829e09 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -l -n --subnet-name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/865658dc-26f3-4382-884f-311e93a57487?api-version=2022-01-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7484a002-f2d7-41ee-868e-c17ac61ed911 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -l -n --subnet-name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/865658dc-26f3-4382-884f-311e93a57487?api-version=2022-01-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - e5938662-4955-4755-b844-eced74b3af96 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -l -n --subnet-name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"6213ef5b-c769-4b9a-a802-94b34ada43d8\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"357dc715-ec03-4b4f-86ac-5e798d94300c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"6213ef5b-c769-4b9a-a802-94b34ada43d8\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1258' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:36 GMT - etag: - - W/"6213ef5b-c769-4b9a-a802-94b34ada43d8" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f5540462-d7d4-4c15-b41e-ade0a57105f1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"6213ef5b-c769-4b9a-a802-94b34ada43d8\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"357dc715-ec03-4b4f-86ac-5e798d94300c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"6213ef5b-c769-4b9a-a802-94b34ada43d8\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1258' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:37 GMT - etag: - - W/"6213ef5b-c769-4b9a-a802-94b34ada43d8" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 817192f4-ab1e-43b2-bbb4-313c10d371e6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment create - Connection: - - keep-alive - ParameterSetName: - - --assignee --role --scope - User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.53.0 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27e5007d2c-4b13-4a74-9b6a-605d99f03501%27%29 - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '92' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:39 GMT - odata-version: - - '4.0' - request-id: - - 16a7b1d3-58ff-4ecf-81d7-780e3f517878 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00006BAC"}}' - x-ms-resource-unit: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"ids": ["e5007d2c-4b13-4a74-9b6a-605d99f03501"], "types": ["user", "group", - "servicePrincipal", "directoryObjectPartnerReference"]}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment create - Connection: - - keep-alive - Content-Length: - - '132' - Content-Type: - - application/json - ParameterSetName: - - --assignee --role --scope - User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.53.0 - method: POST - uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"e5007d2c-4b13-4a74-9b6a-605d99f03501","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"Azure - Cosmos DB","appDescription":null,"appId":"a232010e-820c-4083-83bb-3ace5fc29d0b","applicationTemplateId":null,"appOwnerOrganizationId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"createdDateTime":"2020-01-03T02:38:32Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"Azure - Cosmos DB","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["a232010e-820c-4083-83bb-3ace5fc29d0b"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[{"adminConsentDescription":"Allow - the application to access Azure Cosmos DB on behalf of the signed-in user.","adminConsentDisplayName":"Access - Azure Cosmos DB","id":"8741c20d-e8c0-41ff-8adf-b7b9ba168197","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access Azure Cosmos DB on your behalf.","userConsentDisplayName":"Access - Azure Cosmos DB as the Signed-in User","value":"user_impersonation"}],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1778' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:39 GMT - location: - - https://graph.microsoft.com - odata-version: - - '4.0' - request-id: - - cd738466-9575-49a6-af78-4d1f041de268 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF000068F1"}}' - x-ms-resource-unit: - - '3' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId": "e5007d2c-4b13-4a74-9b6a-605d99f03501", "principalType": "ServicePrincipal"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment create - Connection: - - keep-alive - Content-Length: - - '270' - Content-Type: - - application/json - ParameterSetName: - - --assignee --role --scope - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-authorization/4.0.0 Python/3.10.11 - (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003","condition":null,"conditionVersion":null,"createdOn":"2023-10-12T11:05:41.0711813Z","updatedOn":"2023-10-12T11:05:41.5751860Z","createdBy":null,"updatedBy":"577b55da-07f9-4f25-b5c3-756d041fc028","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' - headers: - cache-control: - - no-cache - content-length: - - '1017' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:44 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet show - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name --name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004?api-version=2023-05-01 - response: - body: - string: '{"name":"cli000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","etag":"W/\"6213ef5b-c769-4b9a-a802-94b34ada43d8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '481' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:05:44 GMT - etag: - - W/"6213ef5b-c769-4b9a-a802-94b34ada43d8" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 06202ce3-5172-419a-bcd2-926da145aa44 - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "identity": {"type": "None"}, "properties": {"delegatedManagementSubnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004", - "initialCassandraAdminPassword": "cassandra", "clusterType": "Production"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - Content-Length: - - '345' - Content-Type: - - application/json - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:05:46.7969961Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:05:46.7969961Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{},"provisioningState":"Creating","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRAYZOGH6TMQI6ZNGLEL457H37NRXR56Z5XVSKJXQNBLEUKU7F7YW5U2Y/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLILHKCQFA","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - cache-control: - - no-store, no-cache - content-length: - - '1621' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11: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-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:05:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:06:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:07:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:08:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:09:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:10:51 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:11:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/8def151b-8768-4f5c-bb1c-2d640c953b52?api-version=2023-09-15-preview&t=638327055485947444&c=MIIHHjCCBgagAwIBAgITfwHPoKWFUi8BZhm71wAEAc-gpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMwODAyMTUxMzA3WhcNMjQwNzI3MTUxMzA3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALu1fZZT_nfKRrxL6aw2JLIgOZKXeKPga0MQ0EbBuAZQktSy3j54LDkbkSRqksOE2AYyp19GWQAGL0ljJwxFBRp_nFo8jljIy22jy-satVS7oJtnzH1TqtYFaysEFAiYHuq_qe0VMyxNBrIkwf60yCr2BRBOKXVFqfzVx3Wup-Qr_kDwppasDbBgYXwE4iH9CCcqg5IsgBz2IfvUSiRtlHB622wo90PGPXuz-djAwdjmUNKOer05VoHXvjSx3V2_f9VnXc4T1OrSY3WdWSvzCJh7Hgfg8SdAYlvJgzVWM64uB9VKloorGXz3XWGPJtpQxgNwpuHLCrABPO4fwOAuITUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQyEYGXwRYcvZp0qXgj4FWJs6TRIzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFKdLTs8xn97Nm7zx6Qcs2CViRTL6Inal6SA1QCw_qL9yDAnDW-WQCPR-rEUTPy7BL2WqCvCUnQkW_aew8zFfiUEdwQNkmAssARGSpeufWbypj45aNJYk1I1GzFS3kOB4pyen0gOv-2dStVtGvfRPYoS_iHCM_Fe2CJaWivf5Du0yELc3KdGovaR0VRbRjzPYLr1UYVX5CvvjoDBkvoOESc1fIis9zPCGzvs7chJ36MqU8kckMcIUtcsuCaTZS1tRuzfHL7p7FHLiTln4CPXCX8mRQp7fCUJGRyd4-CTs0DFmTPBKp2AG54KKsahYLGRvMREEmXAcaO5J3-troScyFc&s=n1Xv5HXotyTm9rttJ3RZUTxgvZHna4lFIBE1f9Q9m7xIgdQrAH0OzPf7S1OVE8rvBsqHt0_LmG4BzqD-EtiMsYpkElcQEYF7X2IZftUcgkJ_4-FUOkZMb5_ytWN_yWFJrPuY58zni8_2ASRroXyo4XG8NPHFrPXcdQu5tdP_VpwwEo3LgPPOrlVh1xyU9pF5Q_bWMnO8YGMpIDdGSft_Dlt7zZt-BxQad4sDnpLW_rGvbMXPNvoU2X-Ny54C10RbYMBbdcd3_XZP4sr9ldsH5Fn-PRN2iOKyQTk87ahAoAHGoIsAdpzAAZRjZtRud-dnT4x6ZhM9jLtDNVBYvT943g&h=RbOE9ug6gg0QNt7fyDdc6gZTiaK10qEd5XZ2X2Roo1s - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:05:46.7969961Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:05:46.7969961Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"SystemKeyspaces","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN - CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRAYZOGH6TMQI6ZNGLEL457H37NRXR56Z5XVSKJXQNBLEUKU7F7YW5U2Y/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLILHKCQFA","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '91462' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster show - Connection: - - keep-alive - ParameterSetName: - - -c -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:05:46.7969961Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:05:46.7969961Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"SystemKeyspaces","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN - CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRAYZOGH6TMQI6ZNGLEL457H37NRXR56Z5XVSKJXQNBLEUKU7F7YW5U2Y/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLILHKCQFA","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '91462' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:32 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=TTLzTaJflynkzyyQMWAo6lW_2DXsBSAp_50vFQ610jrf4SqNJWSPyS7ZvSNImK53QI2UkId5X7bo5g8fnq2wO5-Kb967ikvPkYqaFOoSStbE5Fl9UfE-4ohpFyYvXRQAmabFpIsE_qw5nJdJTt_8LxoDvS0GrinVL2V7_q_auNF5Mhr2JKqpstpHP_4P2BVXv2vqVAQ1CSQJsMnc8tEsRrXN941yPExHyXrsLuU0dbtPBW4HqKgBPq3uojI1WyfU2wCA_8uk4GXFo5KMiDD8luIwm0-wA_Aq4GtnA39PNd5K5PdwsIIFJnR7JuYTjtJdGtZSzWDUxWy-uhdwRLSO1w&h=brq9mGvaeymMtIOdcPGvDbafIq93H2xAyQXbNJrU4Dk - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:12:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:13:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:14:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:15:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:16:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:17:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:18:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/468a46fe-5f44-4624-8bf5-74ccb07a654c?api-version=2023-09-15-preview&t=638327059526586223&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=L1FDNxbmHuY9_yF1ibLB5MiJxtHY_Oa2dnihSRp9WX5FZxlej3lq23-rd593r4EzFdGPUxfKOnHBiryDmpPEL3PoXIL5e2mN85oUiKh7jHBUMpX_qG5D4inRFHq58hfwzGwa-iSFJPjw_PQnfntiRz0TRIu7ZPHVqsbzGaVe-4Z4O-ZHoRy3noGlrVwcmKx8yxc6mfgtutLRhreRv9Pv7kdDaN3cGRk_bshI8hCg4YY9qyKwMhctiMXsnB4sGSbazEHWs9ybhWZgZogYadR4c0SRk3Fm7nYewiVrbLI1aX1XOVKgnztc0xkX9lOwFJK6Bq57j7iQ9U02TQnVmWSKWQ&h=8XSYG3O9UbZeL0fEmN3o1aS44Zpy99APqNaQcsQWA7s - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:19:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml deleted file mode 100644 index deb45e2e755..00000000000 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml +++ /dev/null @@ -1,5102 +0,0 @@ -interactions: -- request: - body: '{"location": "eastus2", "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, - "subnets": [{"name": "cli000006", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - Content-Length: - - '237' - Content-Type: - - application/json - ParameterSetName: - - -g -l -n --subnet-name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n - \ \"etag\": \"W/\\\"428c6946-5af0-4912-9c66-197a8d0ab1d4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"2eb5d5fc-12fd-42be-9dbe-e6c19974ef06\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n - \ \"etag\": \"W/\\\"428c6946-5af0-4912-9c66-197a8d0ab1d4\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/09c693bd-b7bf-4cba-adf8-eeb41958c00a?api-version=2022-01-01 - cache-control: - - no-cache - content-length: - - '1256' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f050f908-04e1-4020-a086-a1c2a564cc4f - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -l -n --subnet-name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/09c693bd-b7bf-4cba-adf8-eeb41958c00a?api-version=2022-01-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 6380168a-55d6-49a3-a429-5ab66098d0f0 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -l -n --subnet-name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/09c693bd-b7bf-4cba-adf8-eeb41958c00a?api-version=2022-01-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 77c6165d-f5c5-427c-b107-59ffcff70997 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -l -n --subnet-name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n - \ \"etag\": \"W/\\\"8e10780b-a530-4314-98bc-fdbb8ae52c29\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"2eb5d5fc-12fd-42be-9dbe-e6c19974ef06\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n - \ \"etag\": \"W/\\\"8e10780b-a530-4314-98bc-fdbb8ae52c29\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1258' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:31 GMT - etag: - - W/"8e10780b-a530-4314-98bc-fdbb8ae52c29" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 20150012-ede7-4344-920f-9541a36ad18a - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n - \ \"etag\": \"W/\\\"8e10780b-a530-4314-98bc-fdbb8ae52c29\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"2eb5d5fc-12fd-42be-9dbe-e6c19974ef06\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n - \ \"etag\": \"W/\\\"8e10780b-a530-4314-98bc-fdbb8ae52c29\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1258' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:32 GMT - etag: - - W/"8e10780b-a530-4314-98bc-fdbb8ae52c29" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - d4302cf0-f17c-473b-bc1d-84dccb196575 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment create - Connection: - - keep-alive - ParameterSetName: - - --assignee --role --scope - User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.53.0 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27e5007d2c-4b13-4a74-9b6a-605d99f03501%27%29 - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '92' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:32 GMT - odata-version: - - '4.0' - request-id: - - 158e4e73-c227-49ab-b173-2f0930d83f7e - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00003103"}}' - x-ms-resource-unit: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"ids": ["e5007d2c-4b13-4a74-9b6a-605d99f03501"], "types": ["user", "group", - "servicePrincipal", "directoryObjectPartnerReference"]}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment create - Connection: - - keep-alive - Content-Length: - - '132' - Content-Type: - - application/json - ParameterSetName: - - --assignee --role --scope - User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.53.0 - method: POST - uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"e5007d2c-4b13-4a74-9b6a-605d99f03501","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"Azure - Cosmos DB","appDescription":null,"appId":"a232010e-820c-4083-83bb-3ace5fc29d0b","applicationTemplateId":null,"appOwnerOrganizationId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"createdDateTime":"2020-01-03T02:38:32Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"Azure - Cosmos DB","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["a232010e-820c-4083-83bb-3ace5fc29d0b"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[{"adminConsentDescription":"Allow - the application to access Azure Cosmos DB on behalf of the signed-in user.","adminConsentDisplayName":"Access - Azure Cosmos DB","id":"8741c20d-e8c0-41ff-8adf-b7b9ba168197","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access Azure Cosmos DB on your behalf.","userConsentDisplayName":"Access - Azure Cosmos DB as the Signed-in User","value":"user_impersonation"}],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1778' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:33 GMT - location: - - https://graph.microsoft.com - odata-version: - - '4.0' - request-id: - - 6438a888-ac0c-4fec-a85e-c10f8ebf15db - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002517"}}' - x-ms-resource-unit: - - '3' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId": "e5007d2c-4b13-4a74-9b6a-605d99f03501", "principalType": "ServicePrincipal"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment create - Connection: - - keep-alive - Content-Length: - - '270' - Content-Type: - - application/json - ParameterSetName: - - --assignee --role --scope - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-authorization/4.0.0 Python/3.10.11 - (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005","condition":null,"conditionVersion":null,"createdOn":"2023-10-12T11:56:35.8400262Z","updatedOn":"2023-10-12T11:56:36.2550315Z","createdBy":null,"updatedBy":"577b55da-07f9-4f25-b5c3-756d041fc028","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' - headers: - cache-control: - - no-cache - content-length: - - '1017' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:38 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet show - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name --name - User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006?api-version=2023-05-01 - response: - body: - string: '{"name":"cli000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","etag":"W/\"8e10780b-a530-4314-98bc-fdbb8ae52c29\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '481' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Oct 2023 11:56:40 GMT - etag: - - W/"8e10780b-a530-4314-98bc-fdbb8ae52c29" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - fa410cb8-c183-4129-8308-f4a22d04549a - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "identity": {"type": "None"}, "properties": {"delegatedManagementSubnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006", - "initialCassandraAdminPassword": "password", "clusterType": "Production"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - Content-Length: - - '344' - Content-Type: - - application/json - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:56:42.3570764Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:56:42.3570764Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{},"provisioningState":"Creating","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2ORKK5D74P2HHI5QMR3GPFD5LXKP7RDC3SKU5YNK3FUCKSOWIKSGM4/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLILWCLYMS","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - cache-control: - - no-store, no-cache - content-length: - - '1621' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:43 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:56:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:57:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:14 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:58:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 11:59:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:00:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:01:47 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:02:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e6c2a25c-a59e-4500-a3b8-f1b2f7c70848?api-version=2023-09-15-preview&t=638327086039039792&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=pfB1guNj8K32-_g2MUpaQkLtfw_qAmtTmLkx-HqQ8vxIdiZEI8i6TEyFWi_agZg3mHb26D41IXvKJTlmZp5pXW2lcB2iehKAP9hd1Zg1PuL1l_7KmHpwiHE1tuBSWliTbAqJIhdaH27goxtsV9dgcvcQjHvJFSuJNCnsEXxaPt5C_lKWMBbZXJHBoM0k4L4kbl_Vx4WM1ezFcSD2-nZ73LOksRywFcxgyfEi-ONCUnUkhAB9tlvbKlOONX7I_Um4bs-daon3rxXMuq7QV7ThZpIEhBds8PpcKc9mUKt_t6HFZWJKcQIVkz0KD4SYuYBf1ugThx5qnXCFR2kPPYNdHA&h=lN8o6J-ftNh_dh6v2TEyGCKRNSlJaZnF1FABeZK9NmQ - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster create - Connection: - - keep-alive - ParameterSetName: - - -c -l -g -s -i - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:56:42.3570764Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:56:42.3570764Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"SystemKeyspaces","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN - CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2ORKK5D74P2HHI5QMR3GPFD5LXKP7RDC3SKU5YNK3FUCKSOWIKSGM4/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLILWCLYMS","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '91462' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:22 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster show - Connection: - - keep-alive - ParameterSetName: - - -c -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:56:42.3570764Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:56:42.3570764Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"SystemKeyspaces","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN - CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2ORKK5D74P2HHI5QMR3GPFD5LXKP7RDC3SKU5YNK3FUCKSOWIKSGM4/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLILWCLYMS","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '91462' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: '{"properties": {"dataCenterLocation": "eastus2", "delegatedSubnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006", - "nodeCount": 3, "authenticationMethodLdapProperties": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - Content-Length: - - '298' - Content-Type: - - application/json - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T12:03:28.7680317Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T12:03:28.7680317Z"},"properties":{"provisioningState":"Creating","dataCenterLocation":"East - US 2","deallocated":false,"delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - cache-control: - - no-store, no-cache - content-length: - - '931' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:03:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:04:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:02 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:05:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:04 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:06:35 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:07:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:08:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:08:37 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:09:07 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:09:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:10:08 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:10:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:11:09 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:11:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:12:10 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:12:41 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:13:12 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:13:42 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:14:13 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:14:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:15:15 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:15:45 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:16:16 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:16:46 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:17:18 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:17:48 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:18:19 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:18:49 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:19:20 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:19:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:20:21 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:20:52 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:21:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:21:53 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:22:23 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:22:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:23:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:23:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:24:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:24:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:25:28 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:25:58 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:26:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:27:00 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:27:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:28:01 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:28:32 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:29:03 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:29:33 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:05 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/57c0317d-912c-43fd-a22b-a5a8256d0aee?api-version=2023-09-15-preview&t=638327090109869283&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=rjdqAaVPumrR9-qOhZVuRA2wS_xJJ8v_F0SYacYZvx7nZz11ilyfetL7URU7Iuq8m2H1GuMA87u4ROeb4sDDKTPwPTqZyMu_IaN7VOaDCl5RI8nJGpwFm1HobCLSsibZiI1W-uBgu3WggkNzh7QPdrcJ4VKqYvVvegqX46cRyzeB3anK6q3-1DlUszRL7OqsvsVa8mmdowoMb88F_u1vkbB4fTq2xxhPDtJN7Uko5MdRAgpAYQ6WGWnw_9Tsu_p7RKCEIlMgDe4CGYbq52-8meZhm6xtWoJqgzd08O03t6u3liRL0afmk4xL3VjY-eB5lbr0-S7aJ-71Cq6M7GJJgw&h=UNcTVtTEd-QzbYn3tFOxYn9Wh65sAReHEwABogmiZTU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:34 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter create - Connection: - - keep-alive - ParameterSetName: - - -c -d -l -g -n -s - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T12:03:28.7680317Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T12:03:28.7680317Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"East - US 2","deallocated":false,"delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_DS14_v2","diskSku":"P30","diskCapacity":4}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1064' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:36 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter show - Connection: - - keep-alive - ParameterSetName: - - -c -d -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2023-09-15-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T12:03:28.7680317Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T12:03:28.7680317Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"East - US 2","deallocated":false,"delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_DS14_v2","diskSku":"P30","diskCapacity":4}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1064' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:38 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra datacenter list - Connection: - - keep-alive - ParameterSetName: - - -c -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T12:03:28.7680317Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T12:03:28.7680317Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"East - US 2","deallocated":false,"delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_DS14_v2","diskSku":"P30","diskCapacity":4}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '1076' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:40 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:56:42.3570764Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:56:42.3570764Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"SystemKeyspaces","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN - CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2ORKK5D74P2HHI5QMR3GPFD5LXKP7RDC3SKU5YNK3FUCKSOWIKSGM4/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLILWCLYMS","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '91548' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:44 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2023-09-15-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandraki7r53ckrlhsp2jdipli4humdjo7vtmay6et7yslnrc52busycso2n/providers/Microsoft.DocumentDB/cassandraClusters/cli6s54ilh","name":"cli6s54ilh","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-03T18:04:20.223051Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-03T18:04:20.223051Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandraki7r53ckrlhsp2jdipli4humdjo7vtmay6et7yslnrc52busycso2n/providers/Microsoft.Network/virtualNetworks/cliwnypgou/subnets/clitopig5y","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN - CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRAKI7R53CKRLHSP2JDIPLI4HUMDJO7VTMAY6ET7YSLNRC52BUSYCSO2N/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLI6S54ILH","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East - US 2","tags":{},"systemData":{"createdBy":"acagrawal@microsoft.com","createdByType":"User","createdAt":"2023-10-12T11:56:42.3570764Z","lastModifiedBy":"acagrawal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-12T11:56:42.3570764Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"SystemKeyspaces","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 - 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN - CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2ORKK5D74P2HHI5QMR3GPFD5LXKP7RDC3SKU5YNK3FUCKSOWIKSGM4/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLILWCLYMS","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '183098' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:50 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2023-09-15-preview - response: - body: - string: '{"status":"Enqueued"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:54 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541731731&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=YgRSGFU0v8gntbklzPJKf4DooZwGSSLRryrLmBoOLmaHSnKggqnrKeddqB00wNtyupAljlwWY6QgrnZK7T4FKWd5dnnTeu8Y8Ltd3K8OfqNDefdPbTkJX_cgKMFxqZHgRXKJ3VZWh2I_xd0ZKQeAkpgUz12g2RQuPyKlPsW8rJzssoAoLys6F69S4pea9UDoLfaXReCLwhokb9GRD8NX6tmRG8EFIanygSVLQ-yrheOekKWCq-AjhEC0vjJlGZOe850-o_6fdrjb0tpFp8tYy22R0OdzeVuo75QK8Ye3gp2dmpyFdRVP5cT-IxI2qeDitQxsUX0mNiorGHAFMXCybA&h=YOatLsc09DUgZs5bmnWiS0npV56AjAUYkF-6SyzU-Sg - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Enqueued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:30:54 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:31:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:31:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:32:24 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:32:55 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:33:25 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:33:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:34:26 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:34:56 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:35:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:35:57 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:36:27 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:36:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:37:29 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:37:59 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.53.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d07791c7-3479-4c83-9a8f-96b34c59e287?api-version=2023-09-15-preview&t=638327106541575559&c=MIIHADCCBeigAwIBAgITHgMiGNIgnP-o0W_mPwAAAyIY0jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMwODAyMTQyMzE0WhcNMjQwNzI3MTQyMzE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANLUe8Z1WWecv4JfkNy9UjV6ma5kBUP27DnUxJN3eNw1-M_HuWmkygPqA-wG8yigJUsV2ZKKBQAHA-AE4s1OymJjZrq7YjNT7CDvGzfGZtBMCeuM-aZf-VzwuPbCZqE-qABrYWC8-mD1-uSm0ARrqg94vjWEtTdxloNCPz34FlLg5OHUVoWDXtjQfWpDnOuwT7hOiiYQDSj9tbzlYgOXMgWjEoLPgG5FoBhPWni2Zva2SeznRssLgKnFTZtwBnDNlqTr-wUED-ZaRQRPnBAr-TfJYtOwA9DzUpplQVVCrBfFyARQu4Q8WP_ZXLC-Fn4xWvUGjDRSgs9mwTv07QdLaCUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBS-J_3LA4fzrFuJDLKp9AzGin6TgTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIuTose3fTqa598TQlNDihjYGrUYaGSZD_ylYtkXLR1GV3SMsNW4ho0k0mk6baSbiYJwZESEg9PQ-gU0mzVORTnqvWkQfE04b4SM_Dg5NlFuImGLjcPVtxCnrg12C9Fzc10kyRqMLnktx58vdj9ooP-5Y2zyt04RQwBq43UvnuYUzqvpxiIvEzeuZyhwnVdO80_G03_IrvXBWljcvjkqcf3T2-yiqnlR7VOhCAJWIqYkzSiwfOYOuHw95ckhD5XzyRjAKxzUUaVmapxZoj44WuS70mtP2AHMxWtkzcUt-15WNQ6k93MDKSYR0DkEapk-pilKvdt4utOg0XqJ78HPSQ0&s=I_4vEqKrVsI9mfoZ_4nHaQd16kb1IzWJg2SNS90dd1y7xJX9nCSWEdYR3BkPgtjhYjqOuSXsdhZY3nMnqaL1QiXTAIVxyIoS-LMrADVlmiMzF-mHER_XwGAkfyCEJYjFAWHoItIERgBwHwjejZNWxMOX3vHKuWdN7ykjR2p-qW1xMkV0GXFbGlCsfqQNBT0y6_mgfZL8BfF4bDgXhth837Fs93PR7dg4zTWs9qk_Sbm7fM2wJKkDBQZg1AodxiiNcRd0hmaDHP8W5qN53PpkW8f2z6LYM4yYXOBC6XlnakGYOZrYw6f7wPrTgsPOjNBVthE41jcNc5Z9a-fSJ6H-uQ&h=Ipg7P8MhuX3TW5imjdrmp2ZpWxpr-5XgfY3IhudWDQA - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '22' - content-type: - - application/json - date: - - Thu, 12 Oct 2023 12:38:30 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -version: 1 From e50adf7dd18b5595e5105028324c7f4d3a571018 Mon Sep 17 00:00:00 2001 From: Vivek Agarwal Date: Sat, 2 Mar 2024 21:06:16 -0800 Subject: [PATCH 34/37] changes in params as well as test and recording for sql ntbr flow --- .../azext_cosmosdb_preview/_params.py | 21 +- ...al_database_prov_container_restore_nt.yaml | 19748 ++++++++++++++++ ...test_cosmosdb-InAccountRestore_scenario.py | 133 + 3 files changed, 19888 insertions(+), 14 deletions(-) create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore_nt.yaml diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index 834a0fc49b8..06d192fdb1a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -570,50 +570,43 @@ def load_arguments(self, _): with self.argument_context('cosmosdb sql database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=False) # SQL collection restore with self.argument_context('cosmosdb sql container restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', database_name_type, required=True) c.argument('container_name', options_list=['--name', '-n'], help="Container name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the container needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the container needs to be restored to.", required=False) # MongoDB database restore with self.argument_context('cosmosdb mongodb database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Database name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=False) # MongoDB collection restore with self.argument_context('cosmosdb mongodb collection restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', database_name_type, required=True) c.argument('collection_name', options_list=['--name', '-n'], help="Collection name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the collection needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the collection needs to be restored to.", required=False) # Gremlin database restore with self.argument_context('cosmosdb gremlin database restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin database name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the database needs to be restored to.", required=False) # Gremlin Graph restore with self.argument_context('cosmosdb gremlin graph restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('database_name', database_name_type, required=True, help='Name of the CosmosDB Gremlin database name') c.argument('graph_name', options_list=['--name', '-n'], help="Name of the CosmosDB Gremlin graph name", required=True) - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the graph needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the graph needs to be restored to.", required=False) # Table restore with self.argument_context('cosmosdb table restore') as c: c.argument('account_name', account_name_type, id_part=None, required=True) c.argument('table_name', options_list=['--table-name', '-n'], required=True, help='Name of the CosmosDB Table name') - c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the Table needs to be restored to.", required=True) - c.argument('disable_ttl', options_list=['--disable-ttl'], arg_type=get_three_state_flag(), help="Enable or disable restoring with ttl disabled.", is_preview= True, required=False) + c.argument('restore_timestamp', options_list=['--restore-timestamp', '-t'], action=UtcDatetimeAction, help="The timestamp to which the Table needs to be restored to.", required=False) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore_nt.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore_nt.yaml new file mode 100644 index 00000000000..d06ea162bb5 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore_nt.yaml @@ -0,0 +1,19748 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001","name":"cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_normal_database_prov_container_restore_nt","date":"2024-03-03T03:39:32Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 03:39:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B56B5D9F934547CD903FCE6CCDD0A0A7 Ref B: BL2AA2030101025 Ref C: 2024-03-03T03:39:35Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004","name":"ntbrcli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T03:39:40.3505512Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a67d43a3-fe63-489c-9ab6-a33d637098d0","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"ntbrcli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"ntbrcli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T03:39:40.3505512Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T03:39:40.3505512Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:39:40.3505512Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:39:40.3505512Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + cache-control: + - no-store, no-cache + content-length: + - '2722' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:39:42 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/operationResults/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=RuIhyJYEVVE4oxVEP3zGV-TnZEoiGvZ3uGdX9JJDDSRa0KU7c991kCCcwppLd22j0TJilIEgkUmNg-WhU3RwDIEaekFGFjqPC71JayCaiEG5YPZ2AuSpeh15oT_q9smlchxB0g-J88tCO9KEHyluoB1j_Bd8NNRXCyFK4sbE7vXgYoh3ugUS1KBhAQQX8fIq0SRxHbGXORIRIMTHyg8OuZ8gT2ijzSRGd_56YWnrL6CDtQMZl5hB52n87PeUD5CkjzBdbUGOS3Y8GiKwKYaDPWziat20JxAS3fXFkfFUnW1vHk04F0DgwFLoNUZsme-p6ZKnKj8SvX52yLDsa5HQ0Q&h=w7M8GIE1oSriLDLNMQd5KA5AMpqlwDuKuR212Tudbq8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: A6ACDECDE6C24F6696832EE4C926FF73 Ref B: BL2AA2010204017 Ref C: 2024-03-03T03:39:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:39:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AB98FCDF7EF741F08EEBB8603EA1A1C7 Ref B: BL2AA2010205005 Ref C: 2024-03-03T03:39:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:40:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 770B12785E6B4A71A6DCB84B7B45D1BF Ref B: BL2AA2010203051 Ref C: 2024-03-03T03:40:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:40:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 971DE1D849F34AEC88AC6969DE3D392E Ref B: BL2AA2010201029 Ref C: 2024-03-03T03:40:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:41:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 78D542F7F4D24C07B2AD5C406324E06C Ref B: MNZ221060610023 Ref C: 2024-03-03T03:41:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:41:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8298EC7BAF9E445895C52257D2750819 Ref B: MNZ221060609053 Ref C: 2024-03-03T03:41:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C3F506D331984F02A87E32A416EDB406 Ref B: BL2AA2030101045 Ref C: 2024-03-03T03:42:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004","name":"ntbrcli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T03:41:34.7458793Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://ntbrcli000004.documents.azure.com:443/","sqlEndpoint":"https://ntbrcli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a67d43a3-fe63-489c-9ab6-a33d637098d0","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"ntbrcli000004-westus","locationName":"West + US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"ntbrcli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3100' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E557E781448B4433B764946EC26A23F5 Ref B: BL2AA2010201009 Ref C: 2024-03-03T03:42:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004","name":"ntbrcli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T03:41:34.7458793Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://ntbrcli000004.documents.azure.com:443/","sqlEndpoint":"https://ntbrcli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a67d43a3-fe63-489c-9ab6-a33d637098d0","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"ntbrcli000004-westus","locationName":"West + US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"ntbrcli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3100' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 32796D6473114F0FB4A91540BE63DD30 Ref B: BL2AA2030102033 Ref C: 2024-03-03T03:42:14Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b9911c-d2ff-4edb-a2f8-cabf4019cad0?api-version=2023-11-15&t=638450341350858353&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=q18wRzERn6-OYLs74MbWs4aF3E3vk8UY1cCakZTNdSIbhlOAX3qe3_3XKxDdJKIj1GhrlZevPGtvFXdX0cJ9yWbkk8hULeBh9LEo3kkh_mpty9WutsdaQ5h_hUvXb9YiiwlhvclhM7Eq7gyC2ZHBHicAQ0bZVEC-BbTtDvb8ah-LSgW1xazNFbPgSfWbyXb-BiXzptBT8UiAmeTnHy3jDd1g8tRaXPocwjakRQNbVETWIfQZ6HN-AjGKN-cotlRvYfzQvVAxrUUSj6tqXVS74jPy323kufTB-pj9OMRdplnt-PkV28lk_ysHW0lKi93hov1CyK3iRpAeQ-RNm7_GDg&h=HUfNeEdky5V5Cy11b8f-fzrhPXb3kLUH8StZOdmdwKs + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:14 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/f7b9911c-d2ff-4edb-a2f8-cabf4019cad0?api-version=2023-11-15&t=638450341351014647&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AC8_KVT2RqYRqNw2IdBeiYDhzX_TbBjMuYFDiSuHxraoY9NJk7BPs3goNZuYAyc1W_f2zCnOOs8CNUkHPtPlwEGImEQw-uOcxwKQ7Et4z38BZKfWlkdzbfQEI9SG5D8BdQMjmqQfszVnCPykzDjI0MTEdMh1HAdTY3p7mdO6f7av5wNp_xAfR8SqrgFWjKvJA_c_xmPLMqwqtYicDaOgFURhlwHVrMHYVsxF_xkkjXFY0cLsDSdHfhnD8qMn0PK-T8ogG7rOHugstm0D2npoFFJDO58L6k0CnGdDD9DyLmplIwGCn-h_lOtnhet3nB4936rVGR6LSmQkS0HJ-bQJ1A&h=ylgAlrm7yVkjv_w5Mrav-xHkql2b_2fjDgurpwoNnjE + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 902BF772B96E417E9925B9BF44DEABD0 Ref B: BL2AA2010204035 Ref C: 2024-03-03T03:42:14Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b9911c-d2ff-4edb-a2f8-cabf4019cad0?api-version=2023-11-15&t=638450341350858353&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=q18wRzERn6-OYLs74MbWs4aF3E3vk8UY1cCakZTNdSIbhlOAX3qe3_3XKxDdJKIj1GhrlZevPGtvFXdX0cJ9yWbkk8hULeBh9LEo3kkh_mpty9WutsdaQ5h_hUvXb9YiiwlhvclhM7Eq7gyC2ZHBHicAQ0bZVEC-BbTtDvb8ah-LSgW1xazNFbPgSfWbyXb-BiXzptBT8UiAmeTnHy3jDd1g8tRaXPocwjakRQNbVETWIfQZ6HN-AjGKN-cotlRvYfzQvVAxrUUSj6tqXVS74jPy323kufTB-pj9OMRdplnt-PkV28lk_ysHW0lKi93hov1CyK3iRpAeQ-RNm7_GDg&h=HUfNeEdky5V5Cy11b8f-fzrhPXb3kLUH8StZOdmdwKs + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1BEEEF53F7FA4D609806762818438336 Ref B: BL2AA2030101053 Ref C: 2024-03-03T03:42:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b9911c-d2ff-4edb-a2f8-cabf4019cad0?api-version=2023-11-15&t=638450341350858353&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=q18wRzERn6-OYLs74MbWs4aF3E3vk8UY1cCakZTNdSIbhlOAX3qe3_3XKxDdJKIj1GhrlZevPGtvFXdX0cJ9yWbkk8hULeBh9LEo3kkh_mpty9WutsdaQ5h_hUvXb9YiiwlhvclhM7Eq7gyC2ZHBHicAQ0bZVEC-BbTtDvb8ah-LSgW1xazNFbPgSfWbyXb-BiXzptBT8UiAmeTnHy3jDd1g8tRaXPocwjakRQNbVETWIfQZ6HN-AjGKN-cotlRvYfzQvVAxrUUSj6tqXVS74jPy323kufTB-pj9OMRdplnt-PkV28lk_ysHW0lKi93hov1CyK3iRpAeQ-RNm7_GDg&h=HUfNeEdky5V5Cy11b8f-fzrhPXb3kLUH8StZOdmdwKs + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B9DAD85BF5BE4608BA7E44CA2DCC8259 Ref B: BL2AA2010201047 Ref C: 2024-03-03T03:42:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '500' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DBB2048A14E04AAF9E4EE158BE32E9B1 Ref B: BL2AA2030104039 Ref C: 2024-03-03T03:42:45Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], + "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": ["/path/to/key1"]}, + {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": {"mode": "lastWriterWins", + "conflictResolutionPath": "/path"}}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + Content-Length: + - '479' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b08b044c-a7e0-4f5f-a3f2-9e9d3134b0c3?api-version=2024-02-15-preview&t=638450341670806092&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=df1XzpRD9bDG3dOELe3S2gkp8UTQAtiwnYjoyWEPe-hwkRKsGM1sNLrF40jfItjA2QMRkdv6H8DVYGNnMo_XvyIqNAwEYMsDcdGqjKIBDJS-ytHeWA_EuionpRoOLeUCB18X5umwtwkowS1z9g4cd8qDwbrwcoc4fiyHGRYYrix5H6O-hFeQPF3QSY6ItY_jlNnO5dF7eM6dilS0XNPQu8W1BYSvaviosy40Lcjq1_Z84Z-dMZi5wPT4eEh2cdfjvXENoT--hLaqkoQlgHQ-b1x7qeSzEyNpuuYIadjYL2T-hQyA13uqpjCkWNs3utGrVjvNMf-0yLE_CtrfO87hxg&h=2yKcPFNHW6BDS7g5j1bgOMUZddtvV55M0sU-49UD6YI + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:46 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/b08b044c-a7e0-4f5f-a3f2-9e9d3134b0c3?api-version=2024-02-15-preview&t=638450341670962339&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=kijDX4IV7be_mFgcrNvmRlDRqWFq4nBQdZcAunxhdOS-MjMl_zap4ir_I8OTgYgLHyud5Dk7S6ddyT3rQk-4CTiljQzYCEWT5owSe6mKBI_rAyAK4yX0cJbwVV7Y85OTOlV48cf9J7jXc9LAqT4UuSLpvPrEsJxMHYgWpumZX9Oep6a0WBbADqA6tN5GWHvc03ARiaMP2JwE-AziBMFYGnllC-OI3zzjq3nvfE6nRi-B6D_QorbPKlvwZxdPzisMBCqqSzpoR1oSfZ3lM46FiRF0v-PojKu-fE_x7J0nFI4uM4z-cVLQ7otJE3T_4HA0RTe4XPELxGrXz9-raF0Jyg&h=EpAfudQTo5jg12JP7GBH9az-mMea2fpE9sLqGjk-e-E + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 0D64167DDB434615855D4A43DEEE2B45 Ref B: BL2AA2010201035 Ref C: 2024-03-03T03:42:46Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b08b044c-a7e0-4f5f-a3f2-9e9d3134b0c3?api-version=2024-02-15-preview&t=638450341670806092&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=df1XzpRD9bDG3dOELe3S2gkp8UTQAtiwnYjoyWEPe-hwkRKsGM1sNLrF40jfItjA2QMRkdv6H8DVYGNnMo_XvyIqNAwEYMsDcdGqjKIBDJS-ytHeWA_EuionpRoOLeUCB18X5umwtwkowS1z9g4cd8qDwbrwcoc4fiyHGRYYrix5H6O-hFeQPF3QSY6ItY_jlNnO5dF7eM6dilS0XNPQu8W1BYSvaviosy40Lcjq1_Z84Z-dMZi5wPT4eEh2cdfjvXENoT--hLaqkoQlgHQ-b1x7qeSzEyNpuuYIadjYL2T-hQyA13uqpjCkWNs3utGrVjvNMf-0yLE_CtrfO87hxg&h=2yKcPFNHW6BDS7g5j1bgOMUZddtvV55M0sU-49UD6YI + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:42:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1E8C8399209949399D71318EB3E515A1 Ref B: BL2AA2030101051 Ref C: 2024-03-03T03:42:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b08b044c-a7e0-4f5f-a3f2-9e9d3134b0c3?api-version=2024-02-15-preview&t=638450341670806092&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=df1XzpRD9bDG3dOELe3S2gkp8UTQAtiwnYjoyWEPe-hwkRKsGM1sNLrF40jfItjA2QMRkdv6H8DVYGNnMo_XvyIqNAwEYMsDcdGqjKIBDJS-ytHeWA_EuionpRoOLeUCB18X5umwtwkowS1z9g4cd8qDwbrwcoc4fiyHGRYYrix5H6O-hFeQPF3QSY6ItY_jlNnO5dF7eM6dilS0XNPQu8W1BYSvaviosy40Lcjq1_Z84Z-dMZi5wPT4eEh2cdfjvXENoT--hLaqkoQlgHQ-b1x7qeSzEyNpuuYIadjYL2T-hQyA13uqpjCkWNs3utGrVjvNMf-0yLE_CtrfO87hxg&h=2yKcPFNHW6BDS7g5j1bgOMUZddtvV55M0sU-49UD6YI + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:43:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E3A3A821BDFF4C7BB265C8FBE7B8916E Ref B: MNZ221060609037 Ref C: 2024-03-03T03:43:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709437372,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1269' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:43:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B75929194204483F8F11C56B80A55ACB Ref B: MNZ221060609011 Ref C: 2024-03-03T03:43:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709437372,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1168' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:43:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 23E82D4185FA4B93A044BEC09DEE24DB Ref B: MNZ221060610031 Ref C: 2024-03-03T03:43:18Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/977fe24e-c3d0-4fa9-9898-2eed160623a3?api-version=2023-11-15&t=638450344996693336&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9MXleGFR4gR3YSg48l2pC0GgBw2RDb04AQeRwGw6NlZVe2VrLLggERiIACUXqXs764G2WFQ_B2VrOwgMx_pbW-hr9uVLhPvvpM2wlKCIZ7zqc_S1jGqgmLA_Kzhhmr4kAZHhcuXyCg4KJEXwAy20uBaLmdxhTdqm0Jb0pyvfyiGdFZyDyze1iKgbu4odnsSIt9O4AnkqXXC3r0h1JqKxz5WO_gj7ScWnD38b2eZ_8DPvUz-_lCqHfbzaGdcW10icZa1qTLxLkJKMyp295g877rXHWMSL7VwAJ1EMYrfdaV-8hmEjPed2v28WR_SMQm3boR3MXJNyGSTrVjY45yV3Q&h=42JprI25TNBcIMkrJblmI09R_04T1eb5_-LGBdXaHIg + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:48:19 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/977fe24e-c3d0-4fa9-9898-2eed160623a3?api-version=2023-11-15&t=638450344996693336&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=X-X5O6Rk5Zrr3M6KbxYlxq0imTPuNSnFPSM4BqfuD5WCbUDaancsW8aqvzpALJ3YQULjdZjwRJfgH655VOB0TS8lwWm4WhAxL_U3BwkNbtWC2MsVOU70xJe_QwJFEWopweqankAkrOyx_vT42VPlDOxBxiV3Mg02NRx-RovkKvmPltopNSZvxNZl9o9vYtE7YWOWq3yAX-z3rPjxCSvdTVQjKNEexVtciBbwYOOy2RMVgwOOdw0Q1ZPfgPaeE-uPo6xuiWaIh-TM2DG37SSJwrvz_Dniex3TG0X0qiqJZm5gW6QyWEwYLb-JPvDez-vMTe7OrZVZmGmDDj4ilIpsig&h=xk3kDJTV-ERxaiMKtUlEnm8asorpHnxaBEb0wTNdy_g + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 6B27BCDCEA0E4CCCADB4CADD514AFF9D Ref B: MNZ221060610023 Ref C: 2024-03-03T03:48:18Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/977fe24e-c3d0-4fa9-9898-2eed160623a3?api-version=2023-11-15&t=638450344996693336&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9MXleGFR4gR3YSg48l2pC0GgBw2RDb04AQeRwGw6NlZVe2VrLLggERiIACUXqXs764G2WFQ_B2VrOwgMx_pbW-hr9uVLhPvvpM2wlKCIZ7zqc_S1jGqgmLA_Kzhhmr4kAZHhcuXyCg4KJEXwAy20uBaLmdxhTdqm0Jb0pyvfyiGdFZyDyze1iKgbu4odnsSIt9O4AnkqXXC3r0h1JqKxz5WO_gj7ScWnD38b2eZ_8DPvUz-_lCqHfbzaGdcW10icZa1qTLxLkJKMyp295g877rXHWMSL7VwAJ1EMYrfdaV-8hmEjPed2v28WR_SMQm3boR3MXJNyGSTrVjY45yV3Q&h=42JprI25TNBcIMkrJblmI09R_04T1eb5_-LGBdXaHIg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:48:19 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D71306787CAA4ACCA7CEB4CD88F12401 Ref B: MNZ221060609053 Ref C: 2024-03-03T03:48:19Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/977fe24e-c3d0-4fa9-9898-2eed160623a3?api-version=2023-11-15&t=638450344996693336&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9MXleGFR4gR3YSg48l2pC0GgBw2RDb04AQeRwGw6NlZVe2VrLLggERiIACUXqXs764G2WFQ_B2VrOwgMx_pbW-hr9uVLhPvvpM2wlKCIZ7zqc_S1jGqgmLA_Kzhhmr4kAZHhcuXyCg4KJEXwAy20uBaLmdxhTdqm0Jb0pyvfyiGdFZyDyze1iKgbu4odnsSIt9O4AnkqXXC3r0h1JqKxz5WO_gj7ScWnD38b2eZ_8DPvUz-_lCqHfbzaGdcW10icZa1qTLxLkJKMyp295g877rXHWMSL7VwAJ1EMYrfdaV-8hmEjPed2v28WR_SMQm3boR3MXJNyGSTrVjY45yV3Q&h=42JprI25TNBcIMkrJblmI09R_04T1eb5_-LGBdXaHIg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:48:49 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F709A42D4ECB4293A396D464C7927A64 Ref B: MNZ221060608049 Ref C: 2024-03-03T03:48:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:48:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F84F9611B2DD4FF3A254E1186F480CAB Ref B: MNZ221060610021 Ref C: 2024-03-03T03:48:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:48:51Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:48:51Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 03:48:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 2073F987368448DF94BA68467698161B Ref B: MNZ221060609037 Ref C: 2024-03-03T03:48:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '732' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:48:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1478CEB161764110B1EBD289C71A506A Ref B: MNZ221060609011 Ref C: 2024-03-03T03:48:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3675' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:48:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3B642BF0823E439DAA68DF07A4EBB554 Ref B: MNZ221060610031 Ref C: 2024-03-03T03:48:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:48:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DE313DDE18574384B44783C4CAB7DE27 Ref B: MNZ221060609037 Ref C: 2024-03-03T03:48:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:48:59Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:48:59Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 03:49:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: AB52847B164B41D4AA2D2E8FFB617DA0 Ref B: MNZ221060608035 Ref C: 2024-03-03T03:48:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '732' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:49:04 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5D89BFF3C94341D2B23D1820B3462D47 Ref B: MNZ221060609039 Ref C: 2024-03-03T03:49:04Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3675' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:49:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E8C93E917E684038B10D2B381E76F9F2 Ref B: MNZ221060609007 Ref C: 2024-03-03T03:49:05Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", + "restoreTimestampInUtc": "2024-03-03T03:48:23.000Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + Content-Length: + - '349' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:49:07 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZamIBrXKDDO2tus4xr7dQWhzgrmRIolpSA5FMuv0wP8ypwjy_RqdjD2LfMLGk3_OroaloB-RCCfuxqnL-KzMELt0xNB4M9jhU1NPByESXR2xTwMkGAiHpBU_ZTZZs1WsJaWyEwJG-wgPn_tw9jSXsXn-WuOz_7YQXiYkZSKDahAgODiCCwIljV30lGUQzBTYQbJjmleFI1lhF6VTYcjOmK23M31ThRiq7OcxyrGs0xlhsmhjsP5915kd4iAlE6w95ETD55qr0QYtpAITKvBPreknhBOva6W-OrfIDE9uG8P2RGQYmMGuGmZvSQnE7kYAwQWXeGnww0mIJHa4xvoNUA&h=RYdSO0ju0NBVv23I_xtWXv1L-Gq_LdCdaUOZ-yQlCB8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 021CC4B2C1594BC5B5961927CFE26BA0 Ref B: MNZ221060610017 Ref C: 2024-03-03T03:49:06Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:49:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4EAE01F0CD7C46ACBE080C3B8246972B Ref B: MNZ221060610011 Ref C: 2024-03-03T03:49:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:49:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F7D0760B0BC44E18AEC237634DB40070 Ref B: MNZ221060609049 Ref C: 2024-03-03T03:49:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:50:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 26CD31D6314D429A9A65F328C84FA8D6 Ref B: MNZ221060608039 Ref C: 2024-03-03T03:50:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:50:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CF77CA9A36AE490380B509E29459AE09 Ref B: BL2AA2030104039 Ref C: 2024-03-03T03:50:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:51:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BAEB2A631EDC4FDDA027890855C1CD37 Ref B: BL2AA2030101025 Ref C: 2024-03-03T03:51:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:51:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A22AD0F8741E4205828EE9BF48F8B3AD Ref B: BL2AA2010204017 Ref C: 2024-03-03T03:51:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:52:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 64B6C647F703496CB3A795433943809B Ref B: BL2AA2030101045 Ref C: 2024-03-03T03:52:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:52:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E89EE7EAB42A466484CCA83F088ADE3D Ref B: MNZ221060609037 Ref C: 2024-03-03T03:52:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:53:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6B2AE4B4087646EA8849BCA21A2914C4 Ref B: MNZ221060609035 Ref C: 2024-03-03T03:53:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:53:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 66781A1C48AD45F290623A5DAB8DDF70 Ref B: MNZ221060609009 Ref C: 2024-03-03T03:53:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:54:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 73F360264C8A44DBB6AF63FEDBF5A0AD Ref B: BL2AA2010201009 Ref C: 2024-03-03T03:54:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:54:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E054B641F7A3403185825BC0CBFFD093 Ref B: MNZ221060610023 Ref C: 2024-03-03T03:54:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:55:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 24D8EE807F48490496052B68EA71424C Ref B: MNZ221060609053 Ref C: 2024-03-03T03:55:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:55:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B351E94BDBE84D16AA3E2A927E5D56A0 Ref B: MNZ221060609037 Ref C: 2024-03-03T03:55:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4CE02E7FEE2C4ACBBC9DC06654D0A10B Ref B: MNZ221060609011 Ref C: 2024-03-03T03:56:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709437933,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DFC084FEED4D409A98FCC801DE92A821 Ref B: MNZ221060610031 Ref C: 2024-03-03T03:56:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709437933,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1476' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2C9BD181787C4822B15D3B788E7C64A3 Ref B: MNZ221060608049 Ref C: 2024-03-03T03:56:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f631d92-d69a-42bc-8a8d-a089923718fc?api-version=2023-11-15&t=638450349728387260&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r88nXIkv3HOLWeHQYF9GAINZTdrJSsbEKWK-6F99lNzERT5093y0XEySQ_4XyoIJiOlG-v85hy3QB98yGPTDPXHK25pcytdGFLthMEuVlfNlNp65AgW21YoA-fJmUymgePT8VeKn3fzI56e1zsOYkPmRZWYHP7VbmwmT73VOuFWxrtwqLOlcNdesBS_lAjHdOhWTQyjlnabA8EWK-9Q1tcnpWvW1T3fOjQwHatBHdmBhJiB9zonoJO13T-uyfpL3aI9Xmtx2G0BA8o9WBxuEF6RwoPcTcQUUB8voInF45qi1eUOWCJAUy6WzSnD5KfRw_HydNfpqrZPnQB-e250AGg&h=yLMH-Tc-j3uheJlpH0h80rT5fwcCWrnFD-vLjRUe28A + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:12 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/9f631d92-d69a-42bc-8a8d-a089923718fc?api-version=2023-11-15&t=638450349728387260&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Ne8UTKv52HWGyf6m22n0Z866NanSaNQA_xcDY9y2ZU6Bb_uVCdpyCyYm3wbsJ-Fnlz6m4S6Hruuywdb41fp6vb9ZLzPPJmMCArdVphojPATACBgI-iJzCpDsOIjaqdoNpyLayu3h5dMu3-0r57K9Kk3hv_WHTf6dI9Vd9P_H8WT1mbLIkGyEgy9k8mcCEih4rYJIP02g9Af_PuMAfjAE4SKreNFr5Ypgtp3SmlJxSI0YXOna2680QmxpBi4Dod0WowU4b2NVAPK44xQVIqjclDm9jO3VNFTtb9OzlHb9fpUNk-Rul5hb9LR-s108ObTKt3LNYXMED4GViMNlb7bbNQ&h=H35XkqNYYb1fgZByYh3d9St1ocCdpHlQk_lWM9Ddlec + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: EA638DEA00CA474D91ABAA5A3FE0B86A Ref B: MNZ221060610021 Ref C: 2024-03-03T03:56:11Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f631d92-d69a-42bc-8a8d-a089923718fc?api-version=2023-11-15&t=638450349728387260&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r88nXIkv3HOLWeHQYF9GAINZTdrJSsbEKWK-6F99lNzERT5093y0XEySQ_4XyoIJiOlG-v85hy3QB98yGPTDPXHK25pcytdGFLthMEuVlfNlNp65AgW21YoA-fJmUymgePT8VeKn3fzI56e1zsOYkPmRZWYHP7VbmwmT73VOuFWxrtwqLOlcNdesBS_lAjHdOhWTQyjlnabA8EWK-9Q1tcnpWvW1T3fOjQwHatBHdmBhJiB9zonoJO13T-uyfpL3aI9Xmtx2G0BA8o9WBxuEF6RwoPcTcQUUB8voInF45qi1eUOWCJAUy6WzSnD5KfRw_HydNfpqrZPnQB-e250AGg&h=yLMH-Tc-j3uheJlpH0h80rT5fwcCWrnFD-vLjRUe28A + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B11F4D748F8C4691AE2E33C539EC47B9 Ref B: MNZ221060609037 Ref C: 2024-03-03T03:56:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f631d92-d69a-42bc-8a8d-a089923718fc?api-version=2023-11-15&t=638450349728387260&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r88nXIkv3HOLWeHQYF9GAINZTdrJSsbEKWK-6F99lNzERT5093y0XEySQ_4XyoIJiOlG-v85hy3QB98yGPTDPXHK25pcytdGFLthMEuVlfNlNp65AgW21YoA-fJmUymgePT8VeKn3fzI56e1zsOYkPmRZWYHP7VbmwmT73VOuFWxrtwqLOlcNdesBS_lAjHdOhWTQyjlnabA8EWK-9Q1tcnpWvW1T3fOjQwHatBHdmBhJiB9zonoJO13T-uyfpL3aI9Xmtx2G0BA8o9WBxuEF6RwoPcTcQUUB8voInF45qi1eUOWCJAUy6WzSnD5KfRw_HydNfpqrZPnQB-e250AGg&h=yLMH-Tc-j3uheJlpH0h80rT5fwcCWrnFD-vLjRUe28A + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2ED20AFC05404AE8A3328EFA35395511 Ref B: MNZ221060608035 Ref C: 2024-03-03T03:56:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0494DD5AE5C34F289994DED0AFA9723F Ref B: MNZ221060609039 Ref C: 2024-03-03T03:56:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:56:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:56:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 03:56:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: C51386BA293C4D2495166CA11A990319 Ref B: MNZ221060609007 Ref C: 2024-03-03T03:56:44Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1473' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A0FBBD5C76F74FE3820FE85817520824 Ref B: MNZ221060610017 Ref C: 2024-03-03T03:56:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:56:51Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:56:51Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 03:56:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: C2F65206B6EB483A9563AF15FACCCD40 Ref B: MNZ221060610011 Ref C: 2024-03-03T03:56:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1473' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2A905EA70C434DE9980522C5232216F5 Ref B: MNZ221060609049 Ref C: 2024-03-03T03:56:56Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", + "restoreTimestampInUtc": "2024-03-03T03:56:17.000Z"}, "createMode": "Restore"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + Content-Length: + - '334' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:58 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190917976&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=L48Xtjzn_t-eSSA3nUJnF1633glrpCwwjbJ05eGSNCvYkqGLikeX5Ca0EhJqjTCsIwdHsnuNgyKU1sVf0jWX1NKvzRFVoxy-pLNyQ66QkO7XQaK9ZoPhyG4gW9b4cxbTZYP_rud1BsDHVjmTWrAliSBz3z3TNMP8BsCS21-vZ9-TnEcLneubL4pTVda74XSBq3LvlLCQLSevQIcWS5XcBpxzYHo-2ZyR3L7MY7PULz719OcWvLtCW5rKGDn4cT2mn2StfD1ub6ykMfjk1W97Wi3Ht3YDEqXtDEolXWVL8sEpVNJ_LTea4scMO0aVClJBRyKgorAjv6d8kDwrWJrqpg&h=XStyaujra_PDL9q3b9Lls9Wa22DPGKsdzGMvgzuORVk + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: B31BEF91E878429F9F629749993611EC Ref B: MNZ221060608039 Ref C: 2024-03-03T03:56:58Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:56:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6C7C58E92AEE422F9D149401A63AAAD7 Ref B: MNZ221060610051 Ref C: 2024-03-03T03:56:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:57:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3F7D369461104A70B918FD07F5160DB7 Ref B: MNZ221060608049 Ref C: 2024-03-03T03:57:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:57:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DF99A49A75B34D6EB927AC9932C84F83 Ref B: MNZ221060608021 Ref C: 2024-03-03T03:57:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:58:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C6E704B1408C416AABFD790D6BC3EBAA Ref B: MNZ221060609037 Ref C: 2024-03-03T03:58:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:58:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1D37D29DC72C48698D1507785E077CD0 Ref B: MNZ221060609035 Ref C: 2024-03-03T03:58:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '500' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:58:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AC02633304B14694A90B6D035EEA2AB2 Ref B: MNZ221060608009 Ref C: 2024-03-03T03:59:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '500' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:59:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 33C43FD0E65F40E996F7281DF84CEE0C Ref B: MNZ221060610047 Ref C: 2024-03-03T03:59:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:59:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6137F354AB9E4158A9AB3D18DF8807CF Ref B: MNZ221060608039 Ref C: 2024-03-03T03:59:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:59:02Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:59:02Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 03:59:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 8BF391C18C76458B98B3B2947341AD3E Ref B: MNZ221060609029 Ref C: 2024-03-03T03:59:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2306' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:59:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3F26C45050FC4FADAF284B41289974D5 Ref B: BL2AA2030101025 Ref C: 2024-03-03T03:59:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/d2cdb731-0d0a-435d-88aa-a99bb0777f95","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"d2cdb731-0d0a-435d-88aa-a99bb0777f95","properties":{"resource":{"_rid":"prmnZQAAAA==","eventTimestamp":"2024-03-03T03:54:30Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/CWYYAOyc-Tk=:1709438178","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"CWYYAOyc-Tk=:1709438178","properties":{"resource":{"eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7926' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:59:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 24CFE425809B4BD28D814B003C2DE82D Ref B: BL2AA2010204017 Ref C: 2024-03-03T03:59:08Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", + "restoreTimestampInUtc": "2024-03-03T03:56:17.000Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + Content-Length: + - '349' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:59:11 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517178294&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=d4hLCOsszZ4FXTh78sFP5Vji6htzqIWxZVBWsmDh7hatJzCcPz-dz2sa6T4EbtWif1g_-K3rhVGc2C3qBChuwTvkDe_iZ5671Q2jjs00SoTIycrIvCQTVIXJSwuJjV94_x30QMD-mB0tY0g0MGSyLC15UXZnIpjukXc8kCbc75q-tqoV8sjeAFBwKYF-GlWTp42BYq6sY31ZmOXIe7b1YwCPtv_ZzPfHbkK1KHlm3fg_rArcoU4Ofezg5bFJ2Ma0wbbbQ-J_F3DDaiN2T0sUM2EtMSqkfuDFPhc3kg6Z9JU3MP_w9rOu87T9_4hhMG063lDu9cppeGSOHJ6WcaJyUQ&h=azeMyqz2Hi5xPvO5o3vCiVwE0UXaq9uDp_dsCWqJEug + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: F97DD62C8D9D4519A2922580EA9CEE91 Ref B: BL2AA2030104039 Ref C: 2024-03-03T03:59:10Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:59:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 55C49BC5B89F4AB7A9D1C61323F91AC3 Ref B: BL2AA2010203037 Ref C: 2024-03-03T03:59:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 03:59:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D17C96C56F474C018724730B6C758909 Ref B: MNZ221060609009 Ref C: 2024-03-03T03:59:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:00:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DD9EBFFB1A3344248FF86BF64FF0406F Ref B: BL2AA2030102023 Ref C: 2024-03-03T04:00:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:00:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DAB8858D50844BC6B07CB32DE0C86007 Ref B: BL2AA2030101045 Ref C: 2024-03-03T04:00:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:01:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2A9C9C02987B4387876248B7F3B09375 Ref B: MNZ221060609053 Ref C: 2024-03-03T04:01:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:01:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EB4A25C05AF94FD0A4B639366CC16DB8 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:01:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:02:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 43E6A4FFAFC846F0B598F077D5FEBCB6 Ref B: BL2AA2010205005 Ref C: 2024-03-03T04:02:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:02:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 454EE0AE20B9454EB3AAAE45593D09DC Ref B: MNZ221060610023 Ref C: 2024-03-03T04:02:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:03:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 14453AC805754E6789B38FC7F3B90355 Ref B: BL2AA2010201035 Ref C: 2024-03-03T04:03:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:03:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8F9FCA023DE54A5AA77273BC8C5F2E68 Ref B: MNZ221060609011 Ref C: 2024-03-03T04:03:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:04:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1DB3724D4B56406CB2A9252D1D3FE854 Ref B: MNZ221060610031 Ref C: 2024-03-03T04:04:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:04:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2E5F8FBC37E14254B31C733B12F1F074 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:04:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:05:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5F6B143E2AC84D649F37F6D69265A562 Ref B: MNZ221060609039 Ref C: 2024-03-03T04:05:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:05:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8DAD556F72404600BE6E5E86FFDE2458 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:05:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 44014B3AAF854FF4ABF509250769DBC6 Ref B: MNZ221060608049 Ref C: 2024-03-03T04:06:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709438532,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 190956CEB6394AC6AA90A134766E9BDD Ref B: MNZ221060610021 Ref C: 2024-03-03T04:06:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709438532,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1476' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 996AE80C239F4F5A931D1AC387C83DD7 Ref B: MNZ221060608035 Ref C: 2024-03-03T04:06:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:06:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 04:06:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 1480438324AA4904B9642E18BB0C6775 Ref B: MNZ221060609007 Ref C: 2024-03-03T04:06:16Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2306' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 17208645F1014F2B8CBC535A07CF9FC7 Ref B: MNZ221060610017 Ref C: 2024-03-03T04:06:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/036b4198-bc3a-4b1b-b177-7a58be573802","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"036b4198-bc3a-4b1b-b177-7a58be573802","properties":{"resource":{"_rid":"bx2sVgAAAA==","eventTimestamp":"2024-03-03T04:04:28Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709438532}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/d2cdb731-0d0a-435d-88aa-a99bb0777f95","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"d2cdb731-0d0a-435d-88aa-a99bb0777f95","properties":{"resource":{"_rid":"prmnZQAAAA==","eventTimestamp":"2024-03-03T03:54:30Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Collection + already exists. Only deleted resources can be restored within same account.","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/CWYYAOyc-Tk=:1709438178","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"CWYYAOyc-Tk=:1709438178","properties":{"resource":{"eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Collection + already exists. Only deleted resources can be restored within same account.","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '10299' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: ABEA0A13C09E4138B01A2F75AB40810D Ref B: MNZ221060610011 Ref C: 2024-03-03T04:06:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca01e8ad-6a26-4e29-978f-dec60599fdd8?api-version=2023-11-15&t=638450355847259187&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CSih-mY45kMGKaEikE91DqdnNsK0qMpbn4xacgpHZHwot2hyt1R6XclNMkQEO--dFqeOWWKdUE3Ixncpm8hMHHHNiu0Z_WVx2jxKu1X2GRkUe3DOqnLMtXir7Ax8zB2s6SgP4Db_GCsi5ZAogJkQQrNDx-hC5EnoADNv7rUsU3-wzCmFlVbIhtW13iVtSMMVzeKofnqaRpWQn66lXBU--7VYeBoXBvI2d0DnaZ2zNsl4NuRSRg6NGNJFIewGkwe9JxoMigyM-9cFRR6AWciNd7Ta4NKaG13lqzsjEi0LE1Yp18RSB3aHQiA5ZLDqOWBsGdKPcGVSP_9z_-bsEMnJMw&h=wvwGy-qGw39S_BRAkB5nIWTAL0lrhW1aPItT3V1BY-g + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:24 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/ca01e8ad-6a26-4e29-978f-dec60599fdd8?api-version=2023-11-15&t=638450355847259187&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tPzkIwSerkCsIDO5GtPPFRcVnXzoRe_a7k8Srz9RPW8Z9Z9C7hZ13ryJ5m8z6rdcBv-sUd0Ycyl5k2IHdMwb6kYCNQEFQNW4UM2HytjONB9ykCEg2mqn2srpUIySRA1Hs2y5rmaaDtDLciqrw81MxvWGdh9ocuGdJgYLlclmalqWon8oT5HwPBBKnM208yhfuAZg4KkgQAR3h-XVUG9KW_xc4L64RaZgck405Gsok4qqtwSqdsnLQ2ntX9bShLPHDJTGgMgBPH_Y89PP7G5_9kB_20bJlUmyvX9Wnr2FuXyV4ptA6XXfLaEBBSL5KWT1wvtXE_Ad5w7qU2pJg3EKtQ&h=A0VT_lTd5ElUkZG9C5BLqt012KlkALFo8NMMQZ4KyKc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: ABA8BA2AFCD44E56A930A127721FB51B Ref B: MNZ221060610023 Ref C: 2024-03-03T04:06:24Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca01e8ad-6a26-4e29-978f-dec60599fdd8?api-version=2023-11-15&t=638450355847259187&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CSih-mY45kMGKaEikE91DqdnNsK0qMpbn4xacgpHZHwot2hyt1R6XclNMkQEO--dFqeOWWKdUE3Ixncpm8hMHHHNiu0Z_WVx2jxKu1X2GRkUe3DOqnLMtXir7Ax8zB2s6SgP4Db_GCsi5ZAogJkQQrNDx-hC5EnoADNv7rUsU3-wzCmFlVbIhtW13iVtSMMVzeKofnqaRpWQn66lXBU--7VYeBoXBvI2d0DnaZ2zNsl4NuRSRg6NGNJFIewGkwe9JxoMigyM-9cFRR6AWciNd7Ta4NKaG13lqzsjEi0LE1Yp18RSB3aHQiA5ZLDqOWBsGdKPcGVSP_9z_-bsEMnJMw&h=wvwGy-qGw39S_BRAkB5nIWTAL0lrhW1aPItT3V1BY-g + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 631E9F4A58294CAFA7FF428260FEFBF3 Ref B: MNZ221060608039 Ref C: 2024-03-03T04:06:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca01e8ad-6a26-4e29-978f-dec60599fdd8?api-version=2023-11-15&t=638450355847259187&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CSih-mY45kMGKaEikE91DqdnNsK0qMpbn4xacgpHZHwot2hyt1R6XclNMkQEO--dFqeOWWKdUE3Ixncpm8hMHHHNiu0Z_WVx2jxKu1X2GRkUe3DOqnLMtXir7Ax8zB2s6SgP4Db_GCsi5ZAogJkQQrNDx-hC5EnoADNv7rUsU3-wzCmFlVbIhtW13iVtSMMVzeKofnqaRpWQn66lXBU--7VYeBoXBvI2d0DnaZ2zNsl4NuRSRg6NGNJFIewGkwe9JxoMigyM-9cFRR6AWciNd7Ta4NKaG13lqzsjEi0LE1Yp18RSB3aHQiA5ZLDqOWBsGdKPcGVSP_9z_-bsEMnJMw&h=wvwGy-qGw39S_BRAkB5nIWTAL0lrhW1aPItT3V1BY-g + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 45A55B918C824AE18152641122610AB5 Ref B: MNZ221060609053 Ref C: 2024-03-03T04:06:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:06:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4F7806CACFA14F449AE3BB67C0CD6833 Ref B: BL2AA2030104039 Ref C: 2024-03-03T04:06:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:06:56Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:06:56Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 04:07:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: FB48B57AA2BA49FBAF5445310C1A6A09 Ref B: BL2AA2030101025 Ref C: 2024-03-03T04:06:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/ee846b4a-fff9-4ac3-bd2c-bd09089679e6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"ee846b4a-fff9-4ac3-bd2c-bd09089679e6","properties":{"resource":{"_rid":"5ORaBAAAAA==","eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2937' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:07:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9A1D0DF5649444BBA2BFD20075F136E7 Ref B: BL2AA2010204017 Ref C: 2024-03-03T04:07:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:07:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:07:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 04:07:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 460B2D05F7464492BD955628FF0C08CF Ref B: BL2AA2030101045 Ref C: 2024-03-03T04:07:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/ee846b4a-fff9-4ac3-bd2c-bd09089679e6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"ee846b4a-fff9-4ac3-bd2c-bd09089679e6","properties":{"resource":{"_rid":"5ORaBAAAAA==","eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2937' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:07:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9CEB50A1BC3E4EA4842BB2506E1E8654 Ref B: BL2AA2030102023 Ref C: 2024-03-03T04:07:08Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", + "restoreTimestampInUtc": "2024-03-03T04:06:28.000Z"}, "createMode": "Restore"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + Content-Length: + - '334' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:07:09 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301834042&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iTH43p-b14bzLsMaxznV1bmx4hUGODtuO537ctWy_En5H6TD5DSfE_hR3qso2UCroOeETjM_q1gM4V8KpApi6qrZK2S9WlM-rJQmObsBLgLBPuyHGNr18dR4hj6s5929dHzgZQLJIazf8Gl73FAarZrYpuuGnPG6UwqkM99wiIHfCZcSdRWBeebcD--J7FfESWxeo5zKlseHYZOVAeP_2PS9UlrEHPBdPYrePC8cnmpr9ZHoi8XzQRtg5dlcAyolUVtUZm2Ig9u4t4LbgKNo2vHDIh9URn_owcLNG9UXHU0Zghf8aVfbah8qH5s4R72p-n8F1whLuxTK_w3nhWrXrA&h=YvktcO6aBqUmo1HqsHWJ3Ve1lTPIFLRA1lq4_ErY77s + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: D29B3BDAEE3F4B01988ABF633CDCB04A Ref B: BL2AA2010203037 Ref C: 2024-03-03T04:07:09Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:07:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 36D6FFB781B14A0F98F04DD3ABEA0266 Ref B: BL2AA2010204035 Ref C: 2024-03-03T04:07:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:07:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4ADD8F43134C4920907F8608EBFEFCEB Ref B: MNZ221060609037 Ref C: 2024-03-03T04:07:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:08:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 422AF7D900324387A8839F0CEA9EAF3E Ref B: MNZ221060609009 Ref C: 2024-03-03T04:08:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:08:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4A52C701FC434BCA9B6669B2BF874508 Ref B: MNZ221060610023 Ref C: 2024-03-03T04:08:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E71596A6C2FF45AAB91AB429ABD6DD82 Ref B: MNZ221060609035 Ref C: 2024-03-03T04:09:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000bb03-0000-0700-0000-65e3f7950000\"","_colls":"colls/","_users":"users/","_ts":1709438869}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '500' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C4A520F2B55E48CBBFE4074F008AAC0B Ref B: MNZ221060610051 Ref C: 2024-03-03T04:09:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000bb03-0000-0700-0000-65e3f7950000\"","_colls":"colls/","_users":"users/","_ts":1709438869}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '500' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DE80D50469C748A3AD93379D5630F8C4 Ref B: MNZ221060608049 Ref C: 2024-03-03T04:09:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:09: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"}]}},{"name":"e84733a9-ee18-456c-b12b-1d37e542608b","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:09:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:09:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 04:09:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 99CD01123B6B4B18B65C1C11251D63A2 Ref B: MNZ221060608021 Ref C: 2024-03-03T04:09:12Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/ee846b4a-fff9-4ac3-bd2c-bd09089679e6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"ee846b4a-fff9-4ac3-bd2c-bd09089679e6","properties":{"resource":{"_rid":"5ORaBAAAAA==","eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/9e7e07b5-2fed-4547-9f97-8995e6ab9d5c","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"9e7e07b5-2fed-4547-9f97-8995e6ab9d5c","properties":{"resource":{"_rid":"RDjkfwAAAA==","eventTimestamp":"2024-03-03T04:07:49Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3880' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B8FD945283C0421CBE71CF931F542F83 Ref B: BL2AA2010205005 Ref C: 2024-03-03T04:09:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:09:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:09:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '400295' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 04:09:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 131FCFA9DDD647EDB523F2C93DC18B96 Ref B: BL2AA2030104053 Ref C: 2024-03-03T04:09:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/ee846b4a-fff9-4ac3-bd2c-bd09089679e6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"ee846b4a-fff9-4ac3-bd2c-bd09089679e6","properties":{"resource":{"_rid":"5ORaBAAAAA==","eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/9e7e07b5-2fed-4547-9f97-8995e6ab9d5c","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"9e7e07b5-2fed-4547-9f97-8995e6ab9d5c","properties":{"resource":{"_rid":"RDjkfwAAAA==","eventTimestamp":"2024-03-03T04:07:49Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3880' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1F1096006E0D403FA82672E0F79F4B94 Ref B: BL2AA2010201047 Ref C: 2024-03-03T04:09:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/036b4198-bc3a-4b1b-b177-7a58be573802","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"036b4198-bc3a-4b1b-b177-7a58be573802","properties":{"resource":{"_rid":"bx2sVgAAAA==","eventTimestamp":"2024-03-03T04:04:28Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709438532}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/d2cdb731-0d0a-435d-88aa-a99bb0777f95","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"d2cdb731-0d0a-435d-88aa-a99bb0777f95","properties":{"resource":{"_rid":"prmnZQAAAA==","eventTimestamp":"2024-03-03T03:54:30Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/CWYYAOyc-Tk=:1709438178","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"CWYYAOyc-Tk=:1709438178","properties":{"resource":{"eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/CWYYAOyc-Tk=:1709438789","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"CWYYAOyc-Tk=:1709438789","properties":{"resource":{"eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709438532}}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12177' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 84C1821C8A8142AEB22AD0FCCE5E097C Ref B: BL2AA2030104039 Ref C: 2024-03-03T04:09:25Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", + "restoreTimestampInUtc": "2024-03-03T04:06:28.000Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + Content-Length: + - '349' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:27 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679844754&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=evm5VyPfsDBX9Dj7Kg3t6LagSSZoDsZave-8QNqlOoAEqEDIBQ1s61WLuiOiOMH7i2NtR3lpUUT3EE21qc0ztLxvAWD22BOcfFWdpbOqwIlfXV-tNe9nz0FmAfOL9YtCmYAi2HXl3mXaYzIid2SHxlJsV4qVId4EqclylxbcIwKQyYwoJQlDtFLqncGIRc265W-wC-xP03ZVmhGt6_LoRd1s2DNwzaf31JcaiLFL4nwwRi_VfBG2uXUnkcMzTdMxsHfbV8oBnR0s6nNr9AX1Cu2euCZ4oRZOaXnJ4icMvKbUYNHPOIWv1Boc3b2uHBPKCUTIK6SMlVVMIkt9Mv5jUQ&h=SVcBx594QJp8lP9415mFCRm7ZrdWEnYk3PVVa-001l8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: F260E3AB7AFC4914AC7A4B63C1801D17 Ref B: BL2AA2010201035 Ref C: 2024-03-03T04:09:26Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4766E3505AA34D2B841DA47B42634A98 Ref B: BL2AA2030101051 Ref C: 2024-03-03T04:09:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:09:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E9CC440ED021421189AEF5383976D51B Ref B: BL2AA2010201035 Ref C: 2024-03-03T04:09:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:10:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DCE946012FCC449CABDCCC602DFE50C0 Ref B: MNZ221060609011 Ref C: 2024-03-03T04:10:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:10:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8C0C4567F81A4C5EB727BAD8B2FF9C71 Ref B: MNZ221060610031 Ref C: 2024-03-03T04:10:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:11:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1002AC4046134367BE27A0F51797036D Ref B: MNZ221060609037 Ref C: 2024-03-03T04:11:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:11:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D8DF2CA7F8F6452D8507F3FFF5652271 Ref B: MNZ221060608035 Ref C: 2024-03-03T04:11:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:12:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A15E474B86D642F5BE3A081812BC97F1 Ref B: MNZ221060609053 Ref C: 2024-03-03T04:12:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:12:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8CA315E1FA2B49B4AEC702BAA3DF0E2E Ref B: MNZ221060609039 Ref C: 2024-03-03T04:12:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:13:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6A80EA9A5E1A4912AF80178F409EDD79 Ref B: BL2AA2030104039 Ref C: 2024-03-03T04:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:14:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 620DB52ED9AE49F1BFE4577632912818 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:14:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:14:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 57B0D46C138A4D83BB9DD89EFA5319BE Ref B: MNZ221060610023 Ref C: 2024-03-03T04:14:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:15:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 524AF6B72303450F9F59FB21C7F118B5 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:15:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:15:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 85F7F333339842FF8C1674AB91EAA01C Ref B: MNZ221060608049 Ref C: 2024-03-03T04:15:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:16:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C7B9E0B3C905449B9A0499886DC3C6A9 Ref B: BL2AA2030101025 Ref C: 2024-03-03T04:16:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:16:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 445A365F0B284A2A8EC8D36788A12291 Ref B: MNZ221060609011 Ref C: 2024-03-03T04:16:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"ce8ea308-d913-11ee-9dc3-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T04:06:28+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709439146,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000c103-0000-0700-0000-65e3f8aa0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:16:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5C13D358664C4978B2016336555A14A4 Ref B: MNZ221060610021 Ref C: 2024-03-03T04:16:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"ce8ea308-d913-11ee-9dc3-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T04:06:28+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709439146,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000c103-0000-0700-0000-65e3f8aa0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1476' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:16:33 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F473C8BF9C674CAB905050294AABA4B9 Ref B: MNZ221060610031 Ref C: 2024-03-03T04:16:33Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"ce8ea308-d913-11ee-9dc3-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T04:06:28+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709439146,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000c103-0000-0700-0000-65e3f8aa0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 04:16:33 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E28005539696450AB933BFFE381EF22E Ref B: MNZ221060609007 Ref C: 2024-03-03T04:16:34Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py index 53fdfcef007..40f22c68584 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py @@ -642,3 +642,136 @@ def test_cosmosdb_mongodb_shared_database_prov_collection_restore(self, resource self.cmd('az cosmosdb mongodb database delete -g {rg} -a {acc} -n {db_name} --yes') database_list = self.cmd('az cosmosdb mongodb database list -g {rg} -a {acc}').get_output_in_json() assert len(database_list) == 0 + + + # InAccount No timestamp restore validation + @AllowLargeResponse() + @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt') + def test_cosmosdb_sql_normal_database_prov_container_restore_nt(self, resource_group): + # Step 1: Initialize variables + db_name = self.create_random_name(prefix='cli', length=15) + ctn_name = self.create_random_name(prefix='cli', length=15) + partition_key = "/thePartitionKey" + unique_key_policy = '"{\\"uniqueKeys\\": [{\\"paths\\": [\\"/path/to/key1\\"]}, {\\"paths\\": [\\"/path/to/key2\\"]}]}"' + conflict_resolution_policy = '"{\\"mode\\": \\"lastWriterWins\\", \\"conflictResolutionPath\\": \\"/path\\"}"' + indexing = '"{\\"indexingMode\\": \\"consistent\\", \\"automatic\\": true, \\"includedPaths\\": [{\\"path\\": \\"/*\\"}], \\"excludedPaths\\": [{\\"path\\": \\"/headquarters/employees/?\\"}]}"' + location = "WestUS" + + self.kwargs.update({ + 'acc': self.create_random_name(prefix='ntbrcli', length=15), + 'db_name': db_name, + 'ctn_name': ctn_name, + 'part': partition_key, + 'unique_key': unique_key_policy, + "conflict_resolution": conflict_resolution_policy, + "indexing": indexing, + 'loc': location + }) + + # Step 2: Create CosmosDB account + logger.info("# Step 2: Create CosmosDB account") + self.cmd('az cosmosdb create -n {acc} -g {rg} --backup-policy-type Continuous --locations regionName={loc}') + + # Step 3: Create SQL database + logger.info("# Step 3: Create SQL database") + self.cmd('az cosmosdb sql database create -g {rg} -a {acc} -n {db_name}') + + # Step 4: Create SQL container + logger.info("# Step 4: Create SQL container") + container_create = self.cmd('az cosmosdb sql container create -g {rg} -a {acc} -d {db_name} -n {ctn_name} -p {part} --unique-key-policy {unique_key} --conflict-resolution-policy {conflict_resolution} --idx {indexing}').get_output_in_json() + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 1 + + # Step 5: Sleep for a while + logger.info("# Step 5: Sleep for 5 minutes") + import time + time.sleep(300) + + # Step 6: Remove container + logger.info("# Step 6: Remove container") + self.cmd('az cosmosdb sql container delete -g {rg} -a {acc} -d {db_name} -n {ctn_name} --yes') + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 0 + + # Step 7: Restore non-existent container - expect failure + logger.info("# Step 7: Restore non-existent container - expect failure") + invalid_ctn_string = "invalidcontainer" + self.kwargs.update({ + 'invalid_ctn_name': invalid_ctn_string + }) + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {invalid_ctn_name}')) + + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 0 + + # Step 8: Restore valid container + logger.info("# Step 8: Restore valid container") + self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}') + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 1 + + # Step 9: Delete database + logger.info("# Step 9: Delete database") + self.cmd('az cosmosdb sql database delete -g {rg} -a {acc} -n {db_name} --yes') + database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() + assert len(database_list) == 0 + + # Step 10: Restore container expect failure (database is offline) + logger.info("# Step 10: Restore container - expect failure (database is offline)") + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}')) + + # Step 11: Restore database + logger.info("# Step 11: Restore database") + self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}') + database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() + assert database_restore["name"] == db_name + + # Step 12: Validate container does not exist (database just restored) + logger.info("# Step 12: Validate container does not exist (database just restored)") + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 0 + + # Step 13: Restore container + logger.info("# Step 13: Restore container") + self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}') + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 1 + + # Step 14: Restore again expect failure (container already online) + logger.info("# Step 14: Restore again - expect failure (container already online)") + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}')) + + # Step 15: Delete database + logger.info("# Step 15: Delete database") + self.cmd('az cosmosdb sql database delete -g {rg} -a {acc} -n {db_name} --yes') + database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() + assert len(database_list) == 0 + + # Step 16: Restore non-existent database - expect failure + logger.info("# Step 16: Restore non-existent database - expect failure") + invalid_db_name_string = "invalid_database" + self.kwargs.update({ + 'invalid_db_name': invalid_db_name_string + }) + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {invalid_db_name}')) + + # Step 17: Restore database + logger.info("# Step 17: Restore database") + self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}') + database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() + assert database_restore["name"] == db_name + + # Step 18: Restore database again - expect failure (database already restored) + logger.info("# Step 18: Restore database again - expect failure (database already restored)") + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}')) + + # Step 19: Restore container + logger.info("# Step 19: Restore container") + self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}') + container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() + assert len(container_list) == 1 + + # Step 20: Validate container exists + logger.info("# Step 20: Validate container exists") + container_show = self.cmd('az cosmosdb sql container show -g {rg} -a {acc} -d {db_name} -n {ctn_name}').get_output_in_json() + assert container_show["name"] == ctn_name From 97f1003a22132c23020ebb404921645fcdc88554 Mon Sep 17 00:00:00 2001 From: Vivek Agarwal Date: Sat, 2 Mar 2024 21:46:08 -0800 Subject: [PATCH 35/37] fixing imports --- .../tests/latest/test_cosmosdb-InAccountRestore_scenario.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py index 40f22c68584..5690d4f1cee 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py @@ -8,12 +8,15 @@ from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) -from datetime import datetime +from datetime import datetime, timedelta, timezone import datetime +from knack.log import get_logger TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) +logger = get_logger(__name__) + class Cosmosdb_previewInAccountRestoreScenarioTest(ScenarioTest): #sql From e24067c09dae6830147b3e152bfc435646bc6cbc Mon Sep 17 00:00:00 2001 From: "Vivek Agarwal (from Dev Box)" Date: Sun, 3 Mar 2024 13:06:01 -0800 Subject: [PATCH 36/37] fixing test --- ...test_cosmosdb-InAccountRestore_scenario.py | 97 +++++++++++-------- 1 file changed, 56 insertions(+), 41 deletions(-) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py index a9c7244dce5..8796212c78b 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-InAccountRestore_scenario.py @@ -8,12 +8,15 @@ from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) -from datetime import datetime +from datetime import datetime, timedelta, timezone import datetime +from knack.log import get_logger TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) +logger = get_logger(__name__) + class Cosmosdb_previewInAccountRestoreScenarioTest(ScenarioTest): #sql @@ -653,10 +656,11 @@ def test_coding(self, resource_group): #assert len(container_restore) == 0 - # InAccount No timestamp restore validation + # InAccount No timestamp restore validation @AllowLargeResponse() @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt') def test_cosmosdb_sql_normal_database_prov_container_restore_nt(self, resource_group): + # Step 1: Initialize variables db_name = self.create_random_name(prefix='cli', length=15) ctn_name = self.create_random_name(prefix='cli', length=15) partition_key = "/thePartitionKey" @@ -676,100 +680,111 @@ def test_cosmosdb_sql_normal_database_prov_container_restore_nt(self, resource_g 'loc': location }) + # Step 2: Create CosmosDB account + logger.info("# Step 2: Create CosmosDB account") self.cmd('az cosmosdb create -n {acc} -g {rg} --backup-policy-type Continuous --locations regionName={loc}') + + # Step 3: Create SQL database + logger.info("# Step 3: Create SQL database") self.cmd('az cosmosdb sql database create -g {rg} -a {acc} -n {db_name}') + # Step 4: Create SQL container + logger.info("# Step 4: Create SQL container") container_create = self.cmd('az cosmosdb sql container create -g {rg} -a {acc} -d {db_name} -n {ctn_name} -p {part} --unique-key-policy {unique_key} --conflict-resolution-policy {conflict_resolution} --idx {indexing}').get_output_in_json() - container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() assert len(container_list) == 1 - restore_ts_string = datetime.utcnow().isoformat() - - self.kwargs.update({ - 'rts': restore_ts_string - }) + # Step 5: Sleep for a while + logger.info("# Step 5: Sleep for 5 minutes") import time time.sleep(300) - - # remove container + + # Step 6: Remove container + logger.info("# Step 6: Remove container") self.cmd('az cosmosdb sql container delete -g {rg} -a {acc} -d {db_name} -n {ctn_name} --yes') container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() assert len(container_list) == 0 - - # 6. Restore non-existent container - expect failure - invalid_ctn_string = datetime.utcnow().isoformat() + + # Step 7: Restore non-existent container - expect failure + logger.info("# Step 7: Restore non-existent container - expect failure") + invalid_ctn_string = "invalidcontainer" self.kwargs.update({ 'invalid_ctn_name': invalid_ctn_string }) - - # restore invalid container self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {invalid_ctn_name}')) container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() assert len(container_list) == 0 - # restore valid container + # Step 8: Restore valid container + logger.info("# Step 8: Restore valid container") self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}') container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() assert len(container_list) == 1 - - # delete database + + # Step 9: Delete database + logger.info("# Step 9: Delete database") self.cmd('az cosmosdb sql database delete -g {rg} -a {acc} -n {db_name} --yes') database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() assert len(database_list) == 0 - # restore container expect failure - # with deleted database collection is non-existent - container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() - assert len(container_list) == 0 - # restore when database is offline + # Step 10: Restore container expect failure (database is offline) + logger.info("# Step 10: Restore container - expect failure (database is offline)") self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}')) - container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() - assert len(container_list) == 0 - # restore database + # Step 11: Restore database + logger.info("# Step 11: Restore database") self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}') - database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() assert database_restore["name"] == db_name + # Step 12: Validate container does not exist (database just restored) + logger.info("# Step 12: Validate container does not exist (database just restored)") container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() assert len(container_list) == 0 - # restore container + # Step 13: Restore container + logger.info("# Step 13: Restore container") self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}') container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() assert len(container_list) == 1 - - # restore again expect failure(already container online) + + # Step 14: Restore again expect failure (container already online) + logger.info("# Step 14: Restore again - expect failure (container already online)") self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}')) - - # delete database + + # Step 15: Delete database + logger.info("# Step 15: Delete database") self.cmd('az cosmosdb sql database delete -g {rg} -a {acc} -n {db_name} --yes') database_list = self.cmd('az cosmosdb sql database list -g {rg} -a {acc}').get_output_in_json() assert len(database_list) == 0 - - # 6. Restore non-existent database - expect failure + + # Step 16: Restore non-existent database - expect failure + logger.info("# Step 16: Restore non-existent database - expect failure") invalid_db_name_string = "invalid_database" self.kwargs.update({ 'invalid_db_name': invalid_db_name_string }) - self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {invalid_db_name}')) - - # restore database + + # Step 17: Restore database + logger.info("# Step 17: Restore database") self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}') database_restore = self.cmd('az cosmosdb sql database show -g {rg} -a {acc} -n {db_name}').get_output_in_json() assert database_restore["name"] == db_name - - # restore database again - self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}')) - self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name} --restore-timestamp {rts}') + # Step 18: Restore database again - expect failure (database already restored) + logger.info("# Step 18: Restore database again - expect failure (database already restored)") + self.assertRaises(Exception, lambda: self.cmd('az cosmosdb sql database restore -g {rg} -a {acc} -n {db_name}')) + # Step 19: Restore container + logger.info("# Step 19: Restore container") + self.cmd('az cosmosdb sql container restore -g {rg} -a {acc} -d {db_name} -n {ctn_name}') container_list = self.cmd('az cosmosdb sql container list -g {rg} -a {acc} -d {db_name}').get_output_in_json() assert len(container_list) == 1 + # Step 20: Validate container exists + logger.info("# Step 20: Validate container exists") container_show = self.cmd('az cosmosdb sql container show -g {rg} -a {acc} -d {db_name} -n {ctn_name}').get_output_in_json() assert container_show["name"] == ctn_name + From ea5c847c2a456a53915c70ca296620f08936149b Mon Sep 17 00:00:00 2001 From: "Vivek Agarwal (from Dev Box)" Date: Sun, 3 Mar 2024 20:31:47 -0800 Subject: [PATCH 37/37] fixing recordings --- .../test_cosmosdb_burst_capacity.yaml | 2005 +++ .../test_cosmosdb_copy_cassandra.yaml | 891 ++ .../recordings/test_cosmosdb_copy_mongo.yaml | 891 ++ .../latest/recordings/test_cosmosdb_dts.yaml | 891 ++ ...le_per_region_per_partition_autoscale.yaml | 2007 +++ .../test_cosmosdb_gremlin_database.yaml | 1110 ++ ...smosdb_gremlin_database_graph_restore.yaml | 6081 ++++++++ .../test_cosmosdb_gremlin_graph.yaml | 1536 ++ .../test_cosmosdb_mongodb_collection.yaml | 1206 ++ .../test_cosmosdb_mongodb_database.yaml | 1063 ++ ...rmal_database_prov_collection_restore.yaml | 8258 +++++++++++ ...ared_database_prov_collection_restore.yaml | 8340 +++++++++++ .../test_cosmosdb_sql_container.yaml | 1252 ++ .../test_cosmosdb_sql_database.yaml | 1108 ++ ...ormal_database_prov_container_restore.yaml | 8356 +++++++++++ ...al_database_prov_container_restore_nt.yaml | 12027 +++++++++------- ..._cosmosdb_sql_normal_database_restore.yaml | 3031 ++++ ...hared_database_prov_container_restore.yaml | 8759 +++++++++++ ..._cosmosdb_sql_shared_database_restore.yaml | 5760 ++++++++ .../recordings/test_cosmosdb_table.yaml | 3891 +++++ ...cassandra_cluster_without_datacenters.yaml | 1806 +++ .../test_managed_cassandra_verify_lists.yaml | 4427 ++++++ 22 files changed, 79158 insertions(+), 5538 deletions(-) create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_burst_capacity.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_dts.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database_graph_restore.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_normal_database_prov_collection_restore.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_database_prov_collection_restore.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_restore.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_prov_container_restore.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml create mode 100644 src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_burst_capacity.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_burst_capacity.yaml new file mode 100644 index 00000000000..3741d563548 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_burst_capacity.yaml @@ -0,0 +1,2005 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cosmosTest?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest","name":"cosmosTest","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:40:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 981116B55BFC49FABBC091D5240D6C0C Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:40:07Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "centralus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "centralus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "enableBurstCapacity": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '279' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:40:12.5753685Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:40:12.5753685Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:40:12.5753685Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:40:12.5753685Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:40:12.5753685Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c07bda58-8a1f-4375-ad5c-97380415dc32?api-version=2024-02-15-preview&t=638450988140168187&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Pu5jjOiAoNWeDVdkmsqqwoXQ5j3IO1ymOvV6NCxJBLpwSqjKB7MgRDYDlQiuHDzG0L5RbmIHGEJ0AsQZ6glJAKBDaNceG43Gggq19hUF--Np6_42glGz20v8lWOom6YhxX5xaINDhzSjBe_HzMlt--T5RoMzwRNA_yRZRJFf8GW7cFI7GYo8fNXw6xNAqBz2XndiBBlk9EOUo75Yiqb7Kv_Qjm6rx55NZ96hQNbiLTVN1vKE4rJ__4ETVkBtU76fTVJoUGWlsE9XLkrIf2lJ1QuE67Qr_mHL6jqD1lAFxmCbyGh5B0qq0stKpZnlFKOxGKSnO_fCUFEIklTQ2MuGpw&h=jam5Pc96BnchBcHV_Y_Mj71J27jh9weVtAQJrmVwqBk + cache-control: + - no-store, no-cache + content-length: + - '2791' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:13 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813/operationResults/c07bda58-8a1f-4375-ad5c-97380415dc32?api-version=2024-02-15-preview&t=638450988140324444&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=inKpd_2iEpU0lWEgUkblqTyqmuvFz5nEP61A3xi8i6unSZC6sfNFx-haz5Q4GJOBKvc5aAuVaCJYfGtdj08-1fguqUPrwILN49e7CQG6ZbNcOUT8D7atIswSTLQeEgk0xh99nPtCR8u-5SDI0RZN6js4fAPB24HX_-EeelPiDbeygbtexYAqa3YE8zsvKyKUfxX2PQGIPXp3geSQgl3WD8tF_D6G21b3vVhJFVyJ2BkJkjvTtgXA6qnFoTvtqQlJEnc5M596txgIu4zoqyw0uQMAYWKyK5-Zndf2RXadViDRFSbXaj6dBzgB2UGchfQrxe5vvmMuqWx2nzWKL4R48A&h=OK-unWjnCN1yPVeFOanMJrxpCCnGr-_q7g8-Yc7DZc4 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: F796C4AB53B1496B89D9631C271EA214 Ref B: BL2AA2030101047 Ref C: 2024-03-03T21:40:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c07bda58-8a1f-4375-ad5c-97380415dc32?api-version=2024-02-15-preview&t=638450988140168187&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Pu5jjOiAoNWeDVdkmsqqwoXQ5j3IO1ymOvV6NCxJBLpwSqjKB7MgRDYDlQiuHDzG0L5RbmIHGEJ0AsQZ6glJAKBDaNceG43Gggq19hUF--Np6_42glGz20v8lWOom6YhxX5xaINDhzSjBe_HzMlt--T5RoMzwRNA_yRZRJFf8GW7cFI7GYo8fNXw6xNAqBz2XndiBBlk9EOUo75Yiqb7Kv_Qjm6rx55NZ96hQNbiLTVN1vKE4rJ__4ETVkBtU76fTVJoUGWlsE9XLkrIf2lJ1QuE67Qr_mHL6jqD1lAFxmCbyGh5B0qq0stKpZnlFKOxGKSnO_fCUFEIklTQ2MuGpw&h=jam5Pc96BnchBcHV_Y_Mj71J27jh9weVtAQJrmVwqBk + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F502915C47334513A843A1CC0BE72711 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:40:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c07bda58-8a1f-4375-ad5c-97380415dc32?api-version=2024-02-15-preview&t=638450988140168187&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Pu5jjOiAoNWeDVdkmsqqwoXQ5j3IO1ymOvV6NCxJBLpwSqjKB7MgRDYDlQiuHDzG0L5RbmIHGEJ0AsQZ6glJAKBDaNceG43Gggq19hUF--Np6_42glGz20v8lWOom6YhxX5xaINDhzSjBe_HzMlt--T5RoMzwRNA_yRZRJFf8GW7cFI7GYo8fNXw6xNAqBz2XndiBBlk9EOUo75Yiqb7Kv_Qjm6rx55NZ96hQNbiLTVN1vKE4rJ__4ETVkBtU76fTVJoUGWlsE9XLkrIf2lJ1QuE67Qr_mHL6jqD1lAFxmCbyGh5B0qq0stKpZnlFKOxGKSnO_fCUFEIklTQ2MuGpw&h=jam5Pc96BnchBcHV_Y_Mj71J27jh9weVtAQJrmVwqBk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5D1130911C2D4D83A6CACA27861FF254 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:40:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c07bda58-8a1f-4375-ad5c-97380415dc32?api-version=2024-02-15-preview&t=638450988140168187&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Pu5jjOiAoNWeDVdkmsqqwoXQ5j3IO1ymOvV6NCxJBLpwSqjKB7MgRDYDlQiuHDzG0L5RbmIHGEJ0AsQZ6glJAKBDaNceG43Gggq19hUF--Np6_42glGz20v8lWOom6YhxX5xaINDhzSjBe_HzMlt--T5RoMzwRNA_yRZRJFf8GW7cFI7GYo8fNXw6xNAqBz2XndiBBlk9EOUo75Yiqb7Kv_Qjm6rx55NZ96hQNbiLTVN1vKE4rJ__4ETVkBtU76fTVJoUGWlsE9XLkrIf2lJ1QuE67Qr_mHL6jqD1lAFxmCbyGh5B0qq0stKpZnlFKOxGKSnO_fCUFEIklTQ2MuGpw&h=jam5Pc96BnchBcHV_Y_Mj71J27jh9weVtAQJrmVwqBk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 272684CBE0E340059EE42F38AE08860F Ref B: BL2AA2030103049 Ref C: 2024-03-03T21:41:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c07bda58-8a1f-4375-ad5c-97380415dc32?api-version=2024-02-15-preview&t=638450988140168187&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Pu5jjOiAoNWeDVdkmsqqwoXQ5j3IO1ymOvV6NCxJBLpwSqjKB7MgRDYDlQiuHDzG0L5RbmIHGEJ0AsQZ6glJAKBDaNceG43Gggq19hUF--Np6_42glGz20v8lWOom6YhxX5xaINDhzSjBe_HzMlt--T5RoMzwRNA_yRZRJFf8GW7cFI7GYo8fNXw6xNAqBz2XndiBBlk9EOUo75Yiqb7Kv_Qjm6rx55NZ96hQNbiLTVN1vKE4rJ__4ETVkBtU76fTVJoUGWlsE9XLkrIf2lJ1QuE67Qr_mHL6jqD1lAFxmCbyGh5B0qq0stKpZnlFKOxGKSnO_fCUFEIklTQ2MuGpw&h=jam5Pc96BnchBcHV_Y_Mj71J27jh9weVtAQJrmVwqBk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B2FFC34734EC45338E45FD890146303E Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:41:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c07bda58-8a1f-4375-ad5c-97380415dc32?api-version=2024-02-15-preview&t=638450988140168187&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Pu5jjOiAoNWeDVdkmsqqwoXQ5j3IO1ymOvV6NCxJBLpwSqjKB7MgRDYDlQiuHDzG0L5RbmIHGEJ0AsQZ6glJAKBDaNceG43Gggq19hUF--Np6_42glGz20v8lWOom6YhxX5xaINDhzSjBe_HzMlt--T5RoMzwRNA_yRZRJFf8GW7cFI7GYo8fNXw6xNAqBz2XndiBBlk9EOUo75Yiqb7Kv_Qjm6rx55NZ96hQNbiLTVN1vKE4rJ__4ETVkBtU76fTVJoUGWlsE9XLkrIf2lJ1QuE67Qr_mHL6jqD1lAFxmCbyGh5B0qq0stKpZnlFKOxGKSnO_fCUFEIklTQ2MuGpw&h=jam5Pc96BnchBcHV_Y_Mj71J27jh9weVtAQJrmVwqBk + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6F8E88F73C9C4321A7EED5ADEC954D4A Ref B: MNZ221060609037 Ref C: 2024-03-03T21:42:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3219' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 30DB5678D5534E51A0257BCB3D888ED5 Ref B: MNZ221060608035 Ref C: 2024-03-03T21:42:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3219' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 94B458A211B242C996C4B6BBA4EAA8CB Ref B: MNZ221060610051 Ref C: 2024-03-03T21:42:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3219' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0D58871E1870470AABCDB7B2A452C9A7 Ref B: MNZ221060608049 Ref C: 2024-03-03T21:42:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3219' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2F2D6646396142F0877087A323597AAB Ref B: MNZ221060610011 Ref C: 2024-03-03T21:42:16Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"apiProperties": {}, "enableBurstCapacity": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/cc7326c0-c002-4825-bbdb-621924555638?api-version=2024-02-15-preview&t=638450989406984246&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHcgpFMap3eh6rLo5jGwQaEh78jFN7PnZ8tZEnBTZNxJMrJ1HerM4ZID-Z1iYJO9iRgFUBRP-9fK8P4PqAd9MrGCJJ58DEAqYVJJxRzP91XgmqcSq9JWHFjg5F_u4naZrp1YWSDAOZELUbwIrcgc1yffqKosmYCJUW0evgS05pBDJw7nA3j2GhP38rQHiwHpjh-8phLwisDNAkxlZok_QybMqOfy_IOynYy2GQ4p2RN0x9JbU2M8e-wIDOu7oUOzDciuIrHI5DdNCZaQfzVXj4LjSF_jDYxA30ILt5qKlWDn24ln7EbBpnsXaiQ-5c928fiCcfToUzRd5PB5gE0hRw&h=k9aElXszqsi7VIWsTLFo63hVPXxtpb_JPUUmlHAQ8dM + cache-control: + - no-store, no-cache + content-length: + - '3218' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:20 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813/operationResults/cc7326c0-c002-4825-bbdb-621924555638?api-version=2024-02-15-preview&t=638450989406984246&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KPUdtqI8eHBQnbz5WR4XZAv2ZeNEMz5WKbPDJYyGbkfN8ZT4YlXJTvMIXdZEWY6U7uAmL0H_mb4yr-1R4q786l7ms-YEC1daNGg_WvwbLHfvoak292kGZwGz077xZkZK_lfRTWdaTEpRr8NtuoluYgtKgmUXJ9N4K-UQUdbBCldqYEvNp-_yJPgq9klUPTjZZxzUv9eEWSxBStjVfjIEmWIArpUO4OCBRRql9P9qH7hck_pBljrlI1CrOwFTfaZAf3Id94qfG3UfknlYCPMzBa1wzqfVSKjyCsrxCWvoGyWOwktVQ93U-JKtcxJ-HGbstcTNE5fWUlCV7T7eEBHSZA&h=q9LVo2qxtOHLs0CV8p3ygblCWQcK1ffwHNegCnZqA30 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 88114314729249E785955A58503940F9 Ref B: MNZ221060609035 Ref C: 2024-03-03T21:42:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/cc7326c0-c002-4825-bbdb-621924555638?api-version=2024-02-15-preview&t=638450989406984246&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHcgpFMap3eh6rLo5jGwQaEh78jFN7PnZ8tZEnBTZNxJMrJ1HerM4ZID-Z1iYJO9iRgFUBRP-9fK8P4PqAd9MrGCJJ58DEAqYVJJxRzP91XgmqcSq9JWHFjg5F_u4naZrp1YWSDAOZELUbwIrcgc1yffqKosmYCJUW0evgS05pBDJw7nA3j2GhP38rQHiwHpjh-8phLwisDNAkxlZok_QybMqOfy_IOynYy2GQ4p2RN0x9JbU2M8e-wIDOu7oUOzDciuIrHI5DdNCZaQfzVXj4LjSF_jDYxA30ILt5qKlWDn24ln7EbBpnsXaiQ-5c928fiCcfToUzRd5PB5gE0hRw&h=k9aElXszqsi7VIWsTLFo63hVPXxtpb_JPUUmlHAQ8dM + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 644704B962D846129C37F745492160A4 Ref B: MNZ221060609037 Ref C: 2024-03-03T21:42:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/cc7326c0-c002-4825-bbdb-621924555638?api-version=2024-02-15-preview&t=638450989406984246&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHcgpFMap3eh6rLo5jGwQaEh78jFN7PnZ8tZEnBTZNxJMrJ1HerM4ZID-Z1iYJO9iRgFUBRP-9fK8P4PqAd9MrGCJJ58DEAqYVJJxRzP91XgmqcSq9JWHFjg5F_u4naZrp1YWSDAOZELUbwIrcgc1yffqKosmYCJUW0evgS05pBDJw7nA3j2GhP38rQHiwHpjh-8phLwisDNAkxlZok_QybMqOfy_IOynYy2GQ4p2RN0x9JbU2M8e-wIDOu7oUOzDciuIrHI5DdNCZaQfzVXj4LjSF_jDYxA30ILt5qKlWDn24ln7EbBpnsXaiQ-5c928fiCcfToUzRd5PB5gE0hRw&h=k9aElXszqsi7VIWsTLFo63hVPXxtpb_JPUUmlHAQ8dM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DDE70ECDD4764EF185C91D66B3E21764 Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:42:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/cc7326c0-c002-4825-bbdb-621924555638?api-version=2024-02-15-preview&t=638450989406984246&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHcgpFMap3eh6rLo5jGwQaEh78jFN7PnZ8tZEnBTZNxJMrJ1HerM4ZID-Z1iYJO9iRgFUBRP-9fK8P4PqAd9MrGCJJ58DEAqYVJJxRzP91XgmqcSq9JWHFjg5F_u4naZrp1YWSDAOZELUbwIrcgc1yffqKosmYCJUW0evgS05pBDJw7nA3j2GhP38rQHiwHpjh-8phLwisDNAkxlZok_QybMqOfy_IOynYy2GQ4p2RN0x9JbU2M8e-wIDOu7oUOzDciuIrHI5DdNCZaQfzVXj4LjSF_jDYxA30ILt5qKlWDn24ln7EbBpnsXaiQ-5c928fiCcfToUzRd5PB5gE0hRw&h=k9aElXszqsi7VIWsTLFo63hVPXxtpb_JPUUmlHAQ8dM + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3A0C8EED5F05452BBFF708BAE1C09AF1 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:43:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3245' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8A95446816A84711A7F45B7A33EF8E24 Ref B: BL2AA2030101029 Ref C: 2024-03-03T21:43:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3245' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 79D7BFF6E3C24820A74F00AE4F48CBC4 Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:43:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3245' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 903959135EC44F05B15514D2AAD3B1A9 Ref B: BL2AA2010205007 Ref C: 2024-03-03T21:43:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3245' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 54C23CF7086D4FD381598797AB995C44 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:43:22Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"apiProperties": {}, "enableBurstCapacity": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + Content-Length: + - '66' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/317dbb8e-e43e-407d-83e3-18c4e76d1f51?api-version=2024-02-15-preview&t=638450990077067180&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZOT3ObKeQxy9QhI4ZnzHGedmSwJs9see138brtxisTjyUIDXiJakmAeaY233f0whGiwm6t2FUNfisplp5P33i3GuIwzb1CWrMMj8Ke0D24Iy48JO_tNMZI019pd_CNIl0nE2ylU0VnHwT-HIpoaLbo422AC3hMMFjNxRDbgHakrQ4Xok80UtaBcaVkwPN2Tr9qusXCrN9rYX2da-cL34_RdCia4vZdodPawL9bU0iAVpWh-gM352YfTnwT-Xk3wbaO6jqjrsDXFuQXQYdJVhg7eTvrnjawcJiPE_swR6P-nzSmONCJAgtqf4s9OpUwW4S9QFllVVj37DW5URNZkVTA&h=E7OGB-5iLH2KawVlgWr_600bvFKvlax-TnGWdaLYrmI + cache-control: + - no-store, no-cache + content-length: + - '3244' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:27 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813/operationResults/317dbb8e-e43e-407d-83e3-18c4e76d1f51?api-version=2024-02-15-preview&t=638450990077222776&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jKoJLjuUSUTVlC4JUm7l1gkuj_0v6p5JjY3e6z1rRB2hs4AEVS7VMX9kv2MsZ3TYkvHTQjKSxoZybX0TgiWBmBGgKncJ51VQYVzbR-sbAdg_WrKd7WN2niHuYpDQELxaUu1N5SPWdpvL5D1XBnnHcBoBHXS-QTPgAELwkM5X-iKv-YFqZE7uAA28UbtsUX_Uiq2oI_QBrAsIBcxn5vJ6Fu7755Hw8yEw6a2S0OfZWwYG1_KcvsiiyOy-w57GNBSIQhZBykOfQV1qxEXAtICjfJHRJNISrJRTnxO2C9bCn0NnB-XDJN-OX0Ibx_gJ8qhG8dT55YdueYjS0QeaDIZLAQ&h=ug8PQExCpbCujmWl5KnuIHssz1oaT1KfSmeptwFObL8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 46D82B074C0742628F30510205D28ED9 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:43:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/317dbb8e-e43e-407d-83e3-18c4e76d1f51?api-version=2024-02-15-preview&t=638450990077067180&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZOT3ObKeQxy9QhI4ZnzHGedmSwJs9see138brtxisTjyUIDXiJakmAeaY233f0whGiwm6t2FUNfisplp5P33i3GuIwzb1CWrMMj8Ke0D24Iy48JO_tNMZI019pd_CNIl0nE2ylU0VnHwT-HIpoaLbo422AC3hMMFjNxRDbgHakrQ4Xok80UtaBcaVkwPN2Tr9qusXCrN9rYX2da-cL34_RdCia4vZdodPawL9bU0iAVpWh-gM352YfTnwT-Xk3wbaO6jqjrsDXFuQXQYdJVhg7eTvrnjawcJiPE_swR6P-nzSmONCJAgtqf4s9OpUwW4S9QFllVVj37DW5URNZkVTA&h=E7OGB-5iLH2KawVlgWr_600bvFKvlax-TnGWdaLYrmI + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 886951B2CBFF483E88E8561EF7962016 Ref B: BL2AA2030104025 Ref C: 2024-03-03T21:43:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/317dbb8e-e43e-407d-83e3-18c4e76d1f51?api-version=2024-02-15-preview&t=638450990077067180&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZOT3ObKeQxy9QhI4ZnzHGedmSwJs9see138brtxisTjyUIDXiJakmAeaY233f0whGiwm6t2FUNfisplp5P33i3GuIwzb1CWrMMj8Ke0D24Iy48JO_tNMZI019pd_CNIl0nE2ylU0VnHwT-HIpoaLbo422AC3hMMFjNxRDbgHakrQ4Xok80UtaBcaVkwPN2Tr9qusXCrN9rYX2da-cL34_RdCia4vZdodPawL9bU0iAVpWh-gM352YfTnwT-Xk3wbaO6jqjrsDXFuQXQYdJVhg7eTvrnjawcJiPE_swR6P-nzSmONCJAgtqf4s9OpUwW4S9QFllVVj37DW5URNZkVTA&h=E7OGB-5iLH2KawVlgWr_600bvFKvlax-TnGWdaLYrmI + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 926989339F8A4A42BF65EADD35DD6890 Ref B: BL2AA2010202051 Ref C: 2024-03-03T21:43:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/317dbb8e-e43e-407d-83e3-18c4e76d1f51?api-version=2024-02-15-preview&t=638450990077067180&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZOT3ObKeQxy9QhI4ZnzHGedmSwJs9see138brtxisTjyUIDXiJakmAeaY233f0whGiwm6t2FUNfisplp5P33i3GuIwzb1CWrMMj8Ke0D24Iy48JO_tNMZI019pd_CNIl0nE2ylU0VnHwT-HIpoaLbo422AC3hMMFjNxRDbgHakrQ4Xok80UtaBcaVkwPN2Tr9qusXCrN9rYX2da-cL34_RdCia4vZdodPawL9bU0iAVpWh-gM352YfTnwT-Xk3wbaO6jqjrsDXFuQXQYdJVhg7eTvrnjawcJiPE_swR6P-nzSmONCJAgtqf4s9OpUwW4S9QFllVVj37DW5URNZkVTA&h=E7OGB-5iLH2KawVlgWr_600bvFKvlax-TnGWdaLYrmI + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1B6E01042FCC4A06B3655271406B3FF7 Ref B: MNZ221060608049 Ref C: 2024-03-03T21:44:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3244' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 30F62E3B33364670BA72F13D4BDA006E Ref B: MNZ221060610021 Ref C: 2024-03-03T21:44:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-burst-capacity + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3244' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 49D46C52D704450990354975F1FA684B Ref B: MNZ221060609033 Ref C: 2024-03-03T21:44:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813","name":"burst-test-38129749813","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:38.8785443+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","sqlEndpoint":"https://burst-test-38129749813.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"768e1d71-411d-4c59-a65f-8fe3edc1cf27","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":true,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","documentEndpoint":"https://burst-test-38129749813-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"burst-test-38129749813-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:38.8785443+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3244' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0ED52E41E36F4600B0EC77487D80446A Ref B: MNZ221060610025 Ref C: 2024-03-03T21:44:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/burst-test-38129749813?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:29 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationResults/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=UF-RHXJNq8rxb2CtfJCTda4HEqhFMN0HJQDuH733oRW_chOufqtVuibg_7NbGY7kjNy4Pvnevoa9rQINbpPJASElaJIhtVk6hhom9aoi0ASuJAqR8XpK1fgzgQ-oLQ6jFEVioCRQWgX8qpc3EJedFKpKNi1sQnaqC4LUQ1aG3fsv-BI6F2EDwejbbmf2s5yWvLst4NlAx1eFUEO2IjbjVQUgeHwhOKpRhvbqBaw4YtBuknxl5uC_efHyDs_lMt0_Qw4CzHqruURZ32yUgF9BcAEbxip31woSQ0kB95iV7jABiECwF1-7YsXUCBX3q6t-8hWnz2G0wxrgNk5NN47btA&h=4Q8JBOhq4HRwgOzG3-99ro8oiOo5zQfehZJikXSqZS0 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: C3D987CA5D8A42B3876291B54C6A157C Ref B: MNZ221060610047 Ref C: 2024-03-03T21:44:29Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3462769151C24A219BFF1AA96F84D37F Ref B: MNZ221060608019 Ref C: 2024-03-03T21:44:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 16F4E049F85C4065BD327C9C7FAE20EB Ref B: MNZ221060610053 Ref C: 2024-03-03T21:45:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 54D583DE922D40379B66AE7EA3955413 Ref B: BL2AA2010203051 Ref C: 2024-03-03T21:45:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 540F3E7BB2084D628950F39510BDDC82 Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:46:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:46:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EDF3B85360324606B071EAFB865F1E12 Ref B: MNZ221060609053 Ref C: 2024-03-03T21:46:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:47:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E5C37D87EBB34ADBADDF88BD1FD504BA Ref B: MNZ221060609037 Ref C: 2024-03-03T21:47:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:47:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DDBC8CCEBFB24D1A98B715B252AEA08B Ref B: BL2AA2030101051 Ref C: 2024-03-03T21:47:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:48:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 11184CE77A2B49828BF9299B8CAE8F40 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:48:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:48:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B39E77FB809644749144C546BB2690E6 Ref B: MNZ221060609011 Ref C: 2024-03-03T21:48:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8122D0559D1447DA9D3F7CBF1051FEF3 Ref B: BL2AA2010202047 Ref C: 2024-03-03T21:49:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B49999404AE3431C90D9910A9D759D2F Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:49:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2084825682B548B3890CD8A4CED75AF1 Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:50:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 95E66F5B7A3B437B8AFCC16B6E5F072A Ref B: MNZ221060608039 Ref C: 2024-03-03T21:50:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2BB9C2AE4ABA46FA84ACE8CDE314CFE3 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:51:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CF5F93CA7A1D41E4891E5E9CD260777B Ref B: MNZ221060608039 Ref C: 2024-03-03T21:51:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/e05cd023-9dc7-49f1-bf1c-0c8b235cb9b9?api-version=2023-11-15&t=638450990700945313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QGk9VyhBPXeuvzt7dHycm3IZvRDRWUDirZgeVS6yWGdWxL17p4VKAQiwoVYF5bNlF-krNCr7dHotZDT5QOksrb_ZHMUfVGTHz1qEHRxxVzX2lDsGhk73wyTrbNEDDP4qa2vC9aLU8EsYqbIrLhp6It9yxaR2BFHyfsa5KB1GIktnYD5nWwe3Hg0E8yYUvLCx785SGQSfADmshtlqzxNJ1eQRr_k8WoS1hATrbOBfVYIo8v1YoZWRpmOG5fHOzOzBMFgt-G3OLYR4tbYkgE12MFv1ozMgeR6HjiyaovW33nyt1eTGN58b9sOEB8NaMg5a54JryB74wspZghKLk1BFqQ&h=4c1WSvsoUxK_gE9rj6FEmj0Row_08duRgVty10HtPHU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 52FCDC5F7B254DEC8249436C9D691D82 Ref B: MNZ221060609031 Ref C: 2024-03-03T21:52:02Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml new file mode 100644 index 00000000000..ef2899b7e80 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_cassandra.yaml @@ -0,0 +1,891 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001","name":"cli_test_cosmosdb_copy000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_copy_cassandra","date":"2024-03-03T21:22:38Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '400' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6B63462A0DEB4687A9A1AD3B3AA91ADB Ref B: BL2AA2010201039 Ref C: 2024-03-03T21:22:38Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}], + "apiProperties": {}, "createMode": "Default"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '291' + Content-Type: + - application/json + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:22:41.3465605Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"26c63bd5-48c6-4094-bac7-ff3d70af0348","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:22:41.3465605Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:22:41.3465605Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:22:41.3465605Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:22:41.3465605Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9776db68-e090-4f37-947b-43e8f6cd717c?api-version=2024-02-15-preview&t=638450977626381614&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fd3FCZt1PNs0dWlZSRCJxVBLh1exJ80KWkAfDDdeJ2mg0hlaSECGzGOSBtNy_dJoGDOJxotCCQbr8Y2OU94FaCm6ZuHYljrrq7vTob-xELiQ-kNbu3D2qTXh-YCJZ58rpFa-RKOiw_0InKtB0uGArWxqIQ4Lg8_wPxuIa1Zqyek8Eg_JPLYOYL-6cSvaTZd3p7nwkgLdzLKNTf7URw-Fj3rG72Ja4pOKs_5GA-m3P-t4SWrrXUQAWao8Ze5dBmjnpYH9jjtp0H2qOFT00CHYfzPJlVThigkYWoU5WLl6_yPCvvKA7n_Cvvlk20E6ch0TGY9mgl_1L9XwOTdkolKuRA&h=9Dw_4DSv9Rf5jgoAVW_GIrZn8Sh6wFBl0uvkM_nOaIM + cache-control: + - no-store, no-cache + content-length: + - '2737' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:41 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/9776db68-e090-4f37-947b-43e8f6cd717c?api-version=2024-02-15-preview&t=638450977626381614&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Yg397gRQq5NoVAg_IOkEq8-L-PXA-xBSZ0TbL6bwUtE9Ks6BDdduq8fYJmYPaF0yozO_BXHrq92nscl2hmUAyWnKqKcnQ9c5-Gztp6oxUHUc2zLmyDLDmuGZYvCHzz9HYLHzKZ4_yXRmrgmzPa42o8jZzPdWWC7V5Hng2s_YfpyFDQrGxHYilrtu4i3X3PYn4PV0pJ-wV_kTybA76BbOq_SVRasjAL2oNRTpE7zxqqwXKLk1JQ1Umn9MvNVMh_ItYT9iZI33-fvKf98OzegCcENnbJ9j50e0gtx-ZkdYKcS9-gqDXPMMGl0lB5u7QSbuMBx6G_sBcRCgKH2D9gld1g&h=OXrO9XcfRjHi7XoAEst1b_HPfpOLsrfVTcgobCtZ6q8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: FFFB520BE8744692B4A735EBDDFD5B14 Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:22:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9776db68-e090-4f37-947b-43e8f6cd717c?api-version=2024-02-15-preview&t=638450977626381614&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fd3FCZt1PNs0dWlZSRCJxVBLh1exJ80KWkAfDDdeJ2mg0hlaSECGzGOSBtNy_dJoGDOJxotCCQbr8Y2OU94FaCm6ZuHYljrrq7vTob-xELiQ-kNbu3D2qTXh-YCJZ58rpFa-RKOiw_0InKtB0uGArWxqIQ4Lg8_wPxuIa1Zqyek8Eg_JPLYOYL-6cSvaTZd3p7nwkgLdzLKNTf7URw-Fj3rG72Ja4pOKs_5GA-m3P-t4SWrrXUQAWao8Ze5dBmjnpYH9jjtp0H2qOFT00CHYfzPJlVThigkYWoU5WLl6_yPCvvKA7n_Cvvlk20E6ch0TGY9mgl_1L9XwOTdkolKuRA&h=9Dw_4DSv9Rf5jgoAVW_GIrZn8Sh6wFBl0uvkM_nOaIM + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 19331E774FE34FC59F76612D83835694 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:22:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9776db68-e090-4f37-947b-43e8f6cd717c?api-version=2024-02-15-preview&t=638450977626381614&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fd3FCZt1PNs0dWlZSRCJxVBLh1exJ80KWkAfDDdeJ2mg0hlaSECGzGOSBtNy_dJoGDOJxotCCQbr8Y2OU94FaCm6ZuHYljrrq7vTob-xELiQ-kNbu3D2qTXh-YCJZ58rpFa-RKOiw_0InKtB0uGArWxqIQ4Lg8_wPxuIa1Zqyek8Eg_JPLYOYL-6cSvaTZd3p7nwkgLdzLKNTf7URw-Fj3rG72Ja4pOKs_5GA-m3P-t4SWrrXUQAWao8Ze5dBmjnpYH9jjtp0H2qOFT00CHYfzPJlVThigkYWoU5WLl6_yPCvvKA7n_Cvvlk20E6ch0TGY9mgl_1L9XwOTdkolKuRA&h=9Dw_4DSv9Rf5jgoAVW_GIrZn8Sh6wFBl0uvkM_nOaIM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 327E5E932BE241A8A9DFE1BC44201673 Ref B: BL2AA2010202021 Ref C: 2024-03-03T21:23:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9776db68-e090-4f37-947b-43e8f6cd717c?api-version=2024-02-15-preview&t=638450977626381614&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fd3FCZt1PNs0dWlZSRCJxVBLh1exJ80KWkAfDDdeJ2mg0hlaSECGzGOSBtNy_dJoGDOJxotCCQbr8Y2OU94FaCm6ZuHYljrrq7vTob-xELiQ-kNbu3D2qTXh-YCJZ58rpFa-RKOiw_0InKtB0uGArWxqIQ4Lg8_wPxuIa1Zqyek8Eg_JPLYOYL-6cSvaTZd3p7nwkgLdzLKNTf7URw-Fj3rG72Ja4pOKs_5GA-m3P-t4SWrrXUQAWao8Ze5dBmjnpYH9jjtp0H2qOFT00CHYfzPJlVThigkYWoU5WLl6_yPCvvKA7n_Cvvlk20E6ch0TGY9mgl_1L9XwOTdkolKuRA&h=9Dw_4DSv9Rf5jgoAVW_GIrZn8Sh6wFBl0uvkM_nOaIM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 296F085BC1C540C689AC845BD52A7C0B Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:23:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9776db68-e090-4f37-947b-43e8f6cd717c?api-version=2024-02-15-preview&t=638450977626381614&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fd3FCZt1PNs0dWlZSRCJxVBLh1exJ80KWkAfDDdeJ2mg0hlaSECGzGOSBtNy_dJoGDOJxotCCQbr8Y2OU94FaCm6ZuHYljrrq7vTob-xELiQ-kNbu3D2qTXh-YCJZ58rpFa-RKOiw_0InKtB0uGArWxqIQ4Lg8_wPxuIa1Zqyek8Eg_JPLYOYL-6cSvaTZd3p7nwkgLdzLKNTf7URw-Fj3rG72Ja4pOKs_5GA-m3P-t4SWrrXUQAWao8Ze5dBmjnpYH9jjtp0H2qOFT00CHYfzPJlVThigkYWoU5WLl6_yPCvvKA7n_Cvvlk20E6ch0TGY9mgl_1L9XwOTdkolKuRA&h=9Dw_4DSv9Rf5jgoAVW_GIrZn8Sh6wFBl0uvkM_nOaIM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CD208E89D22C4641B4830A334A72E8C9 Ref B: BL2AA2030101033 Ref C: 2024-03-03T21:24:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9776db68-e090-4f37-947b-43e8f6cd717c?api-version=2024-02-15-preview&t=638450977626381614&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fd3FCZt1PNs0dWlZSRCJxVBLh1exJ80KWkAfDDdeJ2mg0hlaSECGzGOSBtNy_dJoGDOJxotCCQbr8Y2OU94FaCm6ZuHYljrrq7vTob-xELiQ-kNbu3D2qTXh-YCJZ58rpFa-RKOiw_0InKtB0uGArWxqIQ4Lg8_wPxuIa1Zqyek8Eg_JPLYOYL-6cSvaTZd3p7nwkgLdzLKNTf7URw-Fj3rG72Ja4pOKs_5GA-m3P-t4SWrrXUQAWao8Ze5dBmjnpYH9jjtp0H2qOFT00CHYfzPJlVThigkYWoU5WLl6_yPCvvKA7n_Cvvlk20E6ch0TGY9mgl_1L9XwOTdkolKuRA&h=9Dw_4DSv9Rf5jgoAVW_GIrZn8Sh6wFBl0uvkM_nOaIM + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 40B7595F3D2B45A58F5B5AC7FBB61179 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:24:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:24:02.8036374Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"26c63bd5-48c6-4094-bac7-ff3d70af0348","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3163' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FB7482B76CCE4DBEBD8825FBA850BC0C Ref B: BL2AA2010204045 Ref C: 2024-03-03T21:24:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:24:02.8036374Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"26c63bd5-48c6-4094-bac7-ff3d70af0348","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3163' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B9C639A0A57D42418882C3B87B8338AA Ref B: BL2AA2010202039 Ref C: 2024-03-03T21:24:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:24:02.8036374Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"26c63bd5-48c6-4094-bac7-ff3d70af0348","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:24:02.8036374Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3163' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4BD7873F2F5A47018AAAF19319EE7722 Ref B: BL2AA2010203021 Ref C: 2024-03-03T21:24:43Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"source": {"component": "CosmosDBCassandra", "keyspaceName": + "cli000002", "tableName": "cli000003"}, "destination": {"component": "CosmosDBCassandra", + "keyspaceName": "cli000002", "tableName": "cli000004"}, "mode": "Offline"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy create + Connection: + - keep-alive + Content-Length: + - '242' + Content-Type: + - application/json + ParameterSetName: + - -g --job-name --src-account --dest-account --src-cassandra --dest-cassandra + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:24:44.5161781Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '627' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: EBB0D662A310473DAAB17E616939A580 Ref B: BL2AA2010205053 Ref C: 2024-03-03T21:24:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:24:44Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '619' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 582218740E6248E98F096EC064DD2ECC Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:24:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy list + Connection: + - keep-alive + ParameterSetName: + - -g --account-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2024-02-15-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:24:44Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '631' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3878CC9E88DD46239CA992504F2BF871 Ref B: BL2AA2030101007 Ref C: 2024-03-03T21:24:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy pause + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-03-03T21:24:46Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '618' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 43EDC4A7DC9340C8B9ABC4D171CE14EC Ref B: BL2AA2010205003 Ref C: 2024-03-03T21:24:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-03-03T21:24:46Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '618' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6C5ADEC5388046469D686872EC66FE58 Ref B: BL2AA2010204029 Ref C: 2024-03-03T21:24:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy resume + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:24:47Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '619' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 985F0FD34F134DE7A9A89153A2616F16 Ref B: BL2AA2010205027 Ref C: 2024-03-03T21:24:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:24:47Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '619' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CDD25C4885CF4A5286BB1A78137103DF Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:24:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy cancel + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-03-03T21:24:49Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '621' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: F0D7795CC51F470590E83EEC06BCA377 Ref B: BL2AA2030103019 Ref C: 2024-03-03T21:24:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-03-03T21:24:49Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '621' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:49 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 567B4956FE80461081F1EDA31627609B Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:24:49Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml new file mode 100644 index 00000000000..a2ed54ce9f0 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_copy_mongo.yaml @@ -0,0 +1,891 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_copy_mongo000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001","name":"cli_test_cosmosdb_copy_mongo000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_copy_mongo","date":"2024-03-03T21:49:38Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '408' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:49:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7116E63235C444D8B0DEE0C9148A319C Ref B: BL2AA2030104045 Ref C: 2024-03-03T21:49:38Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "kind": "MongoDB", "properties": {"locations": [{"locationName": + "eastus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": + "Standard", "capabilities": [{"name": "EnableMongo"}], "apiProperties": {}, + "createMode": "Default"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '278' + Content-Type: + - application/json + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:49:41.6225605Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"36fd2d6c-b0ee-4bbe-956a-237cc5a73c70","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:49:41.6225605Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:49:41.6225605Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:49:41.6225605Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:49:41.6225605Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10a3c808-dfb8-423c-96f9-8279d2745147?api-version=2024-02-15-preview&t=638450993830760073&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ajRDtvMG0oLe0vaOOu_XtUSYzkuF68gKGbt5qlq7oIxjSBrET0tpWkLpJ9YqgYxE8kw5NaI6cLrtrVreSBBoYqwzr7EBR-S6QljWB3C37DaVDCouM06IhCWdJR92GNVwbPpbWBWjMQviF1TkD8QL7a0o9fAIJcDD6DXGDkFipvQDHebFgTj6AI9pxLzK1XS8ocLWkHWXpcd_8ZREkPmeM-D1L0GZdZeodsLVsgG5IcGIUGiqq9aIZ9LVZnBFEbI_O40KJQc7bh0ZxLgtofjSx7i_LEIXG12RxipQBMpXZIcJIjQW1_pxLLD82fkYDMhBr0cRO9cfBdxNIIkHR07AVA&h=VilglGa19ZM8gYBqLf7dI0CMaLnYdk-4JAUJxzd4Kvs + cache-control: + - no-store, no-cache + content-length: + - '2737' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:42 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/10a3c808-dfb8-423c-96f9-8279d2745147?api-version=2024-02-15-preview&t=638450993830760073&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QFGdFvsp1d_WhnOpyzcowfJWwSvxarHupUR-LLqtlp-j42zBlcaQeJG3BQp0NA4YzruxnmCfxu0RtOYi6ABjaGV5uDCt30Ff6dmBHVxtfNxkWSNvzuqkZK7T38EyN6m65a1ATnGxF-leUsGx1Ccyq6Zk4msLJZlvWqtSIuiFQiR1J0FRYXeg3UtefkIoa8ROr9YSVTO3RW7HHOZHlXDrKOr-00uph67LAJuCKO8mVcAs4751bYA8T8ZsHBP3H9t8yb9fKqmHXdNpPHGRj8_Iw7dAbXxINb3edxd7MqH8fvgvmL3ZBLHzDQYC1pRiAGqto8OlrmYs209yhp1VwTXMyQ&h=zI1XPltqHbZf6p5LW-_3VFDRtzHDwKBO9ZLbk2NcnHE + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 57AE4F9E2CE3476D92333E767C266943 Ref B: BL2AA2030101023 Ref C: 2024-03-03T21:49:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10a3c808-dfb8-423c-96f9-8279d2745147?api-version=2024-02-15-preview&t=638450993830760073&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ajRDtvMG0oLe0vaOOu_XtUSYzkuF68gKGbt5qlq7oIxjSBrET0tpWkLpJ9YqgYxE8kw5NaI6cLrtrVreSBBoYqwzr7EBR-S6QljWB3C37DaVDCouM06IhCWdJR92GNVwbPpbWBWjMQviF1TkD8QL7a0o9fAIJcDD6DXGDkFipvQDHebFgTj6AI9pxLzK1XS8ocLWkHWXpcd_8ZREkPmeM-D1L0GZdZeodsLVsgG5IcGIUGiqq9aIZ9LVZnBFEbI_O40KJQc7bh0ZxLgtofjSx7i_LEIXG12RxipQBMpXZIcJIjQW1_pxLLD82fkYDMhBr0cRO9cfBdxNIIkHR07AVA&h=VilglGa19ZM8gYBqLf7dI0CMaLnYdk-4JAUJxzd4Kvs + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D6B0B8C1C9424FACA808DD0C71DE0663 Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:49:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10a3c808-dfb8-423c-96f9-8279d2745147?api-version=2024-02-15-preview&t=638450993830760073&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ajRDtvMG0oLe0vaOOu_XtUSYzkuF68gKGbt5qlq7oIxjSBrET0tpWkLpJ9YqgYxE8kw5NaI6cLrtrVreSBBoYqwzr7EBR-S6QljWB3C37DaVDCouM06IhCWdJR92GNVwbPpbWBWjMQviF1TkD8QL7a0o9fAIJcDD6DXGDkFipvQDHebFgTj6AI9pxLzK1XS8ocLWkHWXpcd_8ZREkPmeM-D1L0GZdZeodsLVsgG5IcGIUGiqq9aIZ9LVZnBFEbI_O40KJQc7bh0ZxLgtofjSx7i_LEIXG12RxipQBMpXZIcJIjQW1_pxLLD82fkYDMhBr0cRO9cfBdxNIIkHR07AVA&h=VilglGa19ZM8gYBqLf7dI0CMaLnYdk-4JAUJxzd4Kvs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 23622FD5C94646E1971B39458AEA15C1 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:50:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10a3c808-dfb8-423c-96f9-8279d2745147?api-version=2024-02-15-preview&t=638450993830760073&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ajRDtvMG0oLe0vaOOu_XtUSYzkuF68gKGbt5qlq7oIxjSBrET0tpWkLpJ9YqgYxE8kw5NaI6cLrtrVreSBBoYqwzr7EBR-S6QljWB3C37DaVDCouM06IhCWdJR92GNVwbPpbWBWjMQviF1TkD8QL7a0o9fAIJcDD6DXGDkFipvQDHebFgTj6AI9pxLzK1XS8ocLWkHWXpcd_8ZREkPmeM-D1L0GZdZeodsLVsgG5IcGIUGiqq9aIZ9LVZnBFEbI_O40KJQc7bh0ZxLgtofjSx7i_LEIXG12RxipQBMpXZIcJIjQW1_pxLLD82fkYDMhBr0cRO9cfBdxNIIkHR07AVA&h=VilglGa19ZM8gYBqLf7dI0CMaLnYdk-4JAUJxzd4Kvs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 659D91EFF59840E39C3BE62803189327 Ref B: MNZ221060610031 Ref C: 2024-03-03T21:50:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10a3c808-dfb8-423c-96f9-8279d2745147?api-version=2024-02-15-preview&t=638450993830760073&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ajRDtvMG0oLe0vaOOu_XtUSYzkuF68gKGbt5qlq7oIxjSBrET0tpWkLpJ9YqgYxE8kw5NaI6cLrtrVreSBBoYqwzr7EBR-S6QljWB3C37DaVDCouM06IhCWdJR92GNVwbPpbWBWjMQviF1TkD8QL7a0o9fAIJcDD6DXGDkFipvQDHebFgTj6AI9pxLzK1XS8ocLWkHWXpcd_8ZREkPmeM-D1L0GZdZeodsLVsgG5IcGIUGiqq9aIZ9LVZnBFEbI_O40KJQc7bh0ZxLgtofjSx7i_LEIXG12RxipQBMpXZIcJIjQW1_pxLLD82fkYDMhBr0cRO9cfBdxNIIkHR07AVA&h=VilglGa19ZM8gYBqLf7dI0CMaLnYdk-4JAUJxzd4Kvs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2A1F231F4C334CD28C6C945502D6F2CB Ref B: MNZ221060608009 Ref C: 2024-03-03T21:51:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10a3c808-dfb8-423c-96f9-8279d2745147?api-version=2024-02-15-preview&t=638450993830760073&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ajRDtvMG0oLe0vaOOu_XtUSYzkuF68gKGbt5qlq7oIxjSBrET0tpWkLpJ9YqgYxE8kw5NaI6cLrtrVreSBBoYqwzr7EBR-S6QljWB3C37DaVDCouM06IhCWdJR92GNVwbPpbWBWjMQviF1TkD8QL7a0o9fAIJcDD6DXGDkFipvQDHebFgTj6AI9pxLzK1XS8ocLWkHWXpcd_8ZREkPmeM-D1L0GZdZeodsLVsgG5IcGIUGiqq9aIZ9LVZnBFEbI_O40KJQc7bh0ZxLgtofjSx7i_LEIXG12RxipQBMpXZIcJIjQW1_pxLLD82fkYDMhBr0cRO9cfBdxNIIkHR07AVA&h=VilglGa19ZM8gYBqLf7dI0CMaLnYdk-4JAUJxzd4Kvs + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FACA3FE839B9471DA89F27092A93FC2D Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:51:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:51:04.5080412Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"36fd2d6c-b0ee-4bbe-956a-237cc5a73c70","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3181' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 78C3777DE81644679C0B8F4E5079118C Ref B: MNZ221060608007 Ref C: 2024-03-03T21:51:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities --kind + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:51:04.5080412Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"36fd2d6c-b0ee-4bbe-956a-237cc5a73c70","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3181' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 870CA95786664DF9B0E23C8A85655A45 Ref B: MNZ221060608045 Ref C: 2024-03-03T21:51:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:51:04.5080412Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","mongoEndpoint":"https://cli000006.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"36fd2d6c-b0ee-4bbe-956a-237cc5a73c70","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:51:04.5080412Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3181' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E3FDA086602547F1A3526907A7E33B7C Ref B: MNZ221060608029 Ref C: 2024-03-03T21:51:44Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"source": {"component": "CosmosDBMongo", "databaseName": + "cli000002", "collectionName": "cli000003"}, "destination": {"component": "CosmosDBMongo", + "databaseName": "cli000002", "collectionName": "cli000004"}, "mode": "Offline"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy create + Connection: + - keep-alive + Content-Length: + - '244' + Content-Type: + - application/json + ParameterSetName: + - -g --job-name --src-account --dest-account --src-mongo --dest-mongo + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:51:44.9013754Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '635' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 17F38F1F30AF4317814AF13F19421037 Ref B: MNZ221060608011 Ref C: 2024-03-03T21:51:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:51:44Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '627' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F367FF491AF64E1B9D7C000CF73D9A44 Ref B: MNZ221060610025 Ref C: 2024-03-03T21:51:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy list + Connection: + - keep-alive + ParameterSetName: + - -g --account-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2024-02-15-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:51:44Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '639' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F7CAD24C37E74995A43D6AA85F2474A4 Ref B: MNZ221060610027 Ref C: 2024-03-03T21:51:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy pause + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-03-03T21:51:46Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '626' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 3BEE4B8849CE48D8B3C0FB14DCE19F9D Ref B: MNZ221060609031 Ref C: 2024-03-03T21:51:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-03-03T21:51:46Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '626' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E30496E244044FE29697FC527A7CA712 Ref B: MNZ221060608049 Ref C: 2024-03-03T21:51:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy resume + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:51:48Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '627' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 60C2E1C0C1DE494694A409AF604F9E74 Ref B: MNZ221060608023 Ref C: 2024-03-03T21:51:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T21:51:48Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '627' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C67FECB231974B85A9EEDD4701D454DB Ref B: MNZ221060609017 Ref C: 2024-03-03T21:51:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy cancel + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-03-03T21:51:49Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '629' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 87A0728C206043A7B43FF6BED64F118F Ref B: MNZ221060610023 Ref C: 2024-03-03T21:51:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb copy show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_copy_mongo000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-03-03T21:51:49Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"databaseName":"cli000002","collectionName":"cli000003","component":"CosmosDBMongo"},"destination":{"databaseName":"cli000002","collectionName":"cli000004","component":"CosmosDBMongo"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '629' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:49 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BC6C6F0B54E14CD5AA6790BB83A860D2 Ref B: MNZ221060610053 Ref C: 2024-03-03T21:51:49Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_dts.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_dts.yaml new file mode 100644 index 00000000000..dacef2140b3 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_dts.yaml @@ -0,0 +1,891 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_dts_cassandra000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001","name":"cli_test_cosmosdb_dts_cassandra000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_dts","date":"2024-03-03T21:58:21Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '407' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:58:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7F84D1B5BA03448AAA949C6B3E2AC11B Ref B: MNZ221060609053 Ref C: 2024-03-03T21:58:22Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}], + "apiProperties": {}, "createMode": "Default"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '291' + Content-Type: + - application/json + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:58:25.1120684Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"0046affe-ea0d-4c59-8f7c-4b83969a87a8","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:58:25.1120684Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:58:25.1120684Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:58:25.1120684Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:58:25.1120684Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eaddd65b-bf21-413d-a8c9-28b3946c3b6e?api-version=2024-02-15-preview&t=638450999063075288&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U7murx2WgVnYoc-maPolQEzvvmzpwebcB0RKaCzMB8fTErHEZ2BhUSwJxZTw11l7InfMA5VgMzVg5WNtTYSf2gDWANasZSjuRp8PHu9vXCiGZyTia0cz0CFBe5XFt8ZVPH7GZxzwviKOLqrHKrwEsmQK3ph09QfPMc8BpAcCyDccN2VuvvMPJ_tuKkwUUXOvoDdfOLqUnVmAXu_k6acmTVpLScUx_phzEpYquGbr5uvdbS3ytCoZFeB2MBPUUm8wx5n0XTo5pIiA5abfvU1X-G7YTaaLw9SHErKUL320FrZRbKo1NwDKm9SYrQDg9JrX3MeWOEnGf5SS8grXFtAl4Q&h=fwHgq3fSqjh4OpVwt_MhpXWu0SYyTX-qnWrvijF8Ebc + cache-control: + - no-store, no-cache + content-length: + - '2746' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:58:26 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/operationResults/eaddd65b-bf21-413d-a8c9-28b3946c3b6e?api-version=2024-02-15-preview&t=638450999063075288&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=RQBYMDzHGkTFKlcehfAAXkFusXuC56KRLkGWWQnoADynjWAF_u3h94k7Vx3cU2C9aBnNxgqdwCBPW3mRg1dAVQDfujK8_bTJThQF9WL0kN7BGm8304NiDCbZrxH_C8R_U9lvVh25Ga_eEgPyAz3UzMmQmyH3w2nCx0FLW3Fsm5XbNQoPfuEvjZKjDQGDZmPg9yNPtYomuTZ2Eath69-y-pYCDM8ty_yZtwKr4gAwf14EmHv-WzEIwaa8SfRafMRM6Ry2UZhRLMTQKheVgY8yFi7-CEtwpfZsoQF_jeOlFJl_UVihEWLKj6uirhQl0twzyku5pIBD3sftscsf_n96HQ&h=itW2BnoXG0LSut012-Jv7Isu0IJQJAn6w7iUxGj5Lzg + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: 56A85895F6A3496682256DF25265D4DA Ref B: MNZ221060609035 Ref C: 2024-03-03T21:58:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eaddd65b-bf21-413d-a8c9-28b3946c3b6e?api-version=2024-02-15-preview&t=638450999063075288&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U7murx2WgVnYoc-maPolQEzvvmzpwebcB0RKaCzMB8fTErHEZ2BhUSwJxZTw11l7InfMA5VgMzVg5WNtTYSf2gDWANasZSjuRp8PHu9vXCiGZyTia0cz0CFBe5XFt8ZVPH7GZxzwviKOLqrHKrwEsmQK3ph09QfPMc8BpAcCyDccN2VuvvMPJ_tuKkwUUXOvoDdfOLqUnVmAXu_k6acmTVpLScUx_phzEpYquGbr5uvdbS3ytCoZFeB2MBPUUm8wx5n0XTo5pIiA5abfvU1X-G7YTaaLw9SHErKUL320FrZRbKo1NwDKm9SYrQDg9JrX3MeWOEnGf5SS8grXFtAl4Q&h=fwHgq3fSqjh4OpVwt_MhpXWu0SYyTX-qnWrvijF8Ebc + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:58:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 75EEABD58B9D4FA8B08BF9961E4537C0 Ref B: MNZ221060609029 Ref C: 2024-03-03T21:58:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eaddd65b-bf21-413d-a8c9-28b3946c3b6e?api-version=2024-02-15-preview&t=638450999063075288&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U7murx2WgVnYoc-maPolQEzvvmzpwebcB0RKaCzMB8fTErHEZ2BhUSwJxZTw11l7InfMA5VgMzVg5WNtTYSf2gDWANasZSjuRp8PHu9vXCiGZyTia0cz0CFBe5XFt8ZVPH7GZxzwviKOLqrHKrwEsmQK3ph09QfPMc8BpAcCyDccN2VuvvMPJ_tuKkwUUXOvoDdfOLqUnVmAXu_k6acmTVpLScUx_phzEpYquGbr5uvdbS3ytCoZFeB2MBPUUm8wx5n0XTo5pIiA5abfvU1X-G7YTaaLw9SHErKUL320FrZRbKo1NwDKm9SYrQDg9JrX3MeWOEnGf5SS8grXFtAl4Q&h=fwHgq3fSqjh4OpVwt_MhpXWu0SYyTX-qnWrvijF8Ebc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:58:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 563303183F824BA0BDAE47904821AF4C Ref B: MNZ221060608049 Ref C: 2024-03-03T21:58:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eaddd65b-bf21-413d-a8c9-28b3946c3b6e?api-version=2024-02-15-preview&t=638450999063075288&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U7murx2WgVnYoc-maPolQEzvvmzpwebcB0RKaCzMB8fTErHEZ2BhUSwJxZTw11l7InfMA5VgMzVg5WNtTYSf2gDWANasZSjuRp8PHu9vXCiGZyTia0cz0CFBe5XFt8ZVPH7GZxzwviKOLqrHKrwEsmQK3ph09QfPMc8BpAcCyDccN2VuvvMPJ_tuKkwUUXOvoDdfOLqUnVmAXu_k6acmTVpLScUx_phzEpYquGbr5uvdbS3ytCoZFeB2MBPUUm8wx5n0XTo5pIiA5abfvU1X-G7YTaaLw9SHErKUL320FrZRbKo1NwDKm9SYrQDg9JrX3MeWOEnGf5SS8grXFtAl4Q&h=fwHgq3fSqjh4OpVwt_MhpXWu0SYyTX-qnWrvijF8Ebc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F54DE3DF2A904B6BB1D4D3E86057F548 Ref B: BL2AA2010201047 Ref C: 2024-03-03T21:59:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eaddd65b-bf21-413d-a8c9-28b3946c3b6e?api-version=2024-02-15-preview&t=638450999063075288&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U7murx2WgVnYoc-maPolQEzvvmzpwebcB0RKaCzMB8fTErHEZ2BhUSwJxZTw11l7InfMA5VgMzVg5WNtTYSf2gDWANasZSjuRp8PHu9vXCiGZyTia0cz0CFBe5XFt8ZVPH7GZxzwviKOLqrHKrwEsmQK3ph09QfPMc8BpAcCyDccN2VuvvMPJ_tuKkwUUXOvoDdfOLqUnVmAXu_k6acmTVpLScUx_phzEpYquGbr5uvdbS3ytCoZFeB2MBPUUm8wx5n0XTo5pIiA5abfvU1X-G7YTaaLw9SHErKUL320FrZRbKo1NwDKm9SYrQDg9JrX3MeWOEnGf5SS8grXFtAl4Q&h=fwHgq3fSqjh4OpVwt_MhpXWu0SYyTX-qnWrvijF8Ebc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F5C8A3330A8447C4B395E9F9CA73C3F3 Ref B: MNZ221060608017 Ref C: 2024-03-03T21:59:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eaddd65b-bf21-413d-a8c9-28b3946c3b6e?api-version=2024-02-15-preview&t=638450999063075288&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U7murx2WgVnYoc-maPolQEzvvmzpwebcB0RKaCzMB8fTErHEZ2BhUSwJxZTw11l7InfMA5VgMzVg5WNtTYSf2gDWANasZSjuRp8PHu9vXCiGZyTia0cz0CFBe5XFt8ZVPH7GZxzwviKOLqrHKrwEsmQK3ph09QfPMc8BpAcCyDccN2VuvvMPJ_tuKkwUUXOvoDdfOLqUnVmAXu_k6acmTVpLScUx_phzEpYquGbr5uvdbS3ytCoZFeB2MBPUUm8wx5n0XTo5pIiA5abfvU1X-G7YTaaLw9SHErKUL320FrZRbKo1NwDKm9SYrQDg9JrX3MeWOEnGf5SS8grXFtAl4Q&h=fwHgq3fSqjh4OpVwt_MhpXWu0SYyTX-qnWrvijF8Ebc + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 03ABE99033074857804D2ABD504BF559 Ref B: MNZ221060608011 Ref C: 2024-03-03T22:00:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:59:42.1478079Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"0046affe-ea0d-4c59-8f7c-4b83969a87a8","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3172' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9E1AA350EE7C4108850E5AEE6C95AA94 Ref B: MNZ221060608029 Ref C: 2024-03-03T22:00:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:59:42.1478079Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"0046affe-ea0d-4c59-8f7c-4b83969a87a8","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3172' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 175873B3B57B4CF78622B73739485117 Ref B: MNZ221060609017 Ref C: 2024-03-03T22:00:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006","name":"cli000006","location":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:59:42.1478079Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000006.documents.azure.com:443/","cassandraEndpoint":"https://cli000006.cassandra.cosmos.azure.com:443/","sqlEndpoint":"https://cli000006.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"0046affe-ea0d-4c59-8f7c-4b83969a87a8","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000006-eastus","locationName":"East + US","documentEndpoint":"https://cli000006-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000006-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:59:42.1478079Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3172' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8C9EF40070A247BAB032BFA7B2504083 Ref B: MNZ221060608023 Ref C: 2024-03-03T22:00:27Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"source": {"component": "CosmosDBCassandra", "keyspaceName": + "cli000002", "tableName": "cli000003"}, "destination": {"component": "CosmosDBCassandra", + "keyspaceName": "cli000002", "tableName": "cli000004"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts copy + Connection: + - keep-alive + Content-Length: + - '223' + Content-Type: + - application/json + ParameterSetName: + - -g --job-name --account-name --source-cassandra-table --dest-cassandra-table + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T22:00:27.9660462Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '636' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: A00EB18C9CD048BAABE3CAD8C06F7BFB Ref B: MNZ221060609031 Ref C: 2024-03-03T22:00:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T22:00:27Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '628' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1EEE5C9D4FF94DA2B94C0994AF18D2C9 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:00:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts list + Connection: + - keep-alive + ParameterSetName: + - -g --account-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs?api-version=2024-02-15-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T22:00:27Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '640' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5F403A8CDD07438F9F26202E33F97914 Ref B: MNZ221060608045 Ref C: 2024-03-03T22:00:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts pause + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/pause?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-03-03T22:00:29Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '627' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 6149627C4F544772AA524DBF60D8F8EF Ref B: MNZ221060609017 Ref C: 2024-03-03T22:00:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Paused","lastUpdatedUtcTime":"2024-03-03T22:00:29Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '627' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 39E0D8F972D94390887A6FF4518DDBF0 Ref B: MNZ221060610021 Ref C: 2024-03-03T22:00:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts resume + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/resume?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T22:00:30Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '628' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 53F088E4530345AD9A43E35DBFB34AF9 Ref B: MNZ221060608049 Ref C: 2024-03-03T22:00:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Pending","lastUpdatedUtcTime":"2024-03-03T22:00:30Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '628' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F30EB0A7A40740839CFEF18A3702E2B3 Ref B: MNZ221060609025 Ref C: 2024-03-03T22:00:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts cancel + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005/cancel?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-03-03T22:00:32Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '630' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: E96484D086564CD0933C0F161581DA05 Ref B: MNZ221060610047 Ref C: 2024-03-03T22:00:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb dts show + Connection: + - keep-alive + ParameterSetName: + - -g --account-name --job-name + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_dts_cassandra000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000006/dataTransferJobs/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs","properties":{"jobName":"cli000005","status":"Cancelled","lastUpdatedUtcTime":"2024-03-03T22:00:32Z","processedCount":0,"totalCount":0,"mode":"Offline","duration":"00:00:00","source":{"keyspaceName":"cli000002","tableName":"cli000003","component":"CosmosDBCassandra"},"destination":{"keyspaceName":"cli000002","tableName":"cli000004","component":"CosmosDBCassandra"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '630' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B61DB1E760FC4F618F9A9C152326C2A3 Ref B: MNZ221060610039 Ref C: 2024-03-03T22:00:32Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml new file mode 100644 index 00000000000..4ff10490362 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_enable_per_region_per_partition_autoscale.yaml @@ -0,0 +1,2007 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cosmosTest?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest","name":"cosmosTest","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:24:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D715593474C746EA9220A9FEB38405CB Ref B: BL2AA2010202053 Ref C: 2024-03-03T21:24:53Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "centralus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "centralus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "enablePerRegionPerPartitionAutoscale": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '296' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:24:57.5571192Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Invalid"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:24:57.5571192Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:24:57.5571192Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:24:57.5571192Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:24:57.5571192Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/f4a72662-68d3-45f5-b928-63f4e250943f?api-version=2024-02-15-preview&t=638450978992815916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NQwGmdbWw4yiYCwWYbRXlJ44WAM3mhUVg2di6ZIF2yegGxxqR1y6Imh_RI9JtqDROL2A4v77MBG2nV0sV3otw_sPAvTrjZl9ff_0u7DOHdZcKCAy7II3jZu88XCP7yGqang6n-uYeJ8U2YmSFulSkF2hnwVNXmYyrwutyPviGvjJNLFfB8Mz7tbNF4VqeLh1dc1dTIyJrV_VMFS-YGbliUV546W-qsvJo_HR9g9Saq-dYQrzrteav5xNKwuxrtm83aztKZuX8TjEFNnvhjpUK4JRNw7OqvxX-6m4en7l1rUjaRMDQsOgnlWTcaLCsWACWw0BfX-NgVHrzZEEzQu_Dw&h=-YFvyi-Zc25J0y9j9Kn5ALRGk3HiS7sQ72MCFt3_sB4 + cache-control: + - no-store, no-cache + content-length: + - '2785' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:59 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/f4a72662-68d3-45f5-b928-63f4e250943f?api-version=2024-02-15-preview&t=638450978992972152&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gkAwmUOs5RxtcSn2hMUsJOxUs0OeKhGaNv6-UYxdft634mGuaKENCZZVdo-Oqkl65VhrFg6-milBNT6CprPVXqFI5Bpb3JU8nvR3VyDSk3KsLgFW2oVs-yVgnZoxYatTSonnQ3gkFNoD5Qu_wQrxZV9xpQdu008hNGvbAs92kGmOSJMZavCBkwB373jlcXxnFsYt1JgGhd5ljsbfGUVldJoC2t3LsLoN4DdClyQ5O9qzK5xEjmXmb-0Nn3G2Vqw8dGb6c05AUk9qzr1Rcauo1fKMuxINIml1UAb1Fe6-ATePnIrKlcnjSg-R_S15_N-L7Ifa4XUkDhP6fUDWuXGFQQ&h=3HjHLvT540KzKEgfpdhITZYTMg3-aG6D3qbyjpB_UwI + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: FC994AC5B66F491C80811C6BBC3D4A60 Ref B: BL2AA2010202035 Ref C: 2024-03-03T21:24:53Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/f4a72662-68d3-45f5-b928-63f4e250943f?api-version=2024-02-15-preview&t=638450978992815916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NQwGmdbWw4yiYCwWYbRXlJ44WAM3mhUVg2di6ZIF2yegGxxqR1y6Imh_RI9JtqDROL2A4v77MBG2nV0sV3otw_sPAvTrjZl9ff_0u7DOHdZcKCAy7II3jZu88XCP7yGqang6n-uYeJ8U2YmSFulSkF2hnwVNXmYyrwutyPviGvjJNLFfB8Mz7tbNF4VqeLh1dc1dTIyJrV_VMFS-YGbliUV546W-qsvJo_HR9g9Saq-dYQrzrteav5xNKwuxrtm83aztKZuX8TjEFNnvhjpUK4JRNw7OqvxX-6m4en7l1rUjaRMDQsOgnlWTcaLCsWACWw0BfX-NgVHrzZEEzQu_Dw&h=-YFvyi-Zc25J0y9j9Kn5ALRGk3HiS7sQ72MCFt3_sB4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 08AC0FA075C240FDB23FC0D797092C56 Ref B: BL2AA2010204029 Ref C: 2024-03-03T21:24:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/f4a72662-68d3-45f5-b928-63f4e250943f?api-version=2024-02-15-preview&t=638450978992815916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NQwGmdbWw4yiYCwWYbRXlJ44WAM3mhUVg2di6ZIF2yegGxxqR1y6Imh_RI9JtqDROL2A4v77MBG2nV0sV3otw_sPAvTrjZl9ff_0u7DOHdZcKCAy7II3jZu88XCP7yGqang6n-uYeJ8U2YmSFulSkF2hnwVNXmYyrwutyPviGvjJNLFfB8Mz7tbNF4VqeLh1dc1dTIyJrV_VMFS-YGbliUV546W-qsvJo_HR9g9Saq-dYQrzrteav5xNKwuxrtm83aztKZuX8TjEFNnvhjpUK4JRNw7OqvxX-6m4en7l1rUjaRMDQsOgnlWTcaLCsWACWw0BfX-NgVHrzZEEzQu_Dw&h=-YFvyi-Zc25J0y9j9Kn5ALRGk3HiS7sQ72MCFt3_sB4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:25:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DB28EEFF8F73458DACEC2C8F892ADE23 Ref B: BL2AA2010202037 Ref C: 2024-03-03T21:25:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/f4a72662-68d3-45f5-b928-63f4e250943f?api-version=2024-02-15-preview&t=638450978992815916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NQwGmdbWw4yiYCwWYbRXlJ44WAM3mhUVg2di6ZIF2yegGxxqR1y6Imh_RI9JtqDROL2A4v77MBG2nV0sV3otw_sPAvTrjZl9ff_0u7DOHdZcKCAy7II3jZu88XCP7yGqang6n-uYeJ8U2YmSFulSkF2hnwVNXmYyrwutyPviGvjJNLFfB8Mz7tbNF4VqeLh1dc1dTIyJrV_VMFS-YGbliUV546W-qsvJo_HR9g9Saq-dYQrzrteav5xNKwuxrtm83aztKZuX8TjEFNnvhjpUK4JRNw7OqvxX-6m4en7l1rUjaRMDQsOgnlWTcaLCsWACWw0BfX-NgVHrzZEEzQu_Dw&h=-YFvyi-Zc25J0y9j9Kn5ALRGk3HiS7sQ72MCFt3_sB4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:25:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 512E48BE007D4DD1852E1A79BF504C06 Ref B: BL2AA2010202017 Ref C: 2024-03-03T21:25:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/f4a72662-68d3-45f5-b928-63f4e250943f?api-version=2024-02-15-preview&t=638450978992815916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NQwGmdbWw4yiYCwWYbRXlJ44WAM3mhUVg2di6ZIF2yegGxxqR1y6Imh_RI9JtqDROL2A4v77MBG2nV0sV3otw_sPAvTrjZl9ff_0u7DOHdZcKCAy7II3jZu88XCP7yGqang6n-uYeJ8U2YmSFulSkF2hnwVNXmYyrwutyPviGvjJNLFfB8Mz7tbNF4VqeLh1dc1dTIyJrV_VMFS-YGbliUV546W-qsvJo_HR9g9Saq-dYQrzrteav5xNKwuxrtm83aztKZuX8TjEFNnvhjpUK4JRNw7OqvxX-6m4en7l1rUjaRMDQsOgnlWTcaLCsWACWw0BfX-NgVHrzZEEzQu_Dw&h=-YFvyi-Zc25J0y9j9Kn5ALRGk3HiS7sQ72MCFt3_sB4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4B41CFD812C64D779B12519A51435E71 Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:26:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/f4a72662-68d3-45f5-b928-63f4e250943f?api-version=2024-02-15-preview&t=638450978992815916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NQwGmdbWw4yiYCwWYbRXlJ44WAM3mhUVg2di6ZIF2yegGxxqR1y6Imh_RI9JtqDROL2A4v77MBG2nV0sV3otw_sPAvTrjZl9ff_0u7DOHdZcKCAy7II3jZu88XCP7yGqang6n-uYeJ8U2YmSFulSkF2hnwVNXmYyrwutyPviGvjJNLFfB8Mz7tbNF4VqeLh1dc1dTIyJrV_VMFS-YGbliUV546W-qsvJo_HR9g9Saq-dYQrzrteav5xNKwuxrtm83aztKZuX8TjEFNnvhjpUK4JRNw7OqvxX-6m4en7l1rUjaRMDQsOgnlWTcaLCsWACWw0BfX-NgVHrzZEEzQu_Dw&h=-YFvyi-Zc25J0y9j9Kn5ALRGk3HiS7sQ72MCFt3_sB4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4772D2AF804549BBAA392A4625900FA1 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:27:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3208' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AC0842AEC65842148E467512A902CFC3 Ref B: BL2AA2010202051 Ref C: 2024-03-03T21:27:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3208' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 05604373BCCF42B0B6001191F60CBB00 Ref B: BL2AA2010205027 Ref C: 2024-03-03T21:27:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3208' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 811AC7A1474E458EAEF6C7BC9302E0C1 Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:27:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3208' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3CD72765C76A4B1AADEA0DB387A5B956 Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:27:01Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"apiProperties": {}, "enablePerRegionPerPartitionAutoscale": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + Content-Length: + - '84' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/ebdf9df9-e680-49ab-b65a-202aeaf4511c?api-version=2024-02-15-preview&t=638450980262985100&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QQRMuAxyI0WXAJPpBHgTJTtST9ELrZbVaczzJB0ADpPjqo3hQOG0IEaWY_SOmGMJyVdQnm3Uv1VVyY06R8uj9iW2B5ElAAiCPmM1fCqSUXw0lmU1xRbHbMB7hZcLgeDs_9D1vpnAi5d9To2oZJl5Mwhb-YOZa7606NszSqy6nMsLNJJrpMKONijnJ2pcLkiuKcajGBOwFCliqUyyz5nEYhz1YSDEZZO3Q_hsl1dwqeC8ZWuWAskjz3uhtZ0jfFI4ZVP3t_vCl1j3cfOxZeM5ybYcoflfLhMIoY58Aq2U3IOaq6W2h__zbOT2R-PNipAp0lNGiJD-iFv1oYflPaAwbQ&h=oxxBsjApqNqCykhgRJO5XYyIAtg_KQHL0WJ_YMyv0Ys + cache-control: + - no-store, no-cache + content-length: + - '3207' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:05 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/ebdf9df9-e680-49ab-b65a-202aeaf4511c?api-version=2024-02-15-preview&t=638450980263141342&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Zh4HT2_ucsNd6X8yb2u0jw1zOYBSctMwTZZxqmLP1NWcUCAu1JorzfYAX4JmXo7rtVfaaFBhdRucQshNOe0isXA7NqdrDQMkZxtfMrVojs2iKVNKrZf8oFqh9eRZFJVnhFDYsbnI3vP41KsiPZdvBZeGEgrmPHART6eu20xDtWWu3_K74Zmy2Jp8IozwIKxS8d9Zzv2X8LMcRXTqUiiS3eNfQdvYbwkfAQQdLKLYY4LiB5jx0JniaPel0R0t1e_ybM8ae_jy4mjIHvVussZ92_20s3ruw1N8NGoMZttLnEoIrA3zHJqmiYtKOCQ-EVA509I7nvYkgx3nBKd-4hBiMA&h=CNdT7wug9ZyVwkRHtvrt5LjYcAi7z8b32Pd4y57YApY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: C2C3D955723D4B598D69EB42C736FE1F Ref B: BL2AA2030104009 Ref C: 2024-03-03T21:27:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/ebdf9df9-e680-49ab-b65a-202aeaf4511c?api-version=2024-02-15-preview&t=638450980262985100&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QQRMuAxyI0WXAJPpBHgTJTtST9ELrZbVaczzJB0ADpPjqo3hQOG0IEaWY_SOmGMJyVdQnm3Uv1VVyY06R8uj9iW2B5ElAAiCPmM1fCqSUXw0lmU1xRbHbMB7hZcLgeDs_9D1vpnAi5d9To2oZJl5Mwhb-YOZa7606NszSqy6nMsLNJJrpMKONijnJ2pcLkiuKcajGBOwFCliqUyyz5nEYhz1YSDEZZO3Q_hsl1dwqeC8ZWuWAskjz3uhtZ0jfFI4ZVP3t_vCl1j3cfOxZeM5ybYcoflfLhMIoY58Aq2U3IOaq6W2h__zbOT2R-PNipAp0lNGiJD-iFv1oYflPaAwbQ&h=oxxBsjApqNqCykhgRJO5XYyIAtg_KQHL0WJ_YMyv0Ys + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6CB1DA4D555844C68DA25407BD542881 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:27:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/ebdf9df9-e680-49ab-b65a-202aeaf4511c?api-version=2024-02-15-preview&t=638450980262985100&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QQRMuAxyI0WXAJPpBHgTJTtST9ELrZbVaczzJB0ADpPjqo3hQOG0IEaWY_SOmGMJyVdQnm3Uv1VVyY06R8uj9iW2B5ElAAiCPmM1fCqSUXw0lmU1xRbHbMB7hZcLgeDs_9D1vpnAi5d9To2oZJl5Mwhb-YOZa7606NszSqy6nMsLNJJrpMKONijnJ2pcLkiuKcajGBOwFCliqUyyz5nEYhz1YSDEZZO3Q_hsl1dwqeC8ZWuWAskjz3uhtZ0jfFI4ZVP3t_vCl1j3cfOxZeM5ybYcoflfLhMIoY58Aq2U3IOaq6W2h__zbOT2R-PNipAp0lNGiJD-iFv1oYflPaAwbQ&h=oxxBsjApqNqCykhgRJO5XYyIAtg_KQHL0WJ_YMyv0Ys + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AE91E178CFDC4F13A8C2E177AEBEBFF6 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:27:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/ebdf9df9-e680-49ab-b65a-202aeaf4511c?api-version=2024-02-15-preview&t=638450980262985100&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QQRMuAxyI0WXAJPpBHgTJTtST9ELrZbVaczzJB0ADpPjqo3hQOG0IEaWY_SOmGMJyVdQnm3Uv1VVyY06R8uj9iW2B5ElAAiCPmM1fCqSUXw0lmU1xRbHbMB7hZcLgeDs_9D1vpnAi5d9To2oZJl5Mwhb-YOZa7606NszSqy6nMsLNJJrpMKONijnJ2pcLkiuKcajGBOwFCliqUyyz5nEYhz1YSDEZZO3Q_hsl1dwqeC8ZWuWAskjz3uhtZ0jfFI4ZVP3t_vCl1j3cfOxZeM5ybYcoflfLhMIoY58Aq2U3IOaq6W2h__zbOT2R-PNipAp0lNGiJD-iFv1oYflPaAwbQ&h=oxxBsjApqNqCykhgRJO5XYyIAtg_KQHL0WJ_YMyv0Ys + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 46D8213ECFF04F5AA2EFF7D65EA3407A Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:28:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3234' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2E0330B5ADF64F98857879A18EED0617 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:28:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3234' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D59FD98987D549C58562DDF5F8C15E3E Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:28:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3234' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D6942ECC3807468F9AD1B2E138D84378 Ref B: BL2AA2010201047 Ref C: 2024-03-03T21:28:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3234' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6E96E1711C4A4C5CB1A3E609BFCE2825 Ref B: BL2AA2010202009 Ref C: 2024-03-03T21:28:08Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"apiProperties": {}, "enablePerRegionPerPartitionAutoscale": + true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + Content-Length: + - '83' + Content-Type: + - application/json + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173+00:00"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/568384dd-540b-4c99-89db-23380019a901?api-version=2024-02-15-preview&t=638450980927125651&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f8xU2pYt8criT-t1WG9yXpHaadwDWBnnK7ae45XlWj6VmTRkINOk5xZAmM7X_UEcid_znhvJAzkNFXlPySUr-AMWJFWMZ6cY3BmPbogNGV4hCDmk7pI6MllPAS2tPqK-gC3x7JK1XiOHz0W2Af7HgJjV5NRUVMuv4Si07lhVtjTuJR1oLnd1ER6DQcgG0JgjitiTV8B_mYdahih1wDlJfHRpfkqwgzCPSYUtqnWBhXSJptWtXNzVpwHFGU3y-ppRDQIyAcZwlO-cBZfPCaucUIOLy9iX0inUtGp5f12o_7zjAVb6wg8vLzg5R9ZNjp59P11sgqE5fo2PMK_J1rgu7w&h=3HQjvmBj_xsuPsIZzgK8d2qiXsba7wSstiSgdWoD274 + cache-control: + - no-store, no-cache + content-length: + - '3233' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:11 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818/operationResults/568384dd-540b-4c99-89db-23380019a901?api-version=2024-02-15-preview&t=638450980927125651&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YYf02Ubgjhgp4ODBihPqTf6AmgsX07QZcPRidNI1sKqV8zsfSoK_2OyHV3FwbYCUWjufVfAmiAYQo8BVHpplc9iLtLAJ2lQrY32CM_Q_u8TEkPouKyaBDAk-ih9EGVL1E8MTO_0lXKtkjG8nKCFTc3hNAzzwIDrzf5965bhu210EHcgzj3g1TGrYOzbihU14JaHxjyL5HI_oTvWtZ3Nk9HMF1q2qjUcERqK4t5B2LcKDg-JD2Oe3O8y_Fm2sH5RkbNV_fACK30_BCxKiFDv8UA5TRHDB0LtOxB4Qfwr6-TVgNsmJUvc38CfmTGTAGzt0IayfCLNi7Ani3H652j992A&h=424hAeHhEBcVZRB28e919ObEJqpVWmdq3CS50KsOFUI + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: E91C1E28D0B640D9BADC542F8958059D Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:28:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/568384dd-540b-4c99-89db-23380019a901?api-version=2024-02-15-preview&t=638450980927125651&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f8xU2pYt8criT-t1WG9yXpHaadwDWBnnK7ae45XlWj6VmTRkINOk5xZAmM7X_UEcid_znhvJAzkNFXlPySUr-AMWJFWMZ6cY3BmPbogNGV4hCDmk7pI6MllPAS2tPqK-gC3x7JK1XiOHz0W2Af7HgJjV5NRUVMuv4Si07lhVtjTuJR1oLnd1ER6DQcgG0JgjitiTV8B_mYdahih1wDlJfHRpfkqwgzCPSYUtqnWBhXSJptWtXNzVpwHFGU3y-ppRDQIyAcZwlO-cBZfPCaucUIOLy9iX0inUtGp5f12o_7zjAVb6wg8vLzg5R9ZNjp59P11sgqE5fo2PMK_J1rgu7w&h=3HQjvmBj_xsuPsIZzgK8d2qiXsba7wSstiSgdWoD274 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 40B13AF22A3D4963BBD11EE1D03161D3 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:28:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/568384dd-540b-4c99-89db-23380019a901?api-version=2024-02-15-preview&t=638450980927125651&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f8xU2pYt8criT-t1WG9yXpHaadwDWBnnK7ae45XlWj6VmTRkINOk5xZAmM7X_UEcid_znhvJAzkNFXlPySUr-AMWJFWMZ6cY3BmPbogNGV4hCDmk7pI6MllPAS2tPqK-gC3x7JK1XiOHz0W2Af7HgJjV5NRUVMuv4Si07lhVtjTuJR1oLnd1ER6DQcgG0JgjitiTV8B_mYdahih1wDlJfHRpfkqwgzCPSYUtqnWBhXSJptWtXNzVpwHFGU3y-ppRDQIyAcZwlO-cBZfPCaucUIOLy9iX0inUtGp5f12o_7zjAVb6wg8vLzg5R9ZNjp59P11sgqE5fo2PMK_J1rgu7w&h=3HQjvmBj_xsuPsIZzgK8d2qiXsba7wSstiSgdWoD274 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 29C1183F58CD49F7B4F171CC2C7D6CDC Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:28:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/568384dd-540b-4c99-89db-23380019a901?api-version=2024-02-15-preview&t=638450980927125651&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f8xU2pYt8criT-t1WG9yXpHaadwDWBnnK7ae45XlWj6VmTRkINOk5xZAmM7X_UEcid_znhvJAzkNFXlPySUr-AMWJFWMZ6cY3BmPbogNGV4hCDmk7pI6MllPAS2tPqK-gC3x7JK1XiOHz0W2Af7HgJjV5NRUVMuv4Si07lhVtjTuJR1oLnd1ER6DQcgG0JgjitiTV8B_mYdahih1wDlJfHRpfkqwgzCPSYUtqnWBhXSJptWtXNzVpwHFGU3y-ppRDQIyAcZwlO-cBZfPCaucUIOLy9iX0inUtGp5f12o_7zjAVb6wg8vLzg5R9ZNjp59P11sgqE5fo2PMK_J1rgu7w&h=3HQjvmBj_xsuPsIZzgK8d2qiXsba7wSstiSgdWoD274 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7F71CA4EFB124966B583CBB8C6343EDF Ref B: BL2AA2010201003 Ref C: 2024-03-03T21:29:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3233' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CFBE701C47DE4F339E230B1E7082C7D8 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:29:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-per-region-per-partition-autoscale + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3233' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7C8C6BEAA5A54B4D9A4D862FF4184931 Ref B: BL2AA2010205021 Ref C: 2024-03-03T21:29:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818","name":"prpp-test-38129749818","location":"Central + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:26:26.2585173+00:00"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","sqlEndpoint":"https://prpp-test-38129749818.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"c520f1f6-09e4-4c85-81c8-2d7868861faa","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":true,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","documentEndpoint":"https://prpp-test-38129749818-centralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"prpp-test-38129749818-centralus","locationName":"Central + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8,"backupStorageRedundancy":"Geo"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:26:26.2585173+00:00"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3233' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C248CD72137040259004760160C1B4B9 Ref B: BL2AA2010201053 Ref C: 2024-03-03T21:29:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cosmosTest/providers/Microsoft.DocumentDB/databaseAccounts/prpp-test-38129749818?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:14 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationResults/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552499777&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=erEjU8jFUKkQUt1tAWf2Fxbh9IVLfUN_Iz6gcN3fas-Wuhy-DOkQT1xWTIMhkgUWrsvgaBegjESJDoYWz_DMQ9bmPGT5dWJZnGTldblIV4nVMMjFmctao3XVXC7ORbyXUeFA_PwVNenGIlTlktUEFW2lnp1N_lNO-0-Vor3klMa9P49TWmzYC5v9o3X9fvJWUoO3iIvvCDKCb18wV1xZeCH0PDALS-WtgEl-6JJKlaYsa4ob20zNLyTJ29hnp-gHLADH4YgE2t743Jq9zviOUuCsiGd1QbHUFo4y2hcdfWUZqkzjXppnbLnIs2aJzp8MfpCJwC-YKpfE-e4KXOoKuw&h=bKyILLnddqTPZ4l_xZqARyxarcCwG-Z-RatHJYayKRg + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 49CB28B049704014BA5AB61D1DEEED48 Ref B: BL2AA2010204049 Ref C: 2024-03-03T21:29:14Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FFC0272845C04A0099F9428D8DEEB750 Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:29:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4D5A7C9C175347ECB1F51BDA4F034178 Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:29:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A2CD0EACBC964FE9B95A5EBED1611BB7 Ref B: BL2AA2030102031 Ref C: 2024-03-03T21:30:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7341B4AFF725454CA281EC8BCF83AE24 Ref B: BL2AA2010203007 Ref C: 2024-03-03T21:30:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6D955127D4834FB089993DC3DDD2A512 Ref B: BL2AA2010202037 Ref C: 2024-03-03T21:31:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 39C573E892CC403FA7C9CEF1BE83031B Ref B: BL2AA2030102047 Ref C: 2024-03-03T21:31:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DB21069E2EC4425885D7722BB56B1581 Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:32:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 50F76BAEE3234B56A7DFE8FEA1A66144 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:32:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9BFB23F1CFDE487CADC86FD40D23997E Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:33:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0B0F7A2AD85E4B67899DA33FA29E7221 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:33:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B519F8C5889841708CB79764ED194713 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:34:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 812099F2C3B7495A99333682265A143D Ref B: BL2AA2010202033 Ref C: 2024-03-03T21:34:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 42D16A17AFB345BC80639B7B3AB5C77D Ref B: BL2AA2010204049 Ref C: 2024-03-03T21:35:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E7D0F2F1D3BF47848B9AED7D8D9E3682 Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:35:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 54F855CEB848459C8B4EADA0AC99A992 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:36:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/1755235f-ee44-4da2-ad5f-3c72cbe08c5b?api-version=2023-11-15&t=638450981552343559&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o3VhgutUfohhIF-GY-Dfl1VREvdXwD-qnO51Q1iKj7qVwAAXa7F2UwnR5wHZEvLRInReoWYm1iqVssqU2U_-Wz6eEhu8aB8g2Je9vButBuJ5uAVoN5BQqs56_m6PLo3cXyLGkcXnJByNYSFuj-9XtcRHAChV8EIdqH9sDUwO0YDbOTGZUz2HZkUX0_2JgeF0dvPm6U618nauRgNSVNUl9NrO030dXWgpynsp59rFpdboujeacSYLytA-F8GW962WfpWX2rdgBRFblEu6duIKthGG7DGhOWucXVYfT8q0h5Z2Ng5knBwGlZoEXQ7MgqCWlv_gGfYzo--XPzfrgg38GQ&h=pu1MHyufi_2LbxHtUfC853AstBPoSiym3l9UUMc-8mQ + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3798FEB9D337475FB96D4C90DB78AB33 Ref B: BL2AA2010202021 Ref C: 2024-03-03T21:36:47Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml new file mode 100644 index 00000000000..4f009bb1fe9 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml @@ -0,0 +1,1110 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_database000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001","name":"cli_test_cosmosdb_gremlin_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_database","date":"2024-03-03T21:13:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '426' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 4AB24239FB8244B2B78797A1556B10B8 Ref B: BL2AA2030103023 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], + "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", + "continuousModeProperties": {"tier": "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '387' + Content-Type: + - application/json + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:13:35.5506222Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:13:35.5506222Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:13:35.5506222Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.5506222Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.5506222Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OdsSirWxKOv3Rt8t-94gqyP0yNpjYH5ZAxIoD6z9eVBVMS75yulDsYA7WXAPysEzz6ytIR2OCLj3CFYqL5ONHaq8d4oqhtEIWd72kbC90F55vPefyt7reGk51gHdgr6KD0emWXfEEKKEfyBwC4HsNSnNqkedKeXsmqN05ezpdx0ZSXA-JdICg-Y4uHWVCIA-CZMCgdUgNANARSlkL37rvGBEKQPkqHuVKhdbk8daun__DgHesBcOgClUK-zMTJxYiwss0gdBX7eX4eve8hLvNMustqN7xJw58bwkVZVF4kA4bKnc8lm4A6w9k_c29ulNRQFJdtTbAf9Ad6ABpaee2w&h=4JLHyVr3aPO2fHawJUl_MjXiSP5OUtMcd1jfuA4kKnY + cache-control: + - no-store, no-cache + content-length: + - '2670' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lnvhJ9_YgsaBVDP7C5IuSMeUgcLTtMnkJ977lafmyZZ0GfnlDZO1MG_5I7wYV1RKc9vgaSXnjjmpVMQWmw7oWEJ2YmAwuuo2hwJdLlYNeSWrJgZjDXHbWpISFEPJMlbP16zUFUHqLq7rASQ6xUykMrBhjfj11wG3VwexQV8GeAY4JmCA0ceXNzmJ31fvUcQfTjO4gP_GaWKoNMnliTm3PVIYS9EV5OmIEKRDv7bTaozyam15MGhKnKSf3cpvb8keiPJ8OQzbTNWNyfjewSOfUQ-NxhUJWgLWtsiGaBePNjkDrh6bB5TydnHE5qUHUcsXpcIDTnQjm7WUAsB9S7TSYA&h=weCfiPaXPabAdKzj70BAp0_fHR84-B8czdeKRXL8BbQ + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 27D7A8DF5D304CF48DF60DEFD1604999 Ref B: BL2AA2030104009 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OdsSirWxKOv3Rt8t-94gqyP0yNpjYH5ZAxIoD6z9eVBVMS75yulDsYA7WXAPysEzz6ytIR2OCLj3CFYqL5ONHaq8d4oqhtEIWd72kbC90F55vPefyt7reGk51gHdgr6KD0emWXfEEKKEfyBwC4HsNSnNqkedKeXsmqN05ezpdx0ZSXA-JdICg-Y4uHWVCIA-CZMCgdUgNANARSlkL37rvGBEKQPkqHuVKhdbk8daun__DgHesBcOgClUK-zMTJxYiwss0gdBX7eX4eve8hLvNMustqN7xJw58bwkVZVF4kA4bKnc8lm4A6w9k_c29ulNRQFJdtTbAf9Ad6ABpaee2w&h=4JLHyVr3aPO2fHawJUl_MjXiSP5OUtMcd1jfuA4kKnY + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4EDBDCA13B5E439390974ABA662B5E75 Ref B: BL2AA2030101047 Ref C: 2024-03-03T21:13:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OdsSirWxKOv3Rt8t-94gqyP0yNpjYH5ZAxIoD6z9eVBVMS75yulDsYA7WXAPysEzz6ytIR2OCLj3CFYqL5ONHaq8d4oqhtEIWd72kbC90F55vPefyt7reGk51gHdgr6KD0emWXfEEKKEfyBwC4HsNSnNqkedKeXsmqN05ezpdx0ZSXA-JdICg-Y4uHWVCIA-CZMCgdUgNANARSlkL37rvGBEKQPkqHuVKhdbk8daun__DgHesBcOgClUK-zMTJxYiwss0gdBX7eX4eve8hLvNMustqN7xJw58bwkVZVF4kA4bKnc8lm4A6w9k_c29ulNRQFJdtTbAf9Ad6ABpaee2w&h=4JLHyVr3aPO2fHawJUl_MjXiSP5OUtMcd1jfuA4kKnY + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3DFF074623D14ECFBADB69710A867984 Ref B: BL2AA2010203053 Ref C: 2024-03-03T21:14:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OdsSirWxKOv3Rt8t-94gqyP0yNpjYH5ZAxIoD6z9eVBVMS75yulDsYA7WXAPysEzz6ytIR2OCLj3CFYqL5ONHaq8d4oqhtEIWd72kbC90F55vPefyt7reGk51gHdgr6KD0emWXfEEKKEfyBwC4HsNSnNqkedKeXsmqN05ezpdx0ZSXA-JdICg-Y4uHWVCIA-CZMCgdUgNANARSlkL37rvGBEKQPkqHuVKhdbk8daun__DgHesBcOgClUK-zMTJxYiwss0gdBX7eX4eve8hLvNMustqN7xJw58bwkVZVF4kA4bKnc8lm4A6w9k_c29ulNRQFJdtTbAf9Ad6ABpaee2w&h=4JLHyVr3aPO2fHawJUl_MjXiSP5OUtMcd1jfuA4kKnY + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CAD3DEF0506B42309158688C469C7D9C Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:14:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OdsSirWxKOv3Rt8t-94gqyP0yNpjYH5ZAxIoD6z9eVBVMS75yulDsYA7WXAPysEzz6ytIR2OCLj3CFYqL5ONHaq8d4oqhtEIWd72kbC90F55vPefyt7reGk51gHdgr6KD0emWXfEEKKEfyBwC4HsNSnNqkedKeXsmqN05ezpdx0ZSXA-JdICg-Y4uHWVCIA-CZMCgdUgNANARSlkL37rvGBEKQPkqHuVKhdbk8daun__DgHesBcOgClUK-zMTJxYiwss0gdBX7eX4eve8hLvNMustqN7xJw58bwkVZVF4kA4bKnc8lm4A6w9k_c29ulNRQFJdtTbAf9Ad6ABpaee2w&h=4JLHyVr3aPO2fHawJUl_MjXiSP5OUtMcd1jfuA4kKnY + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F82D1F0EE01E461F9B6F54A9E512062C Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:15:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OdsSirWxKOv3Rt8t-94gqyP0yNpjYH5ZAxIoD6z9eVBVMS75yulDsYA7WXAPysEzz6ytIR2OCLj3CFYqL5ONHaq8d4oqhtEIWd72kbC90F55vPefyt7reGk51gHdgr6KD0emWXfEEKKEfyBwC4HsNSnNqkedKeXsmqN05ezpdx0ZSXA-JdICg-Y4uHWVCIA-CZMCgdUgNANARSlkL37rvGBEKQPkqHuVKhdbk8daun__DgHesBcOgClUK-zMTJxYiwss0gdBX7eX4eve8hLvNMustqN7xJw58bwkVZVF4kA4bKnc8lm4A6w9k_c29ulNRQFJdtTbAf9Ad6ABpaee2w&h=4JLHyVr3aPO2fHawJUl_MjXiSP5OUtMcd1jfuA4kKnY + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 89F894727B7F4723ADB86FB4AEB7F503 Ref B: BL2AA2030101033 Ref C: 2024-03-03T21:15:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OdsSirWxKOv3Rt8t-94gqyP0yNpjYH5ZAxIoD6z9eVBVMS75yulDsYA7WXAPysEzz6ytIR2OCLj3CFYqL5ONHaq8d4oqhtEIWd72kbC90F55vPefyt7reGk51gHdgr6KD0emWXfEEKKEfyBwC4HsNSnNqkedKeXsmqN05ezpdx0ZSXA-JdICg-Y4uHWVCIA-CZMCgdUgNANARSlkL37rvGBEKQPkqHuVKhdbk8daun__DgHesBcOgClUK-zMTJxYiwss0gdBX7eX4eve8hLvNMustqN7xJw58bwkVZVF4kA4bKnc8lm4A6w9k_c29ulNRQFJdtTbAf9Ad6ABpaee2w&h=4JLHyVr3aPO2fHawJUl_MjXiSP5OUtMcd1jfuA4kKnY + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F34502964E1B4BEF92A3DEB18C26E250 Ref B: BL2AA2010201047 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8446ee15-b4c7-41c8-84fc-7d1eac3ff64f?api-version=2024-02-15-preview&t=638450972174243969&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OdsSirWxKOv3Rt8t-94gqyP0yNpjYH5ZAxIoD6z9eVBVMS75yulDsYA7WXAPysEzz6ytIR2OCLj3CFYqL5ONHaq8d4oqhtEIWd72kbC90F55vPefyt7reGk51gHdgr6KD0emWXfEEKKEfyBwC4HsNSnNqkedKeXsmqN05ezpdx0ZSXA-JdICg-Y4uHWVCIA-CZMCgdUgNANARSlkL37rvGBEKQPkqHuVKhdbk8daun__DgHesBcOgClUK-zMTJxYiwss0gdBX7eX4eve8hLvNMustqN7xJw58bwkVZVF4kA4bKnc8lm4A6w9k_c29ulNRQFJdtTbAf9Ad6ABpaee2w&h=4JLHyVr3aPO2fHawJUl_MjXiSP5OUtMcd1jfuA4kKnY + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7357C236790A4084B6D7880718549C53 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:39.7498325Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:39.7498325Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:39.7498325Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:39.7498325Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:39.7498325Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3096' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 90516971A8EB422186380A9429CEB72F Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:39.7498325Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:39.7498325Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:39.7498325Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:39.7498325Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:39.7498325Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3096' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C45486D718264FDA8B7617005D5CC9A0 Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 533d9719-d9a3-11ee-9d5f-000d3a1e0e23, Request URI: /apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/6207d077-e7b9-4c2c-954f-ef92b9ccea88/partitions/9cbfeaa9-f356-48e2-9799-76f7ee6b12f6/replicas/133537623085546090s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:16:39.9491624Z, RequestEndTime: + 2024-03-03T21:16:39.9515097Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:15:42.3942329Z\\\",\\\"cpu\\\":0.345,\\\"memory\\\":477224984.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0478,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":334},{\\\"dateUtc\\\":\\\"2024-03-03T21:15:52.4044630Z\\\",\\\"cpu\\\":0.867,\\\"memory\\\":477228168.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1108,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":332},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:02.4145565Z\\\",\\\"cpu\\\":0.399,\\\"memory\\\":477221828.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0917,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":332},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:12.4247727Z\\\",\\\"cpu\\\":0.300,\\\"memory\\\":477225508.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0576,\\\"availableThreads\\\":32762,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":332},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:22.4348198Z\\\",\\\"cpu\\\":0.225,\\\"memory\\\":477267164.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0271,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":332},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:32.4450034Z\\\",\\\"cpu\\\":1.432,\\\"memory\\\":476838276.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0445,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":332}]}\\r\\nRequestStart: + 2024-03-03T21:16:39.9494112Z; ResponseTime: 2024-03-03T21:16:39.9515008Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/6207d077-e7b9-4c2c-954f-ef92b9ccea88/partitions/9cbfeaa9-f356-48e2-9799-76f7ee6b12f6/replicas/133537623085546090s, + LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.969, ActivityId: + 533d9719-d9a3-11ee-9d5f-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11000 | status: Unknown | lkt: 3/3/2024 9:16:39 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:16:39 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:16:39 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:16:39 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:39.9493229Z\\\", + \\\"durationInMs\\\": 0.0091},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:39.9493320Z\\\", \\\"durationInMs\\\": + 0.0027},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:39.9493347Z\\\", + \\\"durationInMs\\\": 0.0666},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:39.9494013Z\\\", \\\"durationInMs\\\": 1.5581},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:39.9509594Z\\\", + \\\"durationInMs\\\": 0.2345},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:39.9511939Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:16:39.8642827Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:16:39.8643164Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:16:39.9003441Z\\\"},\\\"requestSizeInBytes\\\":470,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:16:39.9494614Z; + ResponseTime: 2024-03-03T21:16:39.9515097Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.11:11000/apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/6207d077-e7b9-4c2c-954f-ef92b9ccea88/partitions/9cbfeaa9-f356-48e2-9799-76f7ee6b12f6/replicas/133537623085546091s, + LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.058, ActivityId: + 533d9719-d9a3-11ee-9d5f-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11000 | status: Unknown | lkt: 3/3/2024 9:16:39 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:16:39 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:16:39 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:16:39 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:39.9494130Z\\\", + \\\"durationInMs\\\": 0.0043},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:39.9494173Z\\\", \\\"durationInMs\\\": + 0.0014},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:39.9494187Z\\\", + \\\"durationInMs\\\": 0.0375},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:39.9494562Z\\\", \\\"durationInMs\\\": 1.7478},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:39.9512040Z\\\", + \\\"durationInMs\\\": 0.0602},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:39.9512642Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:16:39.8643575Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:16:39.8643775Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:16:39.9004812Z\\\"},\\\"requestSizeInBytes\\\":470,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7046' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D6F2A2EB0B874537BC59577D524179E7 Ref B: BL2AA2010201039 Ref C: 2024-03-03T21:16:39Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/22206b42-a460-44ae-beb6-362ef88a7f36?api-version=2023-11-15&t=638450974011672201&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Uu45yBS_Q9UaxXP_tvjXo97mOUECtV3-aqg3mt2kRUpFKgPM0gWVNihmHwoQ7LI2iirLwar8MGzOzf_wLZkmBWBq-NmyzCNDTx6Z8RtUcH4VRDhqkBHTxzv5AKRfJTtPODm9A9VetS9-b1SnB8PntBpiKF_rJjLPSQib-iQ_Ke9q4wGF6vsd32FvpnJ6s4XrlzadXUrX8sQGKwwdkQ6y3W1N-4Xo-DKhujpAmZVUjMxIUf_ymzAc7Rte1bBh121qDlHJP_CNsS7Wh7g48uRkfScKpb39MkJoLAMsHOzGh07MSIjxuyN9GBnULxjsfgushv41afQwid9P8IELON_qkQ&h=MezD7YDSzlPauZU53R6RXAjgh_1qTVlEslYgu4e-vAk + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:41 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002/operationResults/22206b42-a460-44ae-beb6-362ef88a7f36?api-version=2023-11-15&t=638450974011828496&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PXe5usPVUCrzCcqI0I-qOpe4z3X23GquQEXA2u0P5zxCgRCLRYdABsBanvY3gyO3DtguaTNDCZseGbCr_BGXY0WNGOZfYoqamu-98rerzYKd17fYCqE6o_9As9Nw5iBSy8hyXB3gm-_Lc6qS054hlk4ylxSz8CmPrqszqlZolYavsA9oMmUHPd6J-O1gYv_ppIqVpw_bIQ23RvVK-7LD0m5Of77v9t9RtoH7P7d_OjiFrLRSGjRm_U95O8FfwjFt5M2GD-D5pykfXFhOryg2PkwlH_EiZHDMLQ2AGaWKSOg8CTu7sC8n8T1nNesFyU38dD8x_xXR6vSqPEU2npHrtQ&h=e7Fppjgrru7P5GhWRxWrlzoCcE16CptQcC3A8Tmv7uc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: E419CC148F0E41FBA0E1DA728E0CB411 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:16:40Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/22206b42-a460-44ae-beb6-362ef88a7f36?api-version=2023-11-15&t=638450974011672201&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Uu45yBS_Q9UaxXP_tvjXo97mOUECtV3-aqg3mt2kRUpFKgPM0gWVNihmHwoQ7LI2iirLwar8MGzOzf_wLZkmBWBq-NmyzCNDTx6Z8RtUcH4VRDhqkBHTxzv5AKRfJTtPODm9A9VetS9-b1SnB8PntBpiKF_rJjLPSQib-iQ_Ke9q4wGF6vsd32FvpnJ6s4XrlzadXUrX8sQGKwwdkQ6y3W1N-4Xo-DKhujpAmZVUjMxIUf_ymzAc7Rte1bBh121qDlHJP_CNsS7Wh7g48uRkfScKpb39MkJoLAMsHOzGh07MSIjxuyN9GBnULxjsfgushv41afQwid9P8IELON_qkQ&h=MezD7YDSzlPauZU53R6RXAjgh_1qTVlEslYgu4e-vAk + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 057E9D5838B8429E81A4958F50CE33B3 Ref B: BL2AA2010203007 Ref C: 2024-03-03T21:16:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/22206b42-a460-44ae-beb6-362ef88a7f36?api-version=2023-11-15&t=638450974011672201&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Uu45yBS_Q9UaxXP_tvjXo97mOUECtV3-aqg3mt2kRUpFKgPM0gWVNihmHwoQ7LI2iirLwar8MGzOzf_wLZkmBWBq-NmyzCNDTx6Z8RtUcH4VRDhqkBHTxzv5AKRfJTtPODm9A9VetS9-b1SnB8PntBpiKF_rJjLPSQib-iQ_Ke9q4wGF6vsd32FvpnJ6s4XrlzadXUrX8sQGKwwdkQ6y3W1N-4Xo-DKhujpAmZVUjMxIUf_ymzAc7Rte1bBh121qDlHJP_CNsS7Wh7g48uRkfScKpb39MkJoLAMsHOzGh07MSIjxuyN9GBnULxjsfgushv41afQwid9P8IELON_qkQ&h=MezD7YDSzlPauZU53R6RXAjgh_1qTVlEslYgu4e-vAk + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B9F68A3B906B4ECE88DB779361867BC6 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:17:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"X0gcAA==","_self":"dbs/X0gcAA==/","_etag":"\"00002d08-0000-0700-0000-65e4e8be0000\"","_colls":"colls/","_users":"users/","_ts":1709500606}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '475' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EACC9B9DA5DF49A6ACF5939D01A37F55 Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:17:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"X0gcAA==","_self":"dbs/X0gcAA==/","_etag":"\"00002d08-0000-0700-0000-65e4e8be0000\"","_colls":"colls/","_users":"users/","_ts":1709500606}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '475' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A65DB6AA3C69448BBF389E8C45E583A6 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:17:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"X0gcAA==","_self":"dbs/X0gcAA==/","_etag":"\"00002d08-0000-0700-0000-65e4e8be0000\"","_colls":"colls/","_users":"users/","_ts":1709500606}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '487' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5802F63897FE412881A03BCE4DCEC588 Ref B: BL2AA2010204031 Ref C: 2024-03-03T21:17:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"X0gcAA==","_self":"dbs/X0gcAA==/","_etag":"\"00002d08-0000-0700-0000-65e4e8be0000\"","_colls":"colls/","_users":"users/","_ts":1709500606}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '475' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8BAE9C576634449FB8ED01ACA57361D3 Ref B: BL2AA2010203037 Ref C: 2024-03-03T21:17:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d89740c0-ed45-485c-ae61-ae3dcbb3dfeb?api-version=2023-11-15&t=638450974342687499&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tVAdUIs00bN_zrLBdH1rC_3K7TVUSesIe7G3_lS02RaKuZs-TSmE0XN1GsFXWQvGnySlvtDXVP8cDe0kSV7Qh1ChF5j8nzTluT7MfJf14suMBQU-peAUkLETxXg63fFLLuC6UY5Ee5wrjYo7zJZjgpKec-TYTZusQK5Gg79mHuZdWkWBb1Dgn-pb1L7x6Sq1Mave9FqI1HfGJuYdbzrF9U5q9Hi5D9DM3OLn_tWJxEu81lazcaQ9jAepzj6E3OzeZWAfFzpaKTnhjsfJ9SMrKX_ZwEuZswXRGE3B7o2p24z9Gi2dWlv00AuE1PmcLp1ShF76YNpxVoWglMubnMJWxQ&h=22GcPhNMJ33gV9L7f5cC7kezfgsXJUqMGQKl5ycFA_4 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:14 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002/operationResults/d89740c0-ed45-485c-ae61-ae3dcbb3dfeb?api-version=2023-11-15&t=638450974342843778&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EGzlXnQn4lyc717Hg0hN1jJOGDCSRcgsj7ET44MWn_CZ-8Tj3UyhOKURsnoRd0mhoEwB6pcBgRRIZUGxXYUZARQczv72dkozmwDLO0Igst--C44OzFfeYagdKaH9jH_aadcTujiAYSvYGLnYQBis-prsEd0TihRqXauUWY2UWmfVqymQc0ejQZ0YcAPrOMALgUFX9-ljzYaPaK-lRGZISerEZ-IjNxBMI0R16-lQjFUQM-kLQx4zrXQTATG2-vJbthC_3voKjXyh0OJBKvcLUsVhMnVuu0AcJbaGQT1ZcBOr98gh6WlU9R57syHyS2Mwij_vifPmH4GY447QEZyufg&h=hmaE2ek7ndpK2mV3wIhBcM9hU6X_HexSCk7aQiwO3QQ + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 7B2E14BB24184A89A90F416EC40CB06B Ref B: BL2AA2010203019 Ref C: 2024-03-03T21:17:13Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d89740c0-ed45-485c-ae61-ae3dcbb3dfeb?api-version=2023-11-15&t=638450974342687499&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tVAdUIs00bN_zrLBdH1rC_3K7TVUSesIe7G3_lS02RaKuZs-TSmE0XN1GsFXWQvGnySlvtDXVP8cDe0kSV7Qh1ChF5j8nzTluT7MfJf14suMBQU-peAUkLETxXg63fFLLuC6UY5Ee5wrjYo7zJZjgpKec-TYTZusQK5Gg79mHuZdWkWBb1Dgn-pb1L7x6Sq1Mave9FqI1HfGJuYdbzrF9U5q9Hi5D9DM3OLn_tWJxEu81lazcaQ9jAepzj6E3OzeZWAfFzpaKTnhjsfJ9SMrKX_ZwEuZswXRGE3B7o2p24z9Gi2dWlv00AuE1PmcLp1ShF76YNpxVoWglMubnMJWxQ&h=22GcPhNMJ33gV9L7f5cC7kezfgsXJUqMGQKl5ycFA_4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 89B570C99FD14F2F91DA120A9B458E35 Ref B: BL2AA2010205051 Ref C: 2024-03-03T21:17:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d89740c0-ed45-485c-ae61-ae3dcbb3dfeb?api-version=2023-11-15&t=638450974342687499&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tVAdUIs00bN_zrLBdH1rC_3K7TVUSesIe7G3_lS02RaKuZs-TSmE0XN1GsFXWQvGnySlvtDXVP8cDe0kSV7Qh1ChF5j8nzTluT7MfJf14suMBQU-peAUkLETxXg63fFLLuC6UY5Ee5wrjYo7zJZjgpKec-TYTZusQK5Gg79mHuZdWkWBb1Dgn-pb1L7x6Sq1Mave9FqI1HfGJuYdbzrF9U5q9Hi5D9DM3OLn_tWJxEu81lazcaQ9jAepzj6E3OzeZWAfFzpaKTnhjsfJ9SMrKX_ZwEuZswXRGE3B7o2p24z9Gi2dWlv00AuE1PmcLp1ShF76YNpxVoWglMubnMJWxQ&h=22GcPhNMJ33gV9L7f5cC7kezfgsXJUqMGQKl5ycFA_4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FD881D2B2735427993E8B262F72084BE Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 070D2FC21EC2426195FB4E360C671ED8 Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database_graph_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database_graph_restore.yaml new file mode 100644 index 00000000000..a958de98992 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_database_graph_restore.yaml @@ -0,0 +1,6081 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_database_graph_restore000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001","name":"cli_test_cosmosdb_gremlin_database_graph_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_database_graph_restore","date":"2024-03-03T21:17:47Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '468' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:17:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 346A7662B1104A049A50027BF0E69D44 Ref B: BL2AA2030103029 Ref C: 2024-03-03T21:17:49Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], + "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", + "continuousModeProperties": {"tier": "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '387' + Content-Type: + - application/json + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:17:53.4714016Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5e32859e-444e-4a94-ae8e-9ed75171d255","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:17:53.4714016Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:17:53.4714016Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:17:53.4714016Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:17:53.4714016Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cLn2pL6HAJHpxwoOLoNsLpOjceizEPHeQhRsncw3PlL4YQVe7QCShqXIhd8YUud5D6_2tHCHtTtTVhSEt-1P1ZcRm_qp8ujdjHSfIxaRwM7ilP1jMQRXBtKbzXrR9WYhtQkPI55sBE_umI2h1N5hyZiNEdKXdXa_9-7FvZlvIg4UJhj-L8UqDIj3cmgh8z3g-I9Js0sJdtQYkXYYjJ3gTEHUWU9Nv9HvcauM7EPSodQt6beBaYKnflXQNwFKSR2IdacXHJdgzzMLcRwq2rmcodp2DvJ9hwiJK1N_rlW8JVugDBSGiMxwGkCQLNS1T4id2Bz0XLv3HlOk8igc3vOb3Q&h=c3ir5K8SACWDCPzeYhw2eenveOcVXxMPfdsNEoHvjQc + cache-control: + - no-store, no-cache + content-length: + - '2684' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:55 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=d1r5Q7oM0sJU_aAHivMJ4LdbjtxEKNv37GtFk-sRbuqhXCMpym3DhDuhlQMYFapll6nVhELBX239iL_MLvddyWCEU99CKUpib4a86Vd1Bv8IyzYU1b3OU_ZfruN96mjpyBBuf-7l_3s-gem5lguh_sw9glm7WN7WTU1LKLs90PaSLTngBEwEQc-W9O29F5NGGcpuyFbUD-4ECEAC68OwPcvULMGNW3K4QgOQV7VQRHJEZLSwR6X5F2CecaeDHa2I1bDujVIuDsWPM6pzFy-3mtoUBf6D5DSXdjgBm_7ghQLrFTK3W9ykV-LMmowgNtltPgiWcLCzqoNISuSQ6Vx5xg&h=UFz1fCmgXTX27KE8bPiJZrQc3q8fh0rujVyvJnYobus + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 5C8C787895D74359BFB97677B29F6D92 Ref B: BL2AA2010204053 Ref C: 2024-03-03T21:17:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cLn2pL6HAJHpxwoOLoNsLpOjceizEPHeQhRsncw3PlL4YQVe7QCShqXIhd8YUud5D6_2tHCHtTtTVhSEt-1P1ZcRm_qp8ujdjHSfIxaRwM7ilP1jMQRXBtKbzXrR9WYhtQkPI55sBE_umI2h1N5hyZiNEdKXdXa_9-7FvZlvIg4UJhj-L8UqDIj3cmgh8z3g-I9Js0sJdtQYkXYYjJ3gTEHUWU9Nv9HvcauM7EPSodQt6beBaYKnflXQNwFKSR2IdacXHJdgzzMLcRwq2rmcodp2DvJ9hwiJK1N_rlW8JVugDBSGiMxwGkCQLNS1T4id2Bz0XLv3HlOk8igc3vOb3Q&h=c3ir5K8SACWDCPzeYhw2eenveOcVXxMPfdsNEoHvjQc + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8503239AF00E458C80F4A15F9730E612 Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:17:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cLn2pL6HAJHpxwoOLoNsLpOjceizEPHeQhRsncw3PlL4YQVe7QCShqXIhd8YUud5D6_2tHCHtTtTVhSEt-1P1ZcRm_qp8ujdjHSfIxaRwM7ilP1jMQRXBtKbzXrR9WYhtQkPI55sBE_umI2h1N5hyZiNEdKXdXa_9-7FvZlvIg4UJhj-L8UqDIj3cmgh8z3g-I9Js0sJdtQYkXYYjJ3gTEHUWU9Nv9HvcauM7EPSodQt6beBaYKnflXQNwFKSR2IdacXHJdgzzMLcRwq2rmcodp2DvJ9hwiJK1N_rlW8JVugDBSGiMxwGkCQLNS1T4id2Bz0XLv3HlOk8igc3vOb3Q&h=c3ir5K8SACWDCPzeYhw2eenveOcVXxMPfdsNEoHvjQc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AD32E7FC50074590A57041B53F48D0F1 Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:18:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cLn2pL6HAJHpxwoOLoNsLpOjceizEPHeQhRsncw3PlL4YQVe7QCShqXIhd8YUud5D6_2tHCHtTtTVhSEt-1P1ZcRm_qp8ujdjHSfIxaRwM7ilP1jMQRXBtKbzXrR9WYhtQkPI55sBE_umI2h1N5hyZiNEdKXdXa_9-7FvZlvIg4UJhj-L8UqDIj3cmgh8z3g-I9Js0sJdtQYkXYYjJ3gTEHUWU9Nv9HvcauM7EPSodQt6beBaYKnflXQNwFKSR2IdacXHJdgzzMLcRwq2rmcodp2DvJ9hwiJK1N_rlW8JVugDBSGiMxwGkCQLNS1T4id2Bz0XLv3HlOk8igc3vOb3Q&h=c3ir5K8SACWDCPzeYhw2eenveOcVXxMPfdsNEoHvjQc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A0EB09FB8AF243C08C1BBD478D6A4791 Ref B: BL2AA2010203049 Ref C: 2024-03-03T21:18:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cLn2pL6HAJHpxwoOLoNsLpOjceizEPHeQhRsncw3PlL4YQVe7QCShqXIhd8YUud5D6_2tHCHtTtTVhSEt-1P1ZcRm_qp8ujdjHSfIxaRwM7ilP1jMQRXBtKbzXrR9WYhtQkPI55sBE_umI2h1N5hyZiNEdKXdXa_9-7FvZlvIg4UJhj-L8UqDIj3cmgh8z3g-I9Js0sJdtQYkXYYjJ3gTEHUWU9Nv9HvcauM7EPSodQt6beBaYKnflXQNwFKSR2IdacXHJdgzzMLcRwq2rmcodp2DvJ9hwiJK1N_rlW8JVugDBSGiMxwGkCQLNS1T4id2Bz0XLv3HlOk8igc3vOb3Q&h=c3ir5K8SACWDCPzeYhw2eenveOcVXxMPfdsNEoHvjQc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D41A4F8DCDD44EE8B49BF7E68F1BFDE1 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:19:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cLn2pL6HAJHpxwoOLoNsLpOjceizEPHeQhRsncw3PlL4YQVe7QCShqXIhd8YUud5D6_2tHCHtTtTVhSEt-1P1ZcRm_qp8ujdjHSfIxaRwM7ilP1jMQRXBtKbzXrR9WYhtQkPI55sBE_umI2h1N5hyZiNEdKXdXa_9-7FvZlvIg4UJhj-L8UqDIj3cmgh8z3g-I9Js0sJdtQYkXYYjJ3gTEHUWU9Nv9HvcauM7EPSodQt6beBaYKnflXQNwFKSR2IdacXHJdgzzMLcRwq2rmcodp2DvJ9hwiJK1N_rlW8JVugDBSGiMxwGkCQLNS1T4id2Bz0XLv3HlOk8igc3vOb3Q&h=c3ir5K8SACWDCPzeYhw2eenveOcVXxMPfdsNEoHvjQc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A8663420616F485AB4D3C815F3F0CBA0 Ref B: BL2AA2010203051 Ref C: 2024-03-03T21:19:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cLn2pL6HAJHpxwoOLoNsLpOjceizEPHeQhRsncw3PlL4YQVe7QCShqXIhd8YUud5D6_2tHCHtTtTVhSEt-1P1ZcRm_qp8ujdjHSfIxaRwM7ilP1jMQRXBtKbzXrR9WYhtQkPI55sBE_umI2h1N5hyZiNEdKXdXa_9-7FvZlvIg4UJhj-L8UqDIj3cmgh8z3g-I9Js0sJdtQYkXYYjJ3gTEHUWU9Nv9HvcauM7EPSodQt6beBaYKnflXQNwFKSR2IdacXHJdgzzMLcRwq2rmcodp2DvJ9hwiJK1N_rlW8JVugDBSGiMxwGkCQLNS1T4id2Bz0XLv3HlOk8igc3vOb3Q&h=c3ir5K8SACWDCPzeYhw2eenveOcVXxMPfdsNEoHvjQc + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 82894096F7754EEC8C944B8C281BD4AD Ref B: BL2AA2030102053 Ref C: 2024-03-03T21:20:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ab2307e-2d08-43a7-b330-9903c29756cb?api-version=2024-02-15-preview&t=638450974753377519&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cLn2pL6HAJHpxwoOLoNsLpOjceizEPHeQhRsncw3PlL4YQVe7QCShqXIhd8YUud5D6_2tHCHtTtTVhSEt-1P1ZcRm_qp8ujdjHSfIxaRwM7ilP1jMQRXBtKbzXrR9WYhtQkPI55sBE_umI2h1N5hyZiNEdKXdXa_9-7FvZlvIg4UJhj-L8UqDIj3cmgh8z3g-I9Js0sJdtQYkXYYjJ3gTEHUWU9Nv9HvcauM7EPSodQt6beBaYKnflXQNwFKSR2IdacXHJdgzzMLcRwq2rmcodp2DvJ9hwiJK1N_rlW8JVugDBSGiMxwGkCQLNS1T4id2Bz0XLv3HlOk8igc3vOb3Q&h=c3ir5K8SACWDCPzeYhw2eenveOcVXxMPfdsNEoHvjQc + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 07FDED0AD863426A857EF8A14D027686 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:20:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:19:58.9851011Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5e32859e-444e-4a94-ae8e-9ed75171d255","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:19:58.9851011Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:19:58.9851011Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:19:58.9851011Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:19:58.9851011Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3110' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 076B7042D0A345DB8E98A3D82A3FCC70 Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:20:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:19:58.9851011Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"5e32859e-444e-4a94-ae8e-9ed75171d255","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:19:58.9851011Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:19:58.9851011Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:19:58.9851011Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:19:58.9851011Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3110' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EE2B53BC29044132A71E608B270CB67B Ref B: BL2AA2030104009 Ref C: 2024-03-03T21:20:56Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/84931cf4-68ab-4f40-9a6c-f914a8a0b9a0?api-version=2023-11-15&t=638450976578947237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YrdaGPwTTVBtYHuTiFF_Of8ambaUqLExq0iEv5WHmMLXxtRcXjAUeb6lmWSx4mlvnBChiln98HjvV1pgWXMqb2onEbzRYGwjKJsEta6TQHzDuzj49G2-XQVWYRWGPWQdSAvoRCy80WUH7syhwwM4ZzlGtgfZpyDoqNiDr5FPAGizDf3McPJeP78-xfOcBwBCX_5yPb2KwS06EYHrxd6M8hqTEh1KYTS2gJwqTaTKsyUFuxg1QIvVRP5w3JDumDSdADn3AzVUALpoREu3gD3UjqW1UaSnQRg1A5aceNOpqTZ_I8FqsaAa11Me6OieeQ1HT86LHXquZYx9CBBVza_Ewg&h=hHkMo08UJVgccuf5-MPjQeKtCxtIIqlseyCKdmztYkI + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:57 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/84931cf4-68ab-4f40-9a6c-f914a8a0b9a0?api-version=2023-11-15&t=638450976578947237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IK846Tn8Hrcm7jWCMY8nKnRVNi7tV1katPgp7-jcAep7aAnPXse2oq1XInZeOAwZcUkPUzcIdX9VR6uoLqaJi6TGHtQfvNEKYvAuFuAz3s5p6OH3nVxDCllMMwZFj_AhY_RNRYSzR5-18QSoi8N8PD4UeCb-ew0JeusVvYcoOs3oGhdJN7k5pVlE1Cl61EMzy67OxW9OUBVgj8FHvzlWgwBGXeEm3YCVqsTe1yh_aahibXAZd0VKBlgz1lnWDZelgqMkiobcuSzYoiVKyis8Pn4MmWer2PglxQapa1_PBh5jixY82jkwxl3fpRIrLPahzyI2M2aEgWg1lqpoNJsRJQ&h=X2_YAPuKgTx_LLRPoxrDBYL-YtkdQb8JBa6M4trcFKw + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: EEF882A843904367BEC12CEBB804F52C Ref B: BL2AA2030104049 Ref C: 2024-03-03T21:20:57Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/84931cf4-68ab-4f40-9a6c-f914a8a0b9a0?api-version=2023-11-15&t=638450976578947237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YrdaGPwTTVBtYHuTiFF_Of8ambaUqLExq0iEv5WHmMLXxtRcXjAUeb6lmWSx4mlvnBChiln98HjvV1pgWXMqb2onEbzRYGwjKJsEta6TQHzDuzj49G2-XQVWYRWGPWQdSAvoRCy80WUH7syhwwM4ZzlGtgfZpyDoqNiDr5FPAGizDf3McPJeP78-xfOcBwBCX_5yPb2KwS06EYHrxd6M8hqTEh1KYTS2gJwqTaTKsyUFuxg1QIvVRP5w3JDumDSdADn3AzVUALpoREu3gD3UjqW1UaSnQRg1A5aceNOpqTZ_I8FqsaAa11Me6OieeQ1HT86LHXquZYx9CBBVza_Ewg&h=hHkMo08UJVgccuf5-MPjQeKtCxtIIqlseyCKdmztYkI + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 803765F99ECA49618CE11F66B2A437D2 Ref B: BL2AA2010204003 Ref C: 2024-03-03T21:20:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/84931cf4-68ab-4f40-9a6c-f914a8a0b9a0?api-version=2023-11-15&t=638450976578947237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YrdaGPwTTVBtYHuTiFF_Of8ambaUqLExq0iEv5WHmMLXxtRcXjAUeb6lmWSx4mlvnBChiln98HjvV1pgWXMqb2onEbzRYGwjKJsEta6TQHzDuzj49G2-XQVWYRWGPWQdSAvoRCy80WUH7syhwwM4ZzlGtgfZpyDoqNiDr5FPAGizDf3McPJeP78-xfOcBwBCX_5yPb2KwS06EYHrxd6M8hqTEh1KYTS2gJwqTaTKsyUFuxg1QIvVRP5w3JDumDSdADn3AzVUALpoREu3gD3UjqW1UaSnQRg1A5aceNOpqTZ_I8FqsaAa11Me6OieeQ1HT86LHXquZYx9CBBVza_Ewg&h=hHkMo08UJVgccuf5-MPjQeKtCxtIIqlseyCKdmztYkI + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7BD62629CFE541DDB7A786A807AC4383 Ref B: BL2AA2030102047 Ref C: 2024-03-03T21:21:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Lws1AA==","_self":"dbs/Lws1AA==/","_etag":"\"00009c03-0000-0700-0000-65e4e9bf0000\"","_colls":"colls/","_users":"users/","_ts":1709500863}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '489' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3689D3E2035A49A48212C2F439924434 Ref B: BL2AA2010204047 Ref C: 2024-03-03T21:21:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + ffc248d9-d9a3-11ee-a52b-000d3a1e0e23, Request URI: /apps/5e7d8db7-33da-415a-a2ce-b57966d905e1/services/5f1ca2fb-fa17-47c9-83da-8c36993e40a1/partitions/3730502a-c5e8-48a9-9cc6-3ea215387359/replicas/133537737087151318s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:21:29.5865927Z, RequestEndTime: + 2024-03-03T21:21:29.5892814Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:20:32.5797888Z\\\",\\\"cpu\\\":0.255,\\\"memory\\\":477956700.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0451,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":246},{\\\"dateUtc\\\":\\\"2024-03-03T21:20:42.5899613Z\\\",\\\"cpu\\\":0.216,\\\"memory\\\":477961804.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0963,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247},{\\\"dateUtc\\\":\\\"2024-03-03T21:20:52.6000803Z\\\",\\\"cpu\\\":0.168,\\\"memory\\\":477959472.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0536,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:02.6101044Z\\\",\\\"cpu\\\":0.360,\\\"memory\\\":477962308.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1436,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:12.6203248Z\\\",\\\"cpu\\\":1.218,\\\"memory\\\":477837712.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0875,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":250},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:22.6304587Z\\\",\\\"cpu\\\":0.213,\\\"memory\\\":477812624.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1468,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":250}]}\\r\\nRequestStart: + 2024-03-03T21:21:29.5868156Z; ResponseTime: 2024-03-03T21:21:29.5892752Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11300/apps/5e7d8db7-33da-415a-a2ce-b57966d905e1/services/5f1ca2fb-fa17-47c9-83da-8c36993e40a1/partitions/3730502a-c5e8-48a9-9cc6-3ea215387359/replicas/133537737087151318s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.957, ActivityId: + ffc248d9-d9a3-11ee-a52b-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11000 | status: Unknown | lkt: 3/3/2024 9:21:29 PM),(port: 11300 | + status: Unknown | lkt: 3/3/2024 9:21:29 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:21:29 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:21:29 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:29.5867418Z\\\", + \\\"durationInMs\\\": 0.0093},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:29.5867511Z\\\", \\\"durationInMs\\\": + 0.0016},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:29.5867527Z\\\", + \\\"durationInMs\\\": 0.0546},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:21:29.5868073Z\\\", \\\"durationInMs\\\": 1.3928},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:29.5882001Z\\\", + \\\"durationInMs\\\": 0.1334},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:21:29.5883335Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:21:29.5038878Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:21:29.5039005Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:21:29.5408753Z\\\"},\\\"requestSizeInBytes\\\":492,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:21:29.5868648Z; + ResponseTime: 2024-03-03T21:21:29.5892814Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.13:11000/apps/5e7d8db7-33da-415a-a2ce-b57966d905e1/services/5f1ca2fb-fa17-47c9-83da-8c36993e40a1/partitions/3730502a-c5e8-48a9-9cc6-3ea215387359/replicas/133537737087151317s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.279, ActivityId: + ffc248d9-d9a3-11ee-a52b-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11000 | status: Unknown | lkt: 3/3/2024 9:21:29 PM),(port: 11300 | + status: Unknown | lkt: 3/3/2024 9:21:29 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:21:29 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:21:29 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:29.5868174Z\\\", + \\\"durationInMs\\\": 0.0043},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:29.5868217Z\\\", \\\"durationInMs\\\": + 0.001},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:29.5868227Z\\\", + \\\"durationInMs\\\": 0.0331},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:21:29.5868558Z\\\", \\\"durationInMs\\\": 2.2252},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:29.5890810Z\\\", + \\\"durationInMs\\\": 0.0405},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:21:29.5891215Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:21:29.4047541Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:21:29.4047664Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:21:29.4399894Z\\\"},\\\"requestSizeInBytes\\\":492,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7071' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F961AB4641574C95AB2547AC7FC89EFA Ref B: BL2AA2010201009 Ref C: 2024-03-03T21:21:29Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], + "kind": "Hash"}, "defaultTtl": 1000, "conflictResolutionPolicy": {"mode": "lastWriterWins", + "conflictResolutionPath": "/path"}, "createMode": "Default"}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph create + Connection: + - keep-alive + Content-Length: + - '427' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n -p --ttl --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d3ebbc4d-a01e-4732-a2a5-06da6f8a1ab0?api-version=2023-11-15&t=638450976903194971&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IYVJLBbJh4kNBfCYdo2h2QDf13AA6WFFDz4UamIYPqptrT9bN0MLb8PuFa102RnbdT77WqkLiKATy9e3IPwUUDqVh19AAsCl8hscaLV321FTVQISt8RWVMkMLvnVFcYSNkI5wjF-tIXyhd6tSGXR9wfY-QzrcIemjB6xWc7dn7sFOrcdUmHHas--1SRF9okavxDfwqC7KNQi3FuVMZQwlJJ9QKbrKCfbFICGMccegO5F6QEoUW-bR3gUuSxP4Of_dEBZ3HVGO9DtDO8za-bVlOwI8yqrRhOpU-LDA8NkigbyHvg1phSOvjoz07QvJ2Z83yW8rJ5MQ48Q6c6lp1pHIg&h=VcdjFGULHyZCLf7mB3GZAk1lrJp7SnCeg5Ja3aZdD3s + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:30 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/d3ebbc4d-a01e-4732-a2a5-06da6f8a1ab0?api-version=2023-11-15&t=638450976903194971&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=WjGl8kmcMzz7rS7BYogBoeNzjtWt5VOcsE13mB2vXgyG_Kr1CFYWmk8sa1vY5YxBIuZWZlKqweddmjZhf_L__d8ev6evqLcSNcUT5bTslNNcEFEJcrmgVrqebcgzgp2Wvs2yUqfNHfM1rolLID8AK5N7MVxqDO5o2YJcS1JyFCebMSQfCb-M1_F_0LVUeWP4Bup-K7Dqka6GTZFKNmxfM1z7fPSHqqPmCMoq59hIneo_wiYgSD7SAj9kt0AS43Fk3l0abasO1TuS_wTiqju_1tlZQ8qRy9hTpk9dEgR3dS8Ty6969uwmZSU2yPEKJgmkqo3qsqGEw3Aexr277uU1AA&h=mDlDgCOmGcoJtQEojo0Fof7yTdHx39FhSumONtSN7Bs + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 4C0F80D160E241C189EA06FEB65D61B2 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:21:29Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --ttl --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d3ebbc4d-a01e-4732-a2a5-06da6f8a1ab0?api-version=2023-11-15&t=638450976903194971&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IYVJLBbJh4kNBfCYdo2h2QDf13AA6WFFDz4UamIYPqptrT9bN0MLb8PuFa102RnbdT77WqkLiKATy9e3IPwUUDqVh19AAsCl8hscaLV321FTVQISt8RWVMkMLvnVFcYSNkI5wjF-tIXyhd6tSGXR9wfY-QzrcIemjB6xWc7dn7sFOrcdUmHHas--1SRF9okavxDfwqC7KNQi3FuVMZQwlJJ9QKbrKCfbFICGMccegO5F6QEoUW-bR3gUuSxP4Of_dEBZ3HVGO9DtDO8za-bVlOwI8yqrRhOpU-LDA8NkigbyHvg1phSOvjoz07QvJ2Z83yW8rJ5MQ48Q6c6lp1pHIg&h=VcdjFGULHyZCLf7mB3GZAk1lrJp7SnCeg5Ja3aZdD3s + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 54C910D50EE840E28EE966C2A46F4113 Ref B: BL2AA2030101037 Ref C: 2024-03-03T21:21:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --ttl --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d3ebbc4d-a01e-4732-a2a5-06da6f8a1ab0?api-version=2023-11-15&t=638450976903194971&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IYVJLBbJh4kNBfCYdo2h2QDf13AA6WFFDz4UamIYPqptrT9bN0MLb8PuFa102RnbdT77WqkLiKATy9e3IPwUUDqVh19AAsCl8hscaLV321FTVQISt8RWVMkMLvnVFcYSNkI5wjF-tIXyhd6tSGXR9wfY-QzrcIemjB6xWc7dn7sFOrcdUmHHas--1SRF9okavxDfwqC7KNQi3FuVMZQwlJJ9QKbrKCfbFICGMccegO5F6QEoUW-bR3gUuSxP4Of_dEBZ3HVGO9DtDO8za-bVlOwI8yqrRhOpU-LDA8NkigbyHvg1phSOvjoz07QvJ2Z83yW8rJ5MQ48Q6c6lp1pHIg&h=VcdjFGULHyZCLf7mB3GZAk1lrJp7SnCeg5Ja3aZdD3s + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F274B4C54D5A4DCA9B04C150C63901D5 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:22:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --ttl --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Lws1AMe+HCg=","_ts":1709500895,"_self":"dbs/Lws1AA==/colls/Lws1AMe+HCg=/","_etag":"\"00009f03-0000-0700-0000-65e4e9df0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1213' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 93EADA9D8ED64E5FA23ED62ED3B2E962 Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:22:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Lws1AMe+HCg=","_ts":1709500895,"_self":"dbs/Lws1AA==/colls/Lws1AMe+HCg=/","_etag":"\"00009f03-0000-0700-0000-65e4e9df0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1213' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C5E9D79C4DCA408384F8942631D8C294 Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:30:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Lws1AMe+HCg=","_ts":1709500895,"_self":"dbs/Lws1AA==/colls/Lws1AMe+HCg=/","_etag":"\"00009f03-0000-0700-0000-65e4e9df0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1112' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 22060F679AA54ADBAFA521C1F48605F6 Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:30:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"Lws1AMe+HCg=","_ts":1709500895,"_self":"dbs/Lws1AA==/colls/Lws1AMe+HCg=/","_etag":"\"00009f03-0000-0700-0000-65e4e9df0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1213' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A370D09AB76A4C8FA50A0DDC21C62C01 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:30:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c729e60-5574-45c6-be0a-278892809d91?api-version=2023-11-15&t=638450982236089247&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KW9NarTTLIN5tyMit2_H1B04OF0mReOvmV_tn7PR_RzvKNEBnkKY42v94tb8DeYEuzvqH8sANzwr9SVoJsJ8Xo23H_EkjufraZTdcbMeWb6hsFD8i-xKCgbKOLpBJIviMoVgwxD2_SONyzLklATiKW2iHIG8Vy9AOBciWtTVSnMaLJbr8-pRiLJfD6PIO45nNl_PjfvICu5yh1YV0HJac6U_jLEOTxteWbzzBefVY20GA8dRTzeI2EZX4bK5m9Fuy4oiLYF3jLL_C80UquMpNxfWnp6FqDFFuAyOHkdCacGrX5XrOqFoNuXQ-14F2W0mevpsVH3A_e7IYuyLTijFyA&h=fG2XFPdD3GS8rPOH8dVD9BWkBc-ZiMWzuulp6nDumhM + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:22 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/8c729e60-5574-45c6-be0a-278892809d91?api-version=2023-11-15&t=638450982236245517&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=kespm5oWOBqFJJi3GjnEk2g9VYRSZO6iAGlJvAsfvtENzdepbDXCrDbtMd6OoZGyIZQy955EtvBauQWvLCAPnhGJqK39dQIIOmDdmCK_VD5Iz79NPQO8wDeEak38VsV55mk2QsAFjRFCJzHM792X1HCGigvLObieFZOm4CoD2cXuu8xX2LI-bhERMMo2mk7WBXQIGOegG7Og8pWyyzScJpP5aQOsde-g4ctFDT4l7m9Liy2swAV2_RmJmuBLFN1Gcc1bpxeLsLjWqF4CdFztCWF-O3y0wSHAoLI_VmWICPaa2KcIgpKpGJcTbtYCsfCycoCYNgn6UcE9I-eSSNZmcQ&h=YhdhpLxSQaQjyt3BDEsuDhoxcVJGl8P3k1Izou4hbbM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 2577DAFADF79481A956AB89C9BCFF57C Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:30:23Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c729e60-5574-45c6-be0a-278892809d91?api-version=2023-11-15&t=638450982236089247&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KW9NarTTLIN5tyMit2_H1B04OF0mReOvmV_tn7PR_RzvKNEBnkKY42v94tb8DeYEuzvqH8sANzwr9SVoJsJ8Xo23H_EkjufraZTdcbMeWb6hsFD8i-xKCgbKOLpBJIviMoVgwxD2_SONyzLklATiKW2iHIG8Vy9AOBciWtTVSnMaLJbr8-pRiLJfD6PIO45nNl_PjfvICu5yh1YV0HJac6U_jLEOTxteWbzzBefVY20GA8dRTzeI2EZX4bK5m9Fuy4oiLYF3jLL_C80UquMpNxfWnp6FqDFFuAyOHkdCacGrX5XrOqFoNuXQ-14F2W0mevpsVH3A_e7IYuyLTijFyA&h=fG2XFPdD3GS8rPOH8dVD9BWkBc-ZiMWzuulp6nDumhM + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D738C4D209A642EAB08D82C6EC017B11 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:30:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c729e60-5574-45c6-be0a-278892809d91?api-version=2023-11-15&t=638450982236089247&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KW9NarTTLIN5tyMit2_H1B04OF0mReOvmV_tn7PR_RzvKNEBnkKY42v94tb8DeYEuzvqH8sANzwr9SVoJsJ8Xo23H_EkjufraZTdcbMeWb6hsFD8i-xKCgbKOLpBJIviMoVgwxD2_SONyzLklATiKW2iHIG8Vy9AOBciWtTVSnMaLJbr8-pRiLJfD6PIO45nNl_PjfvICu5yh1YV0HJac6U_jLEOTxteWbzzBefVY20GA8dRTzeI2EZX4bK5m9Fuy4oiLYF3jLL_C80UquMpNxfWnp6FqDFFuAyOHkdCacGrX5XrOqFoNuXQ-14F2W0mevpsVH3A_e7IYuyLTijFyA&h=fG2XFPdD3GS8rPOH8dVD9BWkBc-ZiMWzuulp6nDumhM + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:53 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: ED0ADBD9F7FE49B7AB76FEF7A9F465A3 Ref B: BL2AA2030104035 Ref C: 2024-03-03T21:30:53Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:39:15Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"cli000004","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:39:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:39:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:39:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:39:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:39: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"}]}},{"name":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:39:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:39:14Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:39:14Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428196' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:39:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: F88A102CE81E4BFEB97E37971B999A92 Ref B: BL2AA2030103019 Ref C: 2024-03-03T21:39:14Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255", + "restoreTimestampInUtc": "2024-03-03T21:22:01.347467Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:20 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987610099956&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qBUeQn3VUDS7svbir3y3RRmLYDDlQDnBbrXAj2z84qJTQ3cRt7DQ0wML8jZ9dmtTxwsz6_W5gp81mzV6YZxjWusuzBanTf6PJJKH8JQkOVnHB5zMtt7ISCa1fyaXvUYsZL6hPGRCWom30_1O8l9xbXVm6apy0CyLf_lzPCXCJTJS7ZuG0LhaogoP9sPkbuNWrzHKoHwtddgjDheuTAGKLDcTBFN1ok7_6-90VIDm_-kM8X-MHsHc4I4tpOdSMI8XWBwrYFnN2Ogh6D12TYej2t8LIGHoWLhBXCkUji16hHOTeX4paBFup_Ol_GM1lOJxA4Em4aua4bf0SDNCQmKgMQ&h=gUFhUz9NkQ1FK1ft88jZ_7hM_gSfPErq-cvTSr7SNVA + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 8878B15266294A75B5F3BEAC99714A6F Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:39:19Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 678D2340966E40AB9E6C80606CD6E066 Ref B: BL2AA2030103027 Ref C: 2024-03-03T21:39:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4BD77AB074F04FEBB01741A688727879 Ref B: BL2AA2030101051 Ref C: 2024-03-03T21:39:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D85CD9D2710E4C59A93D0C0A37ADA67A Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:40:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 963B973985BF46FCB4E9340EE1847F1C Ref B: BL2AA2010204049 Ref C: 2024-03-03T21:40:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AF94782ABF21483A9BF21CC6CC2725EC Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:41:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E9B235E96C4C4A9199ADB483004622B9 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:41:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1BD0B793ED7A4EE4B7DB9B6A386D041F Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:42:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:52 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 98E8CE558023431289C553045125DF53 Ref B: BL2AA2030102049 Ref C: 2024-03-03T21:42:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A8949C7A4B824B1DA0055ED8525BA00A Ref B: BL2AA2030102007 Ref C: 2024-03-03T21:43:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:52 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2A032E2E90EF43D4B9E3605C1B4B5132 Ref B: MNZ221060609009 Ref C: 2024-03-03T21:43:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C501D00627E04880B6D5647094FB9CE0 Ref B: MNZ221060608045 Ref C: 2024-03-03T21:44:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:52 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 38873CC5ADA548288AA818DB423A71B7 Ref B: MNZ221060609025 Ref C: 2024-03-03T21:44:53Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C1C0EBEF902F4582BFAC92E0C2C831FC Ref B: BL2AA2010201047 Ref C: 2024-03-03T21:45:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:53 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FD899D88C6E844E6B5D6858317FA74E5 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:45:53Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5eb9dd7-e2c1-444e-bc46-29b906d8d7de?api-version=2024-02-15-preview&t=638450987609943801&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TCifX1Euuf6RD6lWaDQ6RIkoKegzapjYGFmUezrJRBMNYZY0wYOT0h7eiGPHH6KgBE6jRSLH5SVnMo0FfWbmqjw3BywmnGO6k06Qx5DsaJOC0KcfoMAofbR-X6kolXGTIye4byOSouOu4AA78VyHPgXHaOylciET4bkyh5kV9Iay5uQ-9CRnaayhzxmaZqnZ6jLNjMEi0mY7yY2GNI2RnZT438aCrc-ygIa-Oqd7DYgySX6hoggPys0ZZbYm85EHRwgw2731EP_Qx7qY-KFyxb2DECidx1TOWpz4HWu9xoKRP6ORLUIN8QPBXKwPnWjuuD1xiO02H0JP9HXxH9JzlQ&h=EJGNA6ggx9OhGHcy2lJp8OmwiEt3V8L623ovpPmeiRA + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:46:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9DDD02B4B1334F1BA7914A679896BF2C Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:46:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"7aaf0d0e-d9a6-11ee-8e1d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:22:01.347467+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255"},"geospatialConfig":{"type":"Geography"},"_rid":"Lws1AMe+HCg=","_ts":1709502142,"_self":"dbs/Lws1AA==/colls/Lws1AMe+HCg=/","_etag":"\"0000ab03-0000-0700-0000-65e4eebe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1528' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:46:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7935417D11F346E78FA0A2AE3BE950BB Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:46:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"7aaf0d0e-d9a6-11ee-8e1d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:22:01.347467+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255"},"geospatialConfig":{"type":"Geography"},"_rid":"Lws1AMe+HCg=","_ts":1709502142,"_self":"dbs/Lws1AA==/colls/Lws1AMe+HCg=/","_etag":"\"0000ab03-0000-0700-0000-65e4eebe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1528' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:54:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DB76AE58C52446E4AD9490C5A63ADB07 Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:54:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"7aaf0d0e-d9a6-11ee-8e1d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:22:01.347467+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255"},"geospatialConfig":{"type":"Geography"},"_rid":"Lws1AMe+HCg=","_ts":1709502142,"_self":"dbs/Lws1AA==/colls/Lws1AMe+HCg=/","_etag":"\"0000ab03-0000-0700-0000-65e4eebe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1427' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:54:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A17B9D1F8B764A35941C5F1C16293C71 Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:54:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ccbf4a1d-8aed-4072-bf7f-fb98c3be5798?api-version=2023-11-15&t=638450996863448251&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=DHtmxNm9nwiED35bZ2jB0uDua3JTjN75BBowk7ravB7zCP86A0G0nErzZxZ_KCFx5Iu7XhCxOorRMeEKmHrHtV998N37rv3s2kSMcR45_x_vl8tOMFLa_zJH5MxAfig306nXRyJAflmjphwTd7fFissMOyX-1SF1FdnnHtxI6HH2CM2eWAZFAtvK-eODdLOYDSwSxJpKTgL6RMpXKiKYCKVXdHaTp8hIIJOMN-TCBrt9_95622Ob7bkraSuuWj11jF1mZGyLkdvmAp--VWENpdBkPBFmpv28cl5JWSZqRHRauAgIU1C-sHfSt6a79-HmO5sUVWbdtiVyAIjHQtsx4g&h=RUqA38L9PfAPSFMYFPe4Y1mczHHldZ0FOeHnAYO1SHg + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:54:45 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/ccbf4a1d-8aed-4072-bf7f-fb98c3be5798?api-version=2023-11-15&t=638450996863448251&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gUqGJ8ylALi-zzDOSTCOgRhqztOdwRjtk4Gea8qNMyRfGxRjD3xKtzN0v_jB-3JIwKDuFZCcsoc7FNzVZoe0LIfbYKeJNmwXQu53rG7V1_jy_iQr-Qg8mhBR9Ay4UaiZo7AFUYJJe6TU55iz0WwbNBvewaPZ156Q3etvs_ufC6YCOmFVdee_CqI4c-pWAMRmLl8wVkr7wSy6nYtDCvhoOkeP64Ag2wD7WiPz9ZiPCnY3qS-YeVXZQAHBr8QM4bPTzgbEaDJEboltB7jLtAsWXOtikL-t0uADH9R7vESXyu5fIhe8DlbDo1ntp1Dd1xJr2pgvbIHJNpC75zl9Lw631A&h=g4Gus_CmeMI9Bbv2eYborLPUUYtmdTC1LzyKUd5xEEM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: C97CE0F8A07A49DCBCFE3C05E66A91E2 Ref B: BL2AA2010204033 Ref C: 2024-03-03T21:54:45Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ccbf4a1d-8aed-4072-bf7f-fb98c3be5798?api-version=2023-11-15&t=638450996863448251&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=DHtmxNm9nwiED35bZ2jB0uDua3JTjN75BBowk7ravB7zCP86A0G0nErzZxZ_KCFx5Iu7XhCxOorRMeEKmHrHtV998N37rv3s2kSMcR45_x_vl8tOMFLa_zJH5MxAfig306nXRyJAflmjphwTd7fFissMOyX-1SF1FdnnHtxI6HH2CM2eWAZFAtvK-eODdLOYDSwSxJpKTgL6RMpXKiKYCKVXdHaTp8hIIJOMN-TCBrt9_95622Ob7bkraSuuWj11jF1mZGyLkdvmAp--VWENpdBkPBFmpv28cl5JWSZqRHRauAgIU1C-sHfSt6a79-HmO5sUVWbdtiVyAIjHQtsx4g&h=RUqA38L9PfAPSFMYFPe4Y1mczHHldZ0FOeHnAYO1SHg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:54:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1C02256A3A844B70B043C2341A9B229A Ref B: BL2AA2010201039 Ref C: 2024-03-03T21:54:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ccbf4a1d-8aed-4072-bf7f-fb98c3be5798?api-version=2023-11-15&t=638450996863448251&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=DHtmxNm9nwiED35bZ2jB0uDua3JTjN75BBowk7ravB7zCP86A0G0nErzZxZ_KCFx5Iu7XhCxOorRMeEKmHrHtV998N37rv3s2kSMcR45_x_vl8tOMFLa_zJH5MxAfig306nXRyJAflmjphwTd7fFissMOyX-1SF1FdnnHtxI6HH2CM2eWAZFAtvK-eODdLOYDSwSxJpKTgL6RMpXKiKYCKVXdHaTp8hIIJOMN-TCBrt9_95622Ob7bkraSuuWj11jF1mZGyLkdvmAp--VWENpdBkPBFmpv28cl5JWSZqRHRauAgIU1C-sHfSt6a79-HmO5sUVWbdtiVyAIjHQtsx4g&h=RUqA38L9PfAPSFMYFPe4Y1mczHHldZ0FOeHnAYO1SHg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:55:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C371A96EDD6D42BCB5AD4B62D0336FFB Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:55:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:55:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 588C150391A64D529A0E30675C2D4506 Ref B: BL2AA2030101023 Ref C: 2024-03-03T21:55:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-03T21:59:31Z","oldestRestorableTime":"2024-02-25T21:59:31Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T22:03:39Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T22:03:39Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"cli000004","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcliykmkvebk","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z","deletionTime":"2024-03-03T21:51:02Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T22:03:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z","deletionTime":"2024-03-03T21:52:50Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T22:03:38Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T22:03:38Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T22:03:38Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T22:03:38Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T22:03:38Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '429846' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 22:03:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 635C82C66ABE47A5A4D2A30B3DCE2298 Ref B: MNZ221060608009 Ref C: 2024-03-03T22:03:38Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255", + "restoreTimestampInUtc": "2024-03-03T21:22:01.347467Z"}, "createMode": "Restore"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database restore + Connection: + - keep-alive + Content-Length: + - '337' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/451b88a3-8951-44b6-899e-6184d1c21ef2?api-version=2024-02-15-preview&t=638451002247903203&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cmBeIre7Q1TElzDJ6kqmb6mn-3CXE_N_mGUxwpgL1_CKRHe_FhFA7AagtVsAYdtNDmmxUtrU39aXTs22iBu7tjTLEc_5zlZhFz9_cxBSfTpGVCQPtF-WNZYIMTHmYIK2rbcF0f72Nvku66GE__Z0BLgIDpMgzVIDJ6tk3vr6tH2DbQQDCnjHi5FO6qkBcgl-gvbBQhWEogK4ZVXGq-e571ktlBN9bonB-vFtXZDm6ajZJ5-Oc1bAfO4gA2i3AbRiekwJlVxDPjQfXKmhsVSmjM5tPLI8cv_o5Qer0ouQWjnsZua5ZB8hpmwdVmpwnSfjULWn_hlc0v6PrmdeAtP_TA&h=KrJTANmRwUO1VM6VgYufKM7HZIbvZYQUypvYN6pY3qw + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:03:44 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/451b88a3-8951-44b6-899e-6184d1c21ef2?api-version=2024-02-15-preview&t=638451002247903203&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SeqCYy9cLG4bVMbmM2QJMCYOROKgZNrU0Umshie_fEs7qoAfzNY-SaWmFS5kuAsgencV4aO4VtybFKCrYZLu1qZCKHAtDTf1EH-6RLmunznEzmvRfGIwal1VlAIgErjG7UWJFPtpUNFwqso4q2OtdYKXwui3s3cn_44a3nWrpWaWRWQE6OTQCoNl9s4LyVcR6pNlOssjujWOlIrBoheeBYOIvy5Hk77gqVTfKBnxb42XnT3S9JXHsTGfpjtjGCsAidYLFKpJrPwNmSAIS_9FaPaudvpRENSSg6VFyW9NpJD5_NPq_vUjki4migNY57aabEIq_H9hFveSYmvlITEoDg&h=ua7PzKhDpfLMOQfhoq21wsLV9IUyeErcKAnRi9TDHIo + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 2C915DD37D144591A279357CC1EC00E7 Ref B: MNZ221060610047 Ref C: 2024-03-03T22:03:43Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/451b88a3-8951-44b6-899e-6184d1c21ef2?api-version=2024-02-15-preview&t=638451002247903203&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cmBeIre7Q1TElzDJ6kqmb6mn-3CXE_N_mGUxwpgL1_CKRHe_FhFA7AagtVsAYdtNDmmxUtrU39aXTs22iBu7tjTLEc_5zlZhFz9_cxBSfTpGVCQPtF-WNZYIMTHmYIK2rbcF0f72Nvku66GE__Z0BLgIDpMgzVIDJ6tk3vr6tH2DbQQDCnjHi5FO6qkBcgl-gvbBQhWEogK4ZVXGq-e571ktlBN9bonB-vFtXZDm6ajZJ5-Oc1bAfO4gA2i3AbRiekwJlVxDPjQfXKmhsVSmjM5tPLI8cv_o5Qer0ouQWjnsZua5ZB8hpmwdVmpwnSfjULWn_hlc0v6PrmdeAtP_TA&h=KrJTANmRwUO1VM6VgYufKM7HZIbvZYQUypvYN6pY3qw + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:03:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7CEAC0A48BD6470FBBC9ACE6896B4410 Ref B: MNZ221060610011 Ref C: 2024-03-03T22:03:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/451b88a3-8951-44b6-899e-6184d1c21ef2?api-version=2024-02-15-preview&t=638451002247903203&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cmBeIre7Q1TElzDJ6kqmb6mn-3CXE_N_mGUxwpgL1_CKRHe_FhFA7AagtVsAYdtNDmmxUtrU39aXTs22iBu7tjTLEc_5zlZhFz9_cxBSfTpGVCQPtF-WNZYIMTHmYIK2rbcF0f72Nvku66GE__Z0BLgIDpMgzVIDJ6tk3vr6tH2DbQQDCnjHi5FO6qkBcgl-gvbBQhWEogK4ZVXGq-e571ktlBN9bonB-vFtXZDm6ajZJ5-Oc1bAfO4gA2i3AbRiekwJlVxDPjQfXKmhsVSmjM5tPLI8cv_o5Qer0ouQWjnsZua5ZB8hpmwdVmpwnSfjULWn_hlc0v6PrmdeAtP_TA&h=KrJTANmRwUO1VM6VgYufKM7HZIbvZYQUypvYN6pY3qw + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:04:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7F0DC29E81634F4CB45D3B1D2B7FF938 Ref B: MNZ221060609053 Ref C: 2024-03-03T22:04:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/451b88a3-8951-44b6-899e-6184d1c21ef2?api-version=2024-02-15-preview&t=638451002247903203&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cmBeIre7Q1TElzDJ6kqmb6mn-3CXE_N_mGUxwpgL1_CKRHe_FhFA7AagtVsAYdtNDmmxUtrU39aXTs22iBu7tjTLEc_5zlZhFz9_cxBSfTpGVCQPtF-WNZYIMTHmYIK2rbcF0f72Nvku66GE__Z0BLgIDpMgzVIDJ6tk3vr6tH2DbQQDCnjHi5FO6qkBcgl-gvbBQhWEogK4ZVXGq-e571ktlBN9bonB-vFtXZDm6ajZJ5-Oc1bAfO4gA2i3AbRiekwJlVxDPjQfXKmhsVSmjM5tPLI8cv_o5Qer0ouQWjnsZua5ZB8hpmwdVmpwnSfjULWn_hlc0v6PrmdeAtP_TA&h=KrJTANmRwUO1VM6VgYufKM7HZIbvZYQUypvYN6pY3qw + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:04:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F26350C85AC8465E938FC7DE73A634A7 Ref B: MNZ221060609007 Ref C: 2024-03-03T22:04:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/451b88a3-8951-44b6-899e-6184d1c21ef2?api-version=2024-02-15-preview&t=638451002247903203&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cmBeIre7Q1TElzDJ6kqmb6mn-3CXE_N_mGUxwpgL1_CKRHe_FhFA7AagtVsAYdtNDmmxUtrU39aXTs22iBu7tjTLEc_5zlZhFz9_cxBSfTpGVCQPtF-WNZYIMTHmYIK2rbcF0f72Nvku66GE__Z0BLgIDpMgzVIDJ6tk3vr6tH2DbQQDCnjHi5FO6qkBcgl-gvbBQhWEogK4ZVXGq-e571ktlBN9bonB-vFtXZDm6ajZJ5-Oc1bAfO4gA2i3AbRiekwJlVxDPjQfXKmhsVSmjM5tPLI8cv_o5Qer0ouQWjnsZua5ZB8hpmwdVmpwnSfjULWn_hlc0v6PrmdeAtP_TA&h=KrJTANmRwUO1VM6VgYufKM7HZIbvZYQUypvYN6pY3qw + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:05:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FCD8417A97824E6DBC5CCA9CB75D646C Ref B: MNZ221060610051 Ref C: 2024-03-03T22:05:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/451b88a3-8951-44b6-899e-6184d1c21ef2?api-version=2024-02-15-preview&t=638451002247903203&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cmBeIre7Q1TElzDJ6kqmb6mn-3CXE_N_mGUxwpgL1_CKRHe_FhFA7AagtVsAYdtNDmmxUtrU39aXTs22iBu7tjTLEc_5zlZhFz9_cxBSfTpGVCQPtF-WNZYIMTHmYIK2rbcF0f72Nvku66GE__Z0BLgIDpMgzVIDJ6tk3vr6tH2DbQQDCnjHi5FO6qkBcgl-gvbBQhWEogK4ZVXGq-e571ktlBN9bonB-vFtXZDm6ajZJ5-Oc1bAfO4gA2i3AbRiekwJlVxDPjQfXKmhsVSmjM5tPLI8cv_o5Qer0ouQWjnsZua5ZB8hpmwdVmpwnSfjULWn_hlc0v6PrmdeAtP_TA&h=KrJTANmRwUO1VM6VgYufKM7HZIbvZYQUypvYN6pY3qw + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:05:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7464BA314434418D9B0E3059FA7017BF Ref B: MNZ221060610023 Ref C: 2024-03-03T22:05:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Lws1AA==","_self":"dbs/Lws1AA==/","_etag":"\"0000b203-0000-0700-0000-65e4f3e80000\"","_colls":"colls/","_users":"users/","_ts":1709503464}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '489' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:05:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EC99C47E7D3D4A87A8CEC268158FE34F Ref B: MNZ221060609049 Ref C: 2024-03-03T22:05:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Lws1AA==","_self":"dbs/Lws1AA==/","_etag":"\"0000b203-0000-0700-0000-65e4f3e80000\"","_colls":"colls/","_users":"users/","_ts":1709503464}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '501' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:14:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 57D2F4AE8D5C4810819D6854ED7B88AE Ref B: MNZ221060608035 Ref C: 2024-03-03T22:14:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/409b9764-df46-4c01-9c85-7706289dc89c?api-version=2023-11-15&t=638451008480043085&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=R0MuYcLjq1PFeBvRkniyseMbFJU6C5SkDYkfxLRFKL20ltgEON0ZvoDKaKjCZ_SD5xN6bIbcJx64gLGtbWUDEnRRrYUJfMIybjGe0rHAZUGnSAOOlFlODW0YptDcMErSYp0-63_i2dG7je7HWUKvFWwuljCUWyhpCspsffUAEFKI0lOvDuivBizKt29_zTITrMJ_NqZQdvKYUL98xPeAkrNm5el8awEDqM8JlPJbXH2KM5z-iAbkTlbn6S-FegOiPJDCrLsw9FNVaFAghi8-gCyJrFN-2pWUD5trna8vCiK_M3dDOtdHDiFz0l2QKNtUIml9v_SpSnymPAjcJvAM7Q&h=0ahVxg5xBsSUaQIzTVl_PiUtYWYvcfrqcOG54kva7Zo + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:14:07 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/409b9764-df46-4c01-9c85-7706289dc89c?api-version=2023-11-15&t=638451008480199329&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dn0u1sGQZjF-bu_Sn_En2vw2Gm-Dxk2Njjtu5fxSZ-ZzqHxxyGzvPyLwWu8ns90M5nGONcv1F7XoimSo--ZDTxSDIAuneOTSay5d3EaDXQhEOiH6L1MpK6jg1LySATyTTWF-I1ZdMohXa5Sl7nDb5M6w1aDX0H0zCsjvYLcyxggl5-RK0DeOTD2xpNT8IG_kRt2v2o-XwCf7Tbj9it0awWWuYJj0wbZk9GIr2aonxmzyl8hY2K_I5qgHr2XWdaDAOU5cxcNrMOkllZZo_U-cKGIcc2O0z7VSmyqaa_BoNJXAM93rG-sOM5gPYYo5EWx6PPMLttbBO5Psu_lOEEvmmw&h=RsF8URuDtOJsI7aa09lChtmS4vj-sYmt0ypY9tay-MU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: B8958CDBB47A42668060C3E7A5AD591C Ref B: MNZ221060608049 Ref C: 2024-03-03T22:14:07Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/409b9764-df46-4c01-9c85-7706289dc89c?api-version=2023-11-15&t=638451008480043085&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=R0MuYcLjq1PFeBvRkniyseMbFJU6C5SkDYkfxLRFKL20ltgEON0ZvoDKaKjCZ_SD5xN6bIbcJx64gLGtbWUDEnRRrYUJfMIybjGe0rHAZUGnSAOOlFlODW0YptDcMErSYp0-63_i2dG7je7HWUKvFWwuljCUWyhpCspsffUAEFKI0lOvDuivBizKt29_zTITrMJ_NqZQdvKYUL98xPeAkrNm5el8awEDqM8JlPJbXH2KM5z-iAbkTlbn6S-FegOiPJDCrLsw9FNVaFAghi8-gCyJrFN-2pWUD5trna8vCiK_M3dDOtdHDiFz0l2QKNtUIml9v_SpSnymPAjcJvAM7Q&h=0ahVxg5xBsSUaQIzTVl_PiUtYWYvcfrqcOG54kva7Zo + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:14:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AD40B046649D46CE823A526D5EBE61DC Ref B: MNZ221060608009 Ref C: 2024-03-03T22:14:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/409b9764-df46-4c01-9c85-7706289dc89c?api-version=2023-11-15&t=638451008480043085&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=R0MuYcLjq1PFeBvRkniyseMbFJU6C5SkDYkfxLRFKL20ltgEON0ZvoDKaKjCZ_SD5xN6bIbcJx64gLGtbWUDEnRRrYUJfMIybjGe0rHAZUGnSAOOlFlODW0YptDcMErSYp0-63_i2dG7je7HWUKvFWwuljCUWyhpCspsffUAEFKI0lOvDuivBizKt29_zTITrMJ_NqZQdvKYUL98xPeAkrNm5el8awEDqM8JlPJbXH2KM5z-iAbkTlbn6S-FegOiPJDCrLsw9FNVaFAghi8-gCyJrFN-2pWUD5trna8vCiK_M3dDOtdHDiFz0l2QKNtUIml9v_SpSnymPAjcJvAM7Q&h=0ahVxg5xBsSUaQIzTVl_PiUtYWYvcfrqcOG54kva7Zo + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:14:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8910358E474B43C5AECFA9DEDBE15F49 Ref B: MNZ221060609037 Ref C: 2024-03-03T22:14:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:14:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 966375081EB84CB2B7F55CBBA99968AF Ref B: MNZ221060608039 Ref C: 2024-03-03T22:14:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5197ffab-581b-4f01-bc05-313d0196cc7a?api-version=2023-11-15&t=638451008797374594&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SUltwsZMZbyJmWrmum8d6sY2G3wmZjJXh0c-9oQazY1pjefjgeu3u2iL2ILcIj6lkYFLPAIil8Huf5nUP7TaKHFgUBu6PuxNWlrt0KTIi2m3GwPcmnvvVCRhlCHO-hh3BKD8R3eHoTGIP0o0JCk6KqsyuABUwzhqkxucgVm1z3LfILEvldf5p8_oQm8I0TRgsCKQxcg2gDewdmsK9VY6eDmbkuOyMYMLh2IiWqbnY2kpPbSnE-7s_qFwyStHYxoSGjvygtk4uDifz4lTVdi6EuqyL1nlKONeTS8Y__UM0Kpsxo5P3WQFl2ncNgh5TUEBCfoO8ljoZCt5JOCEHvGZ1w&h=HnX98UfYYtgIpx9Xoc0ilEP5I9qnE-Wj-9HdgLJPx-w + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:14:39 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/5197ffab-581b-4f01-bc05-313d0196cc7a?api-version=2023-11-15&t=638451008797374594&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EhM9a_KW_Lq7tQpgz-ui6oazrkOs8R4qiQRBQz16mWCe83CGIm7Ws0K60oPr9GLxqaTl_vEQFSaxeT6u13EOS-T5-HTGGtSaghPSQT3PXguLSjCC_LkTJdt7Cbj5sRaiScM2PM3pd06fjNSFnUoIrKJDPJJN0cWsMp62-1IvaGkwWvXli6JD0ehK-Y_7-leCFjJziIJAdAWcddZw7S7A5tpEFBVdI6AKlMSoVR5U0HHn1UxLb1YFUZm1fYuU-QAj5joe0ldR0nIZvoLcGJ_PqPURpYQfYD-9OjStO8TqjSHML-wLJ5VFuhKHD1X6wR1Zlq_ZGkWVgqBgw9R_ajJFMQ&h=F6nEUqFImXV6weeJXhd6kMh7MMq_XNvC4TRu17TPacg + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: B21DAF071F334DAA882948FC606D418B Ref B: MNZ221060609029 Ref C: 2024-03-03T22:14:39Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5197ffab-581b-4f01-bc05-313d0196cc7a?api-version=2023-11-15&t=638451008797374594&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SUltwsZMZbyJmWrmum8d6sY2G3wmZjJXh0c-9oQazY1pjefjgeu3u2iL2ILcIj6lkYFLPAIil8Huf5nUP7TaKHFgUBu6PuxNWlrt0KTIi2m3GwPcmnvvVCRhlCHO-hh3BKD8R3eHoTGIP0o0JCk6KqsyuABUwzhqkxucgVm1z3LfILEvldf5p8_oQm8I0TRgsCKQxcg2gDewdmsK9VY6eDmbkuOyMYMLh2IiWqbnY2kpPbSnE-7s_qFwyStHYxoSGjvygtk4uDifz4lTVdi6EuqyL1nlKONeTS8Y__UM0Kpsxo5P3WQFl2ncNgh5TUEBCfoO8ljoZCt5JOCEHvGZ1w&h=HnX98UfYYtgIpx9Xoc0ilEP5I9qnE-Wj-9HdgLJPx-w + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:14:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0A35C981C9F245388B7AC9AC9B95435E Ref B: MNZ221060608011 Ref C: 2024-03-03T22:14:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5197ffab-581b-4f01-bc05-313d0196cc7a?api-version=2023-11-15&t=638451008797374594&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SUltwsZMZbyJmWrmum8d6sY2G3wmZjJXh0c-9oQazY1pjefjgeu3u2iL2ILcIj6lkYFLPAIil8Huf5nUP7TaKHFgUBu6PuxNWlrt0KTIi2m3GwPcmnvvVCRhlCHO-hh3BKD8R3eHoTGIP0o0JCk6KqsyuABUwzhqkxucgVm1z3LfILEvldf5p8_oQm8I0TRgsCKQxcg2gDewdmsK9VY6eDmbkuOyMYMLh2IiWqbnY2kpPbSnE-7s_qFwyStHYxoSGjvygtk4uDifz4lTVdi6EuqyL1nlKONeTS8Y__UM0Kpsxo5P3WQFl2ncNgh5TUEBCfoO8ljoZCt5JOCEHvGZ1w&h=HnX98UfYYtgIpx9Xoc0ilEP5I9qnE-Wj-9HdgLJPx-w + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:15:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 57D370116E7D4094AD73A8E0B34F5CD9 Ref B: MNZ221060610019 Ref C: 2024-03-03T22:15:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database_graph_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:15:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 39C9CE36D0834AEB8F54F6DA95A113D2 Ref B: MNZ221060608037 Ref C: 2024-03-03T22:15:10Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml new file mode 100644 index 00000000000..9089b772ffd --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml @@ -0,0 +1,1536 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_graph000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001","name":"cli_test_cosmosdb_gremlin_graph000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_gremlin_graph","date":"2024-03-03T21:13:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '417' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 86F1D94617B9472CB6840E6EC001CDFA Ref B: BL2AA2010202017 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], + "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", + "continuousModeProperties": {"tier": "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '387' + Content-Type: + - application/json + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:13:34.9334099Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"396c6484-675a-46d9-b464-212634fa7db4","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:13:34.9334099Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:13:34.9334099Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:34.9334099Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:34.9334099Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q3r9xI5IE6xL745ZOOzDV741Lxy0YXFDRpXdN03WXuNsJ0D_Zn7cINoSwj1qPhnFAz7ZAnzCBgRg4xPwMeyjeDVDQSQfWtUpWrFWY2iAoo6xID5rXam59i5RRgMTFlPQSuuPmrIS9IhEHliNrpJVppyoLRO4SXLgUtILi5Zz3_RhRqMMxK9zZkXFMW-cxPQVhV50LMhRfFgUBH0CDlBwhCTZX-Ia7DIQlyhCHE3r8vwWTMCnPyJC9_nZcVWiX2ku9xICZK2EwvSZ57Zie2sqLe3io1yEEbTvqPImbtWi8lUj-ZCWY3Cg1LW2GnxURy7nAx0vwRgBBmLP5tX-ZVBl4g&h=Dc_I7Ji9_594f82SIU8JJwVIqStlw1tfvYsUdZjhHZI + cache-control: + - no-store, no-cache + content-length: + - '2667' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UZJ-iaIp-dSPZCLCRlq8NwZ3MGVimtwuj8J40SCkFhbLVOWVlfd64o22izeKDVNDUdExnJIKX6tFnDuKZZbhJ7y25cMXcEvIPQlOU2gp8EezzOMyx4RlnQbF7sBERXJU2jT4OYjoZ-aJmquZ9Gdn1iCrZOk47UyJdID5CXgnGwVBRknHAnsFCGmr-dJTl4bMNTEcVXPRUjIOCYqiI3_OCvfLyauIqKoMQc4zlOZ63iFMbT4p2UZAi1fKUqExzUW5TLkVzJ9-S2COmJ7gSHHW0bpweXsxzwJfcAhEUYcwsxlB4nXXt00qItVCGMzTljumh_EYnt0Xuejgh_wVgqQqhg&h=KTW0AFF87qAKpC_hcELje0-kVJjFS5JayivRM80cNXA + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 645BD6D31DE641CC8378C01C871BD714 Ref B: BL2AA2030104029 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q3r9xI5IE6xL745ZOOzDV741Lxy0YXFDRpXdN03WXuNsJ0D_Zn7cINoSwj1qPhnFAz7ZAnzCBgRg4xPwMeyjeDVDQSQfWtUpWrFWY2iAoo6xID5rXam59i5RRgMTFlPQSuuPmrIS9IhEHliNrpJVppyoLRO4SXLgUtILi5Zz3_RhRqMMxK9zZkXFMW-cxPQVhV50LMhRfFgUBH0CDlBwhCTZX-Ia7DIQlyhCHE3r8vwWTMCnPyJC9_nZcVWiX2ku9xICZK2EwvSZ57Zie2sqLe3io1yEEbTvqPImbtWi8lUj-ZCWY3Cg1LW2GnxURy7nAx0vwRgBBmLP5tX-ZVBl4g&h=Dc_I7Ji9_594f82SIU8JJwVIqStlw1tfvYsUdZjhHZI + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EC6580A087D74B798DFF52080EDA3593 Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:13:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q3r9xI5IE6xL745ZOOzDV741Lxy0YXFDRpXdN03WXuNsJ0D_Zn7cINoSwj1qPhnFAz7ZAnzCBgRg4xPwMeyjeDVDQSQfWtUpWrFWY2iAoo6xID5rXam59i5RRgMTFlPQSuuPmrIS9IhEHliNrpJVppyoLRO4SXLgUtILi5Zz3_RhRqMMxK9zZkXFMW-cxPQVhV50LMhRfFgUBH0CDlBwhCTZX-Ia7DIQlyhCHE3r8vwWTMCnPyJC9_nZcVWiX2ku9xICZK2EwvSZ57Zie2sqLe3io1yEEbTvqPImbtWi8lUj-ZCWY3Cg1LW2GnxURy7nAx0vwRgBBmLP5tX-ZVBl4g&h=Dc_I7Ji9_594f82SIU8JJwVIqStlw1tfvYsUdZjhHZI + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C057AA41809840F5A6BB01DCE0DB60D1 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:14:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q3r9xI5IE6xL745ZOOzDV741Lxy0YXFDRpXdN03WXuNsJ0D_Zn7cINoSwj1qPhnFAz7ZAnzCBgRg4xPwMeyjeDVDQSQfWtUpWrFWY2iAoo6xID5rXam59i5RRgMTFlPQSuuPmrIS9IhEHliNrpJVppyoLRO4SXLgUtILi5Zz3_RhRqMMxK9zZkXFMW-cxPQVhV50LMhRfFgUBH0CDlBwhCTZX-Ia7DIQlyhCHE3r8vwWTMCnPyJC9_nZcVWiX2ku9xICZK2EwvSZ57Zie2sqLe3io1yEEbTvqPImbtWi8lUj-ZCWY3Cg1LW2GnxURy7nAx0vwRgBBmLP5tX-ZVBl4g&h=Dc_I7Ji9_594f82SIU8JJwVIqStlw1tfvYsUdZjhHZI + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8B4378B4B2414850B30C3377813441F4 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:14:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q3r9xI5IE6xL745ZOOzDV741Lxy0YXFDRpXdN03WXuNsJ0D_Zn7cINoSwj1qPhnFAz7ZAnzCBgRg4xPwMeyjeDVDQSQfWtUpWrFWY2iAoo6xID5rXam59i5RRgMTFlPQSuuPmrIS9IhEHliNrpJVppyoLRO4SXLgUtILi5Zz3_RhRqMMxK9zZkXFMW-cxPQVhV50LMhRfFgUBH0CDlBwhCTZX-Ia7DIQlyhCHE3r8vwWTMCnPyJC9_nZcVWiX2ku9xICZK2EwvSZ57Zie2sqLe3io1yEEbTvqPImbtWi8lUj-ZCWY3Cg1LW2GnxURy7nAx0vwRgBBmLP5tX-ZVBl4g&h=Dc_I7Ji9_594f82SIU8JJwVIqStlw1tfvYsUdZjhHZI + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8F6A9338DCA24404BE5D8178400ABCE0 Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:15:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q3r9xI5IE6xL745ZOOzDV741Lxy0YXFDRpXdN03WXuNsJ0D_Zn7cINoSwj1qPhnFAz7ZAnzCBgRg4xPwMeyjeDVDQSQfWtUpWrFWY2iAoo6xID5rXam59i5RRgMTFlPQSuuPmrIS9IhEHliNrpJVppyoLRO4SXLgUtILi5Zz3_RhRqMMxK9zZkXFMW-cxPQVhV50LMhRfFgUBH0CDlBwhCTZX-Ia7DIQlyhCHE3r8vwWTMCnPyJC9_nZcVWiX2ku9xICZK2EwvSZ57Zie2sqLe3io1yEEbTvqPImbtWi8lUj-ZCWY3Cg1LW2GnxURy7nAx0vwRgBBmLP5tX-ZVBl4g&h=Dc_I7Ji9_594f82SIU8JJwVIqStlw1tfvYsUdZjhHZI + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B46FEC041E7A4E138D4ABB5DBDBE57A0 Ref B: BL2AA2010202047 Ref C: 2024-03-03T21:15:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q3r9xI5IE6xL745ZOOzDV741Lxy0YXFDRpXdN03WXuNsJ0D_Zn7cINoSwj1qPhnFAz7ZAnzCBgRg4xPwMeyjeDVDQSQfWtUpWrFWY2iAoo6xID5rXam59i5RRgMTFlPQSuuPmrIS9IhEHliNrpJVppyoLRO4SXLgUtILi5Zz3_RhRqMMxK9zZkXFMW-cxPQVhV50LMhRfFgUBH0CDlBwhCTZX-Ia7DIQlyhCHE3r8vwWTMCnPyJC9_nZcVWiX2ku9xICZK2EwvSZ57Zie2sqLe3io1yEEbTvqPImbtWi8lUj-ZCWY3Cg1LW2GnxURy7nAx0vwRgBBmLP5tX-ZVBl4g&h=Dc_I7Ji9_594f82SIU8JJwVIqStlw1tfvYsUdZjhHZI + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1D1D4C5C8F7248D8BDEECD2CC47FA8F8 Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b587ff7e-1f3d-4ecb-aaa1-72b4630552b3?api-version=2024-02-15-preview&t=638450972168740923&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q3r9xI5IE6xL745ZOOzDV741Lxy0YXFDRpXdN03WXuNsJ0D_Zn7cINoSwj1qPhnFAz7ZAnzCBgRg4xPwMeyjeDVDQSQfWtUpWrFWY2iAoo6xID5rXam59i5RRgMTFlPQSuuPmrIS9IhEHliNrpJVppyoLRO4SXLgUtILi5Zz3_RhRqMMxK9zZkXFMW-cxPQVhV50LMhRfFgUBH0CDlBwhCTZX-Ia7DIQlyhCHE3r8vwWTMCnPyJC9_nZcVWiX2ku9xICZK2EwvSZ57Zie2sqLe3io1yEEbTvqPImbtWi8lUj-ZCWY3Cg1LW2GnxURy7nAx0vwRgBBmLP5tX-ZVBl4g&h=Dc_I7Ji9_594f82SIU8JJwVIqStlw1tfvYsUdZjhHZI + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E929E8272BA841008E8438AB3CADAB42 Ref B: BL2AA2010201051 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:43.5370025Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"396c6484-675a-46d9-b464-212634fa7db4","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:43.5370025Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:43.5370025Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:43.5370025Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:43.5370025Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3093' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7EF9298B716D48CDB327FC8A93D6AD99 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:43.5370025Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"396c6484-675a-46d9-b464-212634fa7db4","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:43.5370025Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:43.5370025Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:43.5370025Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:43.5370025Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3093' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B263F4BF56524A35A3DA01EFB3922C33 Ref B: BL2AA2010204049 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e751b5a6-fac2-4c40-8531-bb8aeaccbb91?api-version=2023-11-15&t=638450973996233542&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r61WJTqW0LIToxIBrBQW0YffSa_2eGTjflSnf8cxbElVLtcicfcpzSpF08RIfbmbI3nd__20fXo3_M_-j23dsAsgd2PR-UgZfMb_DNFhqZHFG4TqNGrXY5iTfjDVkoUf2OfaC6ShLVpiIlfZr_tTPP7iFwTAF_CeMz6pTAL4toI9gstBKPuROf7HHKPzpVTn5HxYPkjmjQI-NpTw2Sxx3xqqME7e2kI53StS7HL3-zT-Nyu7I66UmjiMPdL2TWYrQvmVz1Ij3Gr5PxyBYgv-A-vwcJHndf9NwCVA7dQRhUyNYPW-8Sdos5IAeecLI_lRzeX1WwgYrYvGfE6WGR9Z-g&h=54rIQ21_5RQDzBQo80EIyVYhzS5CwBlzNMFxXH8Mjq8 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/e751b5a6-fac2-4c40-8531-bb8aeaccbb91?api-version=2023-11-15&t=638450973997014805&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dYtRy-Q_P7d8g_fraWMasDlet2gbw2tabgBAUlpK0Y4T72ER_9QA9jZSloB_UClo-KsJJcTf8xjJHITIM5Mn3TszsChLFP4z6Q5dDb_hz0-y5dFbihK0ZjbTpGQRsdLI2fu0hCZdNCKoor63W47u8SxpNF66nYdManIyumiiVg4LIt1h3UB4-C25reS3AIPqK7DXSPULum3UEBbRnkbaB7yVnvmGR2vBJdyC1rmBaWLHxOJDkEZTWkzrZJLjVp0zYgzGmLhCWxXleHObom9iwGd6-kEBVyhZnKf48WslDVWJwVW2BZJDzrzmwJ07Tn_baiJi0y6LtkLhcjWoSTp4eA&h=cUWsxyzEDzXjfJ3bvgwsyFGHejAfIE3q6FVnelp24PA + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: FEF383DFB7AA42299721CCD34D0C1CE6 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:16:39Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e751b5a6-fac2-4c40-8531-bb8aeaccbb91?api-version=2023-11-15&t=638450973996233542&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r61WJTqW0LIToxIBrBQW0YffSa_2eGTjflSnf8cxbElVLtcicfcpzSpF08RIfbmbI3nd__20fXo3_M_-j23dsAsgd2PR-UgZfMb_DNFhqZHFG4TqNGrXY5iTfjDVkoUf2OfaC6ShLVpiIlfZr_tTPP7iFwTAF_CeMz6pTAL4toI9gstBKPuROf7HHKPzpVTn5HxYPkjmjQI-NpTw2Sxx3xqqME7e2kI53StS7HL3-zT-Nyu7I66UmjiMPdL2TWYrQvmVz1Ij3Gr5PxyBYgv-A-vwcJHndf9NwCVA7dQRhUyNYPW-8Sdos5IAeecLI_lRzeX1WwgYrYvGfE6WGR9Z-g&h=54rIQ21_5RQDzBQo80EIyVYhzS5CwBlzNMFxXH8Mjq8 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E7EF3B2B6D8749D1805BD97C6FFA60A8 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e751b5a6-fac2-4c40-8531-bb8aeaccbb91?api-version=2023-11-15&t=638450973996233542&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r61WJTqW0LIToxIBrBQW0YffSa_2eGTjflSnf8cxbElVLtcicfcpzSpF08RIfbmbI3nd__20fXo3_M_-j23dsAsgd2PR-UgZfMb_DNFhqZHFG4TqNGrXY5iTfjDVkoUf2OfaC6ShLVpiIlfZr_tTPP7iFwTAF_CeMz6pTAL4toI9gstBKPuROf7HHKPzpVTn5HxYPkjmjQI-NpTw2Sxx3xqqME7e2kI53StS7HL3-zT-Nyu7I66UmjiMPdL2TWYrQvmVz1Ij3Gr5PxyBYgv-A-vwcJHndf9NwCVA7dQRhUyNYPW-8Sdos5IAeecLI_lRzeX1WwgYrYvGfE6WGR9Z-g&h=54rIQ21_5RQDzBQo80EIyVYhzS5CwBlzNMFxXH8Mjq8 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D0631DE5BEE3466A842158E0CAF8A83A Ref B: BL2AA2030102019 Ref C: 2024-03-03T21:17:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"1k9bAA==","_self":"dbs/1k9bAA==/","_etag":"\"0000d806-0000-0700-0000-65e4e8bd0000\"","_colls":"colls/","_users":"users/","_ts":1709500605}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '472' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AAA06FE9F73742B7A35002E46454808B Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:17:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 65dd507f-d9a3-11ee-ba89-000d3a1e0e23, Request URI: /apps/31ad983c-06d1-46f8-8aea-8fb81d4d9cc3/services/f438905c-930f-440d-a9d1-a8efed528a5b/partitions/02accdba-ea9c-4f33-b5f4-953abd121634/replicas/133536924107555007s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:17:11.0748258Z, RequestEndTime: + 2024-03-03T21:17:11.0775005Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:16:16.5820791Z\\\",\\\"cpu\\\":0.252,\\\"memory\\\":479816176.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1518,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":216},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:26.5922211Z\\\",\\\"cpu\\\":0.420,\\\"memory\\\":479813716.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0475,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":216},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:36.6023030Z\\\",\\\"cpu\\\":0.624,\\\"memory\\\":479822528.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1471,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":217},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:46.6123249Z\\\",\\\"cpu\\\":0.171,\\\"memory\\\":479793000.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1545,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":216},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:56.6226039Z\\\",\\\"cpu\\\":0.240,\\\"memory\\\":479782656.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1006,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":217},{\\\"dateUtc\\\":\\\"2024-03-03T21:17:06.6326331Z\\\",\\\"cpu\\\":0.297,\\\"memory\\\":479770336.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1964,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":217}]}\\r\\nRequestStart: + 2024-03-03T21:17:11.0749663Z; ResponseTime: 2024-03-03T21:17:11.0774929Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11000/apps/31ad983c-06d1-46f8-8aea-8fb81d4d9cc3/services/f438905c-930f-440d-a9d1-a8efed528a5b/partitions/02accdba-ea9c-4f33-b5f4-953abd121634/replicas/133536924107555007s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.074, ActivityId: + 65dd507f-d9a3-11ee-ba89-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:16:45 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:16:45 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:16:45 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:16:45 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.0748752Z\\\", + \\\"durationInMs\\\": 0.0188},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.0748940Z\\\", \\\"durationInMs\\\": + 0.0023},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.0748963Z\\\", + \\\"durationInMs\\\": 0.0606},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:11.0749569Z\\\", \\\"durationInMs\\\": 1.6696},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.0766265Z\\\", + \\\"durationInMs\\\": 0.2268},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:11.0768533Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:17:11.0323700Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:17:11.0323933Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:17:11.0707032Z\\\"},\\\"requestSizeInBytes\\\":502,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:17:11.0750178Z; + ResponseTime: 2024-03-03T21:17:11.0775005Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.12:11300/apps/31ad983c-06d1-46f8-8aea-8fb81d4d9cc3/services/f438905c-930f-440d-a9d1-a8efed528a5b/partitions/02accdba-ea9c-4f33-b5f4-953abd121634/replicas/133536924107555005s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.159, ActivityId: + 65dd507f-d9a3-11ee-ba89-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:16:45 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:16:45 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:16:45 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:16:45 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.0749683Z\\\", + \\\"durationInMs\\\": 0.0047},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.0749730Z\\\", \\\"durationInMs\\\": + 0.0014},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.0749744Z\\\", + \\\"durationInMs\\\": 0.0373},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:11.0750117Z\\\", \\\"durationInMs\\\": 1.822},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.0768337Z\\\", + \\\"durationInMs\\\": 0.1245},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:11.0769582Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:17:11.0324314Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:17:11.0324419Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:17:11.0738482Z\\\"},\\\"requestSizeInBytes\\\":502,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7071' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 859796F9439A417680DD17C966D066FF Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:17:10Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], + "kind": "Hash"}, "defaultTtl": 1000, "conflictResolutionPolicy": {"mode": "lastWriterWins", + "conflictResolutionPath": "/path"}, "createMode": "Default"}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph create + Connection: + - keep-alive + Content-Length: + - '427' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n -p --ttl --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/24d8c88a-116d-4a81-b1b5-c6d50d96193b?api-version=2023-11-15&t=638450974321283145&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=da6ftzAWO5B80aURZzdxlTvx7PBaVUOB42YzAmimBqamn0II2k0yL-K0vmEJPx3oxM_rfxkTSdigq6_AuLn5oNZyZOymIqahxW876f2NpoViewPIjotcjplgVv9zyT8ZUYG5JSNDnAlMT-ubdTOa2I_h-wHNL3bCgbdDOZIxBM2-uE1ejRl6Z4auwVOjU6j3mNz6scqpX_tqsG4_QIbTe0D-2dNtMd7iPLGef-FxlhlC5phBV8EcRkpMsv6OuYmW4dNlvAha8NMEMJ2-Vpp_4dsvkhLYk6FA_DtnVgFr5E4k__1eegFELBj-tGnl8Rhw4f1wBYgjskSzHZ6yQSGcow&h=nd_Ftx39IR4ITtMwyxELNP8AvyefZx3Q1-4Ff08117M + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:12 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/24d8c88a-116d-4a81-b1b5-c6d50d96193b?api-version=2023-11-15&t=638450974321283145&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=RRFElN7RQqoHgau3_s9Mm842EuVsmsABAyVAQ3bYUAx32DOHDhZgfD5zpVVh_a8l3L9ffnffn-NbM3MzO1-b-Ou0JfoAhjuLyBUER8e-Y-RFBCIipwY5YmZf4WtGWsYbAPE3vm8rBQIAhleHLzk9sVbaYPZfC6xST_ka_vAu7xfOjjp23_XvQl01Syk7WbvftgnZRxPfCIdy_FwkwUIEjFKsegfSkor97rv-3aOLZ_unnoOUw40NRx55wST0o-jyRvvRTbEXNO1B4kS4onCUoRzJSgvQ4ACvvlBXnn9Un-fSrMfMgSY3cl5Ahiv6zIehH7M78HuKu0Kthdq0ppJEJw&h=hLXzPY2jc4P2bvb-zZrODZCMYFX7521Bp98iCFYPCtA + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 078E091F0D144B3B835E8D5FECBF6279 Ref B: BL2AA2010205003 Ref C: 2024-03-03T21:17:11Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --ttl --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/24d8c88a-116d-4a81-b1b5-c6d50d96193b?api-version=2023-11-15&t=638450974321283145&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=da6ftzAWO5B80aURZzdxlTvx7PBaVUOB42YzAmimBqamn0II2k0yL-K0vmEJPx3oxM_rfxkTSdigq6_AuLn5oNZyZOymIqahxW876f2NpoViewPIjotcjplgVv9zyT8ZUYG5JSNDnAlMT-ubdTOa2I_h-wHNL3bCgbdDOZIxBM2-uE1ejRl6Z4auwVOjU6j3mNz6scqpX_tqsG4_QIbTe0D-2dNtMd7iPLGef-FxlhlC5phBV8EcRkpMsv6OuYmW4dNlvAha8NMEMJ2-Vpp_4dsvkhLYk6FA_DtnVgFr5E4k__1eegFELBj-tGnl8Rhw4f1wBYgjskSzHZ6yQSGcow&h=nd_Ftx39IR4ITtMwyxELNP8AvyefZx3Q1-4Ff08117M + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D15B698D866341C58431C6C3F4388115 Ref B: BL2AA2010202035 Ref C: 2024-03-03T21:17:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --ttl --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/24d8c88a-116d-4a81-b1b5-c6d50d96193b?api-version=2023-11-15&t=638450974321283145&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=da6ftzAWO5B80aURZzdxlTvx7PBaVUOB42YzAmimBqamn0II2k0yL-K0vmEJPx3oxM_rfxkTSdigq6_AuLn5oNZyZOymIqahxW876f2NpoViewPIjotcjplgVv9zyT8ZUYG5JSNDnAlMT-ubdTOa2I_h-wHNL3bCgbdDOZIxBM2-uE1ejRl6Z4auwVOjU6j3mNz6scqpX_tqsG4_QIbTe0D-2dNtMd7iPLGef-FxlhlC5phBV8EcRkpMsv6OuYmW4dNlvAha8NMEMJ2-Vpp_4dsvkhLYk6FA_DtnVgFr5E4k__1eegFELBj-tGnl8Rhw4f1wBYgjskSzHZ6yQSGcow&h=nd_Ftx39IR4ITtMwyxELNP8AvyefZx3Q1-4Ff08117M + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C009870580574DABB4CA1BCD634D411F Ref B: BL2AA2030103003 Ref C: 2024-03-03T21:17:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --ttl --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1k9bAKSdLWo=","_ts":1709500637,"_self":"dbs/1k9bAA==/colls/1k9bAKSdLWo=/","_etag":"\"0000db06-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1196' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 86655A69B142479891B2BD22CF5F4BFB Ref B: BL2AA2010205025 Ref C: 2024-03-03T21:17:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1k9bAKSdLWo=","_ts":1709500637,"_self":"dbs/1k9bAA==/colls/1k9bAKSdLWo=/","_etag":"\"0000db06-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1196' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 48E64F43D2764DC7B242FE0B579E5959 Ref B: BL2AA2030104033 Ref C: 2024-03-03T21:17:43Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}, {"path": "/\"_etag\"/?"}]}, "partitionKey": + {"paths": ["/thePartitionKey"], "kind": "Hash"}, "defaultTtl": 2000, "uniqueKeyPolicy": + {"uniqueKeys": []}, "conflictResolutionPolicy": {"mode": "lastWriterWins", "conflictResolutionPath": + "/path", "conflictResolutionProcedure": ""}, "createMode": "Default"}, "options": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph update + Connection: + - keep-alive + Content-Length: + - '527' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8694ef20-acde-4710-aa5d-1ede65157b5a?api-version=2023-11-15&t=638450974644568380&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KdaHwLX12HIeETsuFWHcWFLEjbzjZy8LLbE5X9eUb4r1IWFRSTI6RtQ8y5EX6UZsLQTWBhEhMleFD4odoMsw7wmZhAm5-_rfpcMK7JHibCLxA5oz3CW0IruHxZum62FAuD4DxElblTkKaqJlMJ0eVXnj7EkyUeQG4CiBcI756N9Y502GtMsltK5oBC_pHFjr6wJ3Ui0Xk8bZ1MOaQ2E4cw0JKWGsBzMhVA4vyYRgkUZeD6RBMz50j4CrMNW-msQkCeITjzJPwvPjmssh8W2sXLj829ylV4OcBJxwsIgvN3ntma-7SWTvOoPeCVBaXj2hgWOvF-EtQNZ7NN_GftBR6w&h=fdgWFot_JC034QBDI4SdgqWz_2bqHtUkqYLtmt3Ue2U + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:43 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/8694ef20-acde-4710-aa5d-1ede65157b5a?api-version=2023-11-15&t=638450974644724588&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gg-rWc0M2oEV_iMPkLm-cdG9TSYns_WetkGrBzeS4CJu8Ug4nFsbgqO--5U8coEuA2WwMtw9Y07VyXXQLbTyIKAWyVu-ZOUS7zpoFkmZlP27AJ0X3joMAODiHjI2zS1cbACudsAr78x_c2aYMrCqMqywCjmMN3vRht-HoIAXDU2T4h8ncJck9fSeTh4FJlLhw6AP4FiAgpK_5Hf05So3Pqi2wNh6kDgM_fqPZi7FzTeAZi6_QKMDenjwDj0yFKDMHQKwNgcW2lHJMqLaTZzmUEe_IkdWye_g1iFY7V6r-2sCIaSxwYUuOdr5jgUmqzE9lVqJdQls7edAE5Rk1SddrA&h=7BZ4trMAYG9JudHaW-92-KAfAk0C4pcF9vQJ2uvh2UU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 10007651A5E64416816DBC7BCC060F6C Ref B: BL2AA2010205051 Ref C: 2024-03-03T21:17:43Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8694ef20-acde-4710-aa5d-1ede65157b5a?api-version=2023-11-15&t=638450974644568380&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KdaHwLX12HIeETsuFWHcWFLEjbzjZy8LLbE5X9eUb4r1IWFRSTI6RtQ8y5EX6UZsLQTWBhEhMleFD4odoMsw7wmZhAm5-_rfpcMK7JHibCLxA5oz3CW0IruHxZum62FAuD4DxElblTkKaqJlMJ0eVXnj7EkyUeQG4CiBcI756N9Y502GtMsltK5oBC_pHFjr6wJ3Ui0Xk8bZ1MOaQ2E4cw0JKWGsBzMhVA4vyYRgkUZeD6RBMz50j4CrMNW-msQkCeITjzJPwvPjmssh8W2sXLj829ylV4OcBJxwsIgvN3ntma-7SWTvOoPeCVBaXj2hgWOvF-EtQNZ7NN_GftBR6w&h=fdgWFot_JC034QBDI4SdgqWz_2bqHtUkqYLtmt3Ue2U + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 03537FF688CC4DAA986AA7D232826858 Ref B: BL2AA2010204021 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8694ef20-acde-4710-aa5d-1ede65157b5a?api-version=2023-11-15&t=638450974644568380&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KdaHwLX12HIeETsuFWHcWFLEjbzjZy8LLbE5X9eUb4r1IWFRSTI6RtQ8y5EX6UZsLQTWBhEhMleFD4odoMsw7wmZhAm5-_rfpcMK7JHibCLxA5oz3CW0IruHxZum62FAuD4DxElblTkKaqJlMJ0eVXnj7EkyUeQG4CiBcI756N9Y502GtMsltK5oBC_pHFjr6wJ3Ui0Xk8bZ1MOaQ2E4cw0JKWGsBzMhVA4vyYRgkUZeD6RBMz50j4CrMNW-msQkCeITjzJPwvPjmssh8W2sXLj829ylV4OcBJxwsIgvN3ntma-7SWTvOoPeCVBaXj2hgWOvF-EtQNZ7NN_GftBR6w&h=fdgWFot_JC034QBDI4SdgqWz_2bqHtUkqYLtmt3Ue2U + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0C8B48683FD847908C4A6044F48B8871 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:18:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1k9bAKSdLWo=","_ts":1709500670,"_self":"dbs/1k9bAA==/colls/1k9bAKSdLWo=/","_etag":"\"0000e206-0000-0700-0000-65e4e8fe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1196' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 044D54F3BF264DB7A146D0F6E6334F84 Ref B: BL2AA2010203019 Ref C: 2024-03-03T21:18:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1k9bAKSdLWo=","_ts":1709500670,"_self":"dbs/1k9bAA==/colls/1k9bAKSdLWo=/","_etag":"\"0000e206-0000-0700-0000-65e4e8fe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1196' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 58988576B74748CCA66EBB0E3072BADD Ref B: BL2AA2010205051 Ref C: 2024-03-03T21:18:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1k9bAKSdLWo=","_ts":1709500670,"_self":"dbs/1k9bAA==/colls/1k9bAKSdLWo=/","_etag":"\"0000e206-0000-0700-0000-65e4e8fe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1095' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 011205DC4DCE4827888EEEA905801D2A Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:18:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"1k9bAKSdLWo=","_ts":1709500670,"_self":"dbs/1k9bAA==/colls/1k9bAKSdLWo=/","_etag":"\"0000e206-0000-0700-0000-65e4e8fe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1196' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5E62452E6DD0435E99E6813B0477F481 Ref B: BL2AA2030104047 Ref C: 2024-03-03T21:18:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c16e088-aa92-41ad-b89a-33f696ac7860?api-version=2023-11-15&t=638450974978122441&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=nuMxWqfwRcb2enSezwT9aOzb9VEYXMgpnqqQlpBXkWddI_TgLNYrNd2umGkJm_UUEgfRRXvBb8jyLTHbBU3vYWDbHnoi8NbYRJ3eDGBoO9fYLTX3j1EhMfg3VFoYzct8Wo1Sy27pT54kZLJejRqSV80RyE9wqjrvrG8x-2ONtJMjWqk0pIybTUG1DHXnDaXqrRWLF6P0UrJF2MaILTBQ3eeh0OriUMsS_l5QFux8iqCUt0VB4Qyo29SixfNg8Z8PZdVjojSvMX96kjpuxneQm5q4lLIQb-itunLenZfa2MImkmE0AIzzi-28JTghiwcAj_5Ac5nWRf5o6ZC2Kq6k0w&h=By6OiS-0NlRo2gtAUhqxzuBgdGczZY58JJW1V_nT0VA + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:17 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/6c16e088-aa92-41ad-b89a-33f696ac7860?api-version=2023-11-15&t=638450974978122441&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=VEOKjO5IPfcam83we7irp9Sj3SyUWieFvvgkK3jHpfCpvPRf3WdHtOUW7VYySZ3Y3DAdrQ4unHVV1tPtKzFrpDj9dlVxB05LYNDMZPg5lRWWUC7aCf3OitXTlSDgYlUKfeV3ur6e2yyKLQXcmtjcX00x7HPhu7utnK_LF9O4qgNPrhv3bO3YPUE5xdYm1mxaR_AyI64IxfJKHgTn3rbg8QgYqSp3CN3MvrnwqEI9jJ5qepR5zeIZGDz1p2rxfgZk1vBlnbAJLNnIxAkZWdXfJ2A83kruc77zL5jY913XmTP4i9AsMh8IHPzJX6rnfFkgsy_c2PdLBLpXxtsQByzS9g&h=IS56nsEzMXZ8SGJwrUgWKAA_QYQ2RcoxHM67jAvZG7k + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 22CC67BDE194474898345132F20A817C Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:18:17Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c16e088-aa92-41ad-b89a-33f696ac7860?api-version=2023-11-15&t=638450974978122441&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=nuMxWqfwRcb2enSezwT9aOzb9VEYXMgpnqqQlpBXkWddI_TgLNYrNd2umGkJm_UUEgfRRXvBb8jyLTHbBU3vYWDbHnoi8NbYRJ3eDGBoO9fYLTX3j1EhMfg3VFoYzct8Wo1Sy27pT54kZLJejRqSV80RyE9wqjrvrG8x-2ONtJMjWqk0pIybTUG1DHXnDaXqrRWLF6P0UrJF2MaILTBQ3eeh0OriUMsS_l5QFux8iqCUt0VB4Qyo29SixfNg8Z8PZdVjojSvMX96kjpuxneQm5q4lLIQb-itunLenZfa2MImkmE0AIzzi-28JTghiwcAj_5Ac5nWRf5o6ZC2Kq6k0w&h=By6OiS-0NlRo2gtAUhqxzuBgdGczZY58JJW1V_nT0VA + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3E5AD228C9DE426AB6CC2CE49AEEC051 Ref B: BL2AA2030103007 Ref C: 2024-03-03T21:18:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c16e088-aa92-41ad-b89a-33f696ac7860?api-version=2023-11-15&t=638450974978122441&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=nuMxWqfwRcb2enSezwT9aOzb9VEYXMgpnqqQlpBXkWddI_TgLNYrNd2umGkJm_UUEgfRRXvBb8jyLTHbBU3vYWDbHnoi8NbYRJ3eDGBoO9fYLTX3j1EhMfg3VFoYzct8Wo1Sy27pT54kZLJejRqSV80RyE9wqjrvrG8x-2ONtJMjWqk0pIybTUG1DHXnDaXqrRWLF6P0UrJF2MaILTBQ3eeh0OriUMsS_l5QFux8iqCUt0VB4Qyo29SixfNg8Z8PZdVjojSvMX96kjpuxneQm5q4lLIQb-itunLenZfa2MImkmE0AIzzi-28JTghiwcAj_5Ac5nWRf5o6ZC2Kq6k0w&h=By6OiS-0NlRo2gtAUhqxzuBgdGczZY58JJW1V_nT0VA + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 09930031122946D5ACC5C8BBCCE0349C Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:18:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb gremlin graph list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:49 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4A02AEB8EE0144E894C0D2069D33483F Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:18:48Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml new file mode 100644 index 00000000000..1c7606a9a36 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml @@ -0,0 +1,1206 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_collection000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001","name":"cli_test_cosmosdb_mongodb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_collection","date":"2024-03-03T21:13:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '432' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 92BE340B84B4462DA9800EBB255F76AD Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": + "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": + "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '355' + Content-Type: + - application/json + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:13:35.0482798Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"d0c2218c-e462-4fce-a87f-2413cad2689f","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:13:35.0482798Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:13:35.0482798Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.0482798Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.0482798Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=For_P0vv_GCQ5O1WBv4vVbe35RbrVINqsvG9AbeLA-h8ioUXaeIfocTz2BcTrifSXUc4hnq3r_sApxKLnsiqSX8XcTZybeP_V3CplKORdNulGV9A67LaqEsqIYTw17Ehb-H_L6gWJsNrowvXVF6RD7nGxGIJn0tM_wJuO_mbc6XLUSaw8bLtPJvpi-T6lyVSAmtRaN8ft7H1cPe-c517O46k9_KPiygXU3CieM0_w69cwBkDCqVr2wHAjmQnsUDdqtse38XPa1PAosGM6CKY5nqRFECq2H01PooJWmaRuPmvELg1wMcxjXcAmh6XYj8hr025BaLMJmAhOMhM-QNaRw&h=k6QT7nlVgwp2nG4pgeoNPjBqi5zuplKufquT2jLDPKE + cache-control: + - no-store, no-cache + content-length: + - '2697' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YUssct2KLHMVqzvzfAWO-bEYF7OxKYQlWVhuTciQjkVwKR3E8Gofpz41tKhvzMhJishWDwULOznQ7NGGqtxymUir6onA0YmpZEQJ5AqZNsdM17OGc2ItChSp9P3mYu-odNTQr5zfkjrF0f3QnE0hpInDTnBPY2YdBPy9KSvvpdRLOGMa4W-PSpJw0MmvrOcJGBKxuvpRB7-OmW94dtTRQDSU_MaYkWe2cZqhlHm_mwPPHiCWBcS1nC813u3Omf5mTHvpSKSEdVDgEC92bVSCYmrTQIHR7zGqjQlln3I6Fqo7_Nixo3LCINA5QmcBmY-74r3CqEQPkh0l3vIKYAyzxg&h=FGBxmUQHrtgPi1ejVG4Y2GNh7MlnTA9SKxEtSxLc9wg + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: B6DA5DBFF9F748CAAA32711C9BDA62D8 Ref B: BL2AA2030104049 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=For_P0vv_GCQ5O1WBv4vVbe35RbrVINqsvG9AbeLA-h8ioUXaeIfocTz2BcTrifSXUc4hnq3r_sApxKLnsiqSX8XcTZybeP_V3CplKORdNulGV9A67LaqEsqIYTw17Ehb-H_L6gWJsNrowvXVF6RD7nGxGIJn0tM_wJuO_mbc6XLUSaw8bLtPJvpi-T6lyVSAmtRaN8ft7H1cPe-c517O46k9_KPiygXU3CieM0_w69cwBkDCqVr2wHAjmQnsUDdqtse38XPa1PAosGM6CKY5nqRFECq2H01PooJWmaRuPmvELg1wMcxjXcAmh6XYj8hr025BaLMJmAhOMhM-QNaRw&h=k6QT7nlVgwp2nG4pgeoNPjBqi5zuplKufquT2jLDPKE + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E5A5C5C595A54A3DAD87A3A2E91B8F26 Ref B: BL2AA2010204003 Ref C: 2024-03-03T21:13:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=For_P0vv_GCQ5O1WBv4vVbe35RbrVINqsvG9AbeLA-h8ioUXaeIfocTz2BcTrifSXUc4hnq3r_sApxKLnsiqSX8XcTZybeP_V3CplKORdNulGV9A67LaqEsqIYTw17Ehb-H_L6gWJsNrowvXVF6RD7nGxGIJn0tM_wJuO_mbc6XLUSaw8bLtPJvpi-T6lyVSAmtRaN8ft7H1cPe-c517O46k9_KPiygXU3CieM0_w69cwBkDCqVr2wHAjmQnsUDdqtse38XPa1PAosGM6CKY5nqRFECq2H01PooJWmaRuPmvELg1wMcxjXcAmh6XYj8hr025BaLMJmAhOMhM-QNaRw&h=k6QT7nlVgwp2nG4pgeoNPjBqi5zuplKufquT2jLDPKE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2A6785210BB445E6BE5202B577BD8327 Ref B: BL2AA2010201009 Ref C: 2024-03-03T21:14:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=For_P0vv_GCQ5O1WBv4vVbe35RbrVINqsvG9AbeLA-h8ioUXaeIfocTz2BcTrifSXUc4hnq3r_sApxKLnsiqSX8XcTZybeP_V3CplKORdNulGV9A67LaqEsqIYTw17Ehb-H_L6gWJsNrowvXVF6RD7nGxGIJn0tM_wJuO_mbc6XLUSaw8bLtPJvpi-T6lyVSAmtRaN8ft7H1cPe-c517O46k9_KPiygXU3CieM0_w69cwBkDCqVr2wHAjmQnsUDdqtse38XPa1PAosGM6CKY5nqRFECq2H01PooJWmaRuPmvELg1wMcxjXcAmh6XYj8hr025BaLMJmAhOMhM-QNaRw&h=k6QT7nlVgwp2nG4pgeoNPjBqi5zuplKufquT2jLDPKE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D42C223E96014684B4965F04A6154806 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:14:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=For_P0vv_GCQ5O1WBv4vVbe35RbrVINqsvG9AbeLA-h8ioUXaeIfocTz2BcTrifSXUc4hnq3r_sApxKLnsiqSX8XcTZybeP_V3CplKORdNulGV9A67LaqEsqIYTw17Ehb-H_L6gWJsNrowvXVF6RD7nGxGIJn0tM_wJuO_mbc6XLUSaw8bLtPJvpi-T6lyVSAmtRaN8ft7H1cPe-c517O46k9_KPiygXU3CieM0_w69cwBkDCqVr2wHAjmQnsUDdqtse38XPa1PAosGM6CKY5nqRFECq2H01PooJWmaRuPmvELg1wMcxjXcAmh6XYj8hr025BaLMJmAhOMhM-QNaRw&h=k6QT7nlVgwp2nG4pgeoNPjBqi5zuplKufquT2jLDPKE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 037D962DB04545E184FA72B5274B89FD Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:15:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=For_P0vv_GCQ5O1WBv4vVbe35RbrVINqsvG9AbeLA-h8ioUXaeIfocTz2BcTrifSXUc4hnq3r_sApxKLnsiqSX8XcTZybeP_V3CplKORdNulGV9A67LaqEsqIYTw17Ehb-H_L6gWJsNrowvXVF6RD7nGxGIJn0tM_wJuO_mbc6XLUSaw8bLtPJvpi-T6lyVSAmtRaN8ft7H1cPe-c517O46k9_KPiygXU3CieM0_w69cwBkDCqVr2wHAjmQnsUDdqtse38XPa1PAosGM6CKY5nqRFECq2H01PooJWmaRuPmvELg1wMcxjXcAmh6XYj8hr025BaLMJmAhOMhM-QNaRw&h=k6QT7nlVgwp2nG4pgeoNPjBqi5zuplKufquT2jLDPKE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A37DFB56A88D4DA8B2587A4A430AD3ED Ref B: BL2AA2010203033 Ref C: 2024-03-03T21:15:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=For_P0vv_GCQ5O1WBv4vVbe35RbrVINqsvG9AbeLA-h8ioUXaeIfocTz2BcTrifSXUc4hnq3r_sApxKLnsiqSX8XcTZybeP_V3CplKORdNulGV9A67LaqEsqIYTw17Ehb-H_L6gWJsNrowvXVF6RD7nGxGIJn0tM_wJuO_mbc6XLUSaw8bLtPJvpi-T6lyVSAmtRaN8ft7H1cPe-c517O46k9_KPiygXU3CieM0_w69cwBkDCqVr2wHAjmQnsUDdqtse38XPa1PAosGM6CKY5nqRFECq2H01PooJWmaRuPmvELg1wMcxjXcAmh6XYj8hr025BaLMJmAhOMhM-QNaRw&h=k6QT7nlVgwp2nG4pgeoNPjBqi5zuplKufquT2jLDPKE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0B71F0CD05504973AB0CE4EE28092037 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:16:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d717a65e-edd9-4512-8bac-270dbd7d19f2?api-version=2024-02-15-preview&t=638450972168857072&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=For_P0vv_GCQ5O1WBv4vVbe35RbrVINqsvG9AbeLA-h8ioUXaeIfocTz2BcTrifSXUc4hnq3r_sApxKLnsiqSX8XcTZybeP_V3CplKORdNulGV9A67LaqEsqIYTw17Ehb-H_L6gWJsNrowvXVF6RD7nGxGIJn0tM_wJuO_mbc6XLUSaw8bLtPJvpi-T6lyVSAmtRaN8ft7H1cPe-c517O46k9_KPiygXU3CieM0_w69cwBkDCqVr2wHAjmQnsUDdqtse38XPa1PAosGM6CKY5nqRFECq2H01PooJWmaRuPmvELg1wMcxjXcAmh6XYj8hr025BaLMJmAhOMhM-QNaRw&h=k6QT7nlVgwp2nG4pgeoNPjBqi5zuplKufquT2jLDPKE + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CF5B5004B7AB4D17BCAB4D24B7C7683A Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:40.2029417Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"d0c2218c-e462-4fce-a87f-2413cad2689f","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:40.2029417Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:40.2029417Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:40.2029417Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:40.2029417Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3145' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F00C0A681F0F4B928E260A0A8F1F9637 Ref B: BL2AA2030101053 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:40.2029417Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"d0c2218c-e462-4fce-a87f-2413cad2689f","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:40.2029417Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:40.2029417Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:40.2029417Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:40.2029417Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3145' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2330457578BB4E9CA606A7F80CEB7AD7 Ref B: BL2AA2030101033 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000004", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/093d7519-f8c2-4e26-8c3e-3bab5b0265fb?api-version=2023-11-15&t=638450973996184289&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=JUrbMA-z6H_XfKs7go5C1cAlgBcMRhipGwWNtZ566fPM51K56zb-SS0GCOTQjigHqKglPrdRiktjBpUB48isbXHTnPht4rdhVOgpUyqSEOmSdNOJKQZMj8KSvbYpMVpTMOncbkbXnqgDhlEgWjgiJ6SqYOBrfvOJ1vdXByxNy5NWnckNyi8dpo36t5iA0bGmeznhph450LQMzfxamDVzOug6vV1xbgXbw3O7o_9JIURXPsy8lRaqjz5tIjVLoaJCeSLw6rvw_vGxeRfeEjVG8TSVlFIzvtLvkE4VKQzMLqRCIeea5MAW5DekZLyCsqNFTMmcgwpHWxwHbcAJEkrizQ&h=5cgrY7qOcaS96_QZLGsfqJbSPE4dnbeftTAW2VLZIIo + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/093d7519-f8c2-4e26-8c3e-3bab5b0265fb?api-version=2023-11-15&t=638450973996340196&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KWt1C6l1hu2LtfnmK6AAyrfbZcugmbfOTL4fKrXvJNYWE4y-BVCEjPeH4mEeciW_YNSDfCdC5JgMyay-EaoOARRt_UAY5zZAUICbywe_xEBvOQP_v8T9ymbXXyPbRPE5cGmzSWhA0UcY8j_abhlc2HClTFQ69oXwIuZu_8shM0Zw6aJ7ytJvrVuXzsqWmGIHvI5OqGQvygyiKdl7kspvSYAcDppehDcIGAKUVhqAWNf7EFQP-9_4ff7sBjdL1SO3UJF8mmiuyCeb3dw4kFjlgb2c2zfQRTM6TcLRRVEr_2ceqzhGrJL9T8gsMbE5l4q6rC5_t_kJkk-sqYI7GVo8Ow&h=4WXGXmWnkWp4yejhs5tMQAtwlMey1BeAko98DSB7GYY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 18426AB057524A838C08408A29CFAC64 Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:16:38Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/093d7519-f8c2-4e26-8c3e-3bab5b0265fb?api-version=2023-11-15&t=638450973996184289&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=JUrbMA-z6H_XfKs7go5C1cAlgBcMRhipGwWNtZ566fPM51K56zb-SS0GCOTQjigHqKglPrdRiktjBpUB48isbXHTnPht4rdhVOgpUyqSEOmSdNOJKQZMj8KSvbYpMVpTMOncbkbXnqgDhlEgWjgiJ6SqYOBrfvOJ1vdXByxNy5NWnckNyi8dpo36t5iA0bGmeznhph450LQMzfxamDVzOug6vV1xbgXbw3O7o_9JIURXPsy8lRaqjz5tIjVLoaJCeSLw6rvw_vGxeRfeEjVG8TSVlFIzvtLvkE4VKQzMLqRCIeea5MAW5DekZLyCsqNFTMmcgwpHWxwHbcAJEkrizQ&h=5cgrY7qOcaS96_QZLGsfqJbSPE4dnbeftTAW2VLZIIo + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6C31CD3077CD46FABFFADA0C65D2727E Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/093d7519-f8c2-4e26-8c3e-3bab5b0265fb?api-version=2023-11-15&t=638450973996184289&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=JUrbMA-z6H_XfKs7go5C1cAlgBcMRhipGwWNtZ566fPM51K56zb-SS0GCOTQjigHqKglPrdRiktjBpUB48isbXHTnPht4rdhVOgpUyqSEOmSdNOJKQZMj8KSvbYpMVpTMOncbkbXnqgDhlEgWjgiJ6SqYOBrfvOJ1vdXByxNy5NWnckNyi8dpo36t5iA0bGmeznhph450LQMzfxamDVzOug6vV1xbgXbw3O7o_9JIURXPsy8lRaqjz5tIjVLoaJCeSLw6rvw_vGxeRfeEjVG8TSVlFIzvtLvkE4VKQzMLqRCIeea5MAW5DekZLyCsqNFTMmcgwpHWxwHbcAJEkrizQ&h=5cgrY7qOcaS96_QZLGsfqJbSPE4dnbeftTAW2VLZIIo + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C27FCC385E1C43378C5644F8985DACBC Ref B: BL2AA2010203023 Ref C: 2024-03-03T21:17:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '331' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 25A2EE8CC7B54F8CA83A6130170CE329 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:17:10Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0ab4be26-0d3f-434f-828f-7693876d6652?api-version=2023-11-15&t=638450974319397153&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bj4vIjhywq0Hd83tLIjgDFvg5Hj5Pf4u7_ipUbr5HgjGzvvMEWqB_gQYTQLftWjT1jknHMjJPQgW8MWRTEImtAjScDeabJIdYL0uf68qnYiPHmxnz47Y9Gl79YAqX65TSUkejuv7U-grTnk1XEoip1hi66OcZNUgnj21m_FVKL8yN6P4Fq1TY8y5ytF37I8qprSh-kNk0jinjLjqoApQ_pz6auUP3aR2c-xquTLIWS6P89gP-3YQKT9YTRuoHIFQ-irbXm1M7WLO_iQeZZetArR6bZr2To5yKtSVctZ4FxwlwqwZ4fs59befE6aq0f9tyFe7Id25lglPWU1YA8ZUYA&h=tn4mb9KbBLs7mEqvZBSh2NlDCSNeAiBCciOVJW2p6wY + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/0ab4be26-0d3f-434f-828f-7693876d6652?api-version=2023-11-15&t=638450974319553438&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LxP5-ZhFMR6l4T5XheamIeZaTS-S4478w04Y25G23AXGloBvo5ao1MayZKHb0hVC6hvKUMZ1pdPLzN7eNm1h5CJseKiVlqp-ApzB-MKekhjkWOKLNVmiuB4hNJN0y78nq06AtHfBGv4ymgDnhfFxUwaw5ESb-s3ewUJZbJg9cF3ztRDUvBbBVB1HZVDnNqv7qAzHScHXxHC06fHzlN1QIN_6dEwUDxvPFYphv8IxJ_wNpGqXeOXkvMMcBSUsc1_RJfUEnenYTjKxawKyNNPJAw6E8PIlU0kullaqQFs7axJ3TiWkktTlTt6eJYm_41wvjroeCUnCuYesYtWi-FP5_Q&h=ugc5iQCO3fjORUOc78Hd3tR11yKr_-WesIOJZY4ovt0 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 78C0A3A238D24A72855D1BB70E7BA639 Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:17:11Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0ab4be26-0d3f-434f-828f-7693876d6652?api-version=2023-11-15&t=638450974319397153&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bj4vIjhywq0Hd83tLIjgDFvg5Hj5Pf4u7_ipUbr5HgjGzvvMEWqB_gQYTQLftWjT1jknHMjJPQgW8MWRTEImtAjScDeabJIdYL0uf68qnYiPHmxnz47Y9Gl79YAqX65TSUkejuv7U-grTnk1XEoip1hi66OcZNUgnj21m_FVKL8yN6P4Fq1TY8y5ytF37I8qprSh-kNk0jinjLjqoApQ_pz6auUP3aR2c-xquTLIWS6P89gP-3YQKT9YTRuoHIFQ-irbXm1M7WLO_iQeZZetArR6bZr2To5yKtSVctZ4FxwlwqwZ4fs59befE6aq0f9tyFe7Id25lglPWU1YA8ZUYA&h=tn4mb9KbBLs7mEqvZBSh2NlDCSNeAiBCciOVJW2p6wY + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 740CF1B80B884F0F9CE7304A042E4DB1 Ref B: BL2AA2010203049 Ref C: 2024-03-03T21:17:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0ab4be26-0d3f-434f-828f-7693876d6652?api-version=2023-11-15&t=638450974319397153&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bj4vIjhywq0Hd83tLIjgDFvg5Hj5Pf4u7_ipUbr5HgjGzvvMEWqB_gQYTQLftWjT1jknHMjJPQgW8MWRTEImtAjScDeabJIdYL0uf68qnYiPHmxnz47Y9Gl79YAqX65TSUkejuv7U-grTnk1XEoip1hi66OcZNUgnj21m_FVKL8yN6P4Fq1TY8y5ytF37I8qprSh-kNk0jinjLjqoApQ_pz6auUP3aR2c-xquTLIWS6P89gP-3YQKT9YTRuoHIFQ-irbXm1M7WLO_iQeZZetArR6bZr2To5yKtSVctZ4FxwlwqwZ4fs59befE6aq0f9tyFe7Id25lglPWU1YA8ZUYA&h=tn4mb9KbBLs7mEqvZBSh2NlDCSNeAiBCciOVJW2p6wY + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F17C6E77D8824B3F858A994DD819776B Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:17:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '402' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A9BC5E41CB3C48078AE5369E2D305EC7 Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:17:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '402' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BDE01DD656C14BE79D8D20464B3F6C65 Ref B: BL2AA2030103009 Ref C: 2024-03-03T21:17:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '402' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 774FA955940E4EC781C107F83E309973 Ref B: BL2AA2030102031 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/invalid?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"The collection ''cli000004''.''invalid'' + doesn''t exist.\r\nActivityId: 7a497d96-d9a3-11ee-a916-000d3a1e0e23, Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '176' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0D8EF4A3B63C46069E587AC0D7FEC795 Ref B: BL2AA2010205007 Ref C: 2024-03-03T21:17:45Z' + status: + code: 404 + message: NotFound +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","indexes":[{"key":{"keys":["_id"]}}]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '414' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8411B418C5CF46CB83C0E02A570EC182 Ref B: BL2AA2010202017 Ref C: 2024-03-03T21:17:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1961363-240f-4785-8bed-b214c70e3b2e?api-version=2023-11-15&t=638450974670304248&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CZMv0AQbPZRWj5dhMerxPwiPRi1TmaP5UzA8sGnUgKjrJfQA22orjX2m7NfQycr9kOl-DtmhG-nITAD8VwyI7dyuujvNxcZTUmQb3swBvpvYaOhkb1HShQ3Xi06muJk3VXyuuwwft0p9UjFP7IUQtqPLnMuJTe6g-K6ZOt8G480e5Ji2VxldBkBDXsrVImKTl75LYmTA7CqY5cZRda0ilStlPJ7CNWJjR4Z9cLEHnJLC7fd5R5I7gDYMewLM2Vv2Vn7isZLeMYpJLCwIP_WKs4-OdXuo08Ne0Tg6DEXnT36bdzJTLQP3Oz0sjLu2IJUMWgKKpLjfdFlUVsAawzFdTQ&h=CT_C3zKJIWsfGqKZRiT6wgFk0DAcW1WbO3G879Oy5Sg + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:47 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/a1961363-240f-4785-8bed-b214c70e3b2e?api-version=2023-11-15&t=638450974670460475&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FuIeTzWYZltML9cKibvThKr9wvQXW2JOd3wWrQ4RH50He6BXIojM0BrY8-Q4NpuweoKQDfpmZuizYUja0fTweCIE8lvn6iHAZ8mYnQuUWj82N0jie3Dy4tuF8PzvFgwBAM6Bw77PjcajfUVT-QIpezQ61kZtRbd0DfxIgeXzbIQR2VHmZmxDs6YQvK9T5lIirC5krhENrDdu9ooSiHm3JbGnTv1z2jaEbtHYyJWbQ3ZlZ9EpqESRq18wbNqddflGpUOvxzgdQgHH5ndafmBdeLQgRzoohWEfR7YLOa4vVIZlCOkj9HpHRDeodfjzcUyg5qQ2_j0gG7-n73xhC-yO_g&h=-2qnQx_blPwFFJfKXcwz8FC6mFDRA0pXsWSfTnwq-Sw + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 90E59DBD025341BB8D0A6A7881C05995 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:17:46Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1961363-240f-4785-8bed-b214c70e3b2e?api-version=2023-11-15&t=638450974670304248&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CZMv0AQbPZRWj5dhMerxPwiPRi1TmaP5UzA8sGnUgKjrJfQA22orjX2m7NfQycr9kOl-DtmhG-nITAD8VwyI7dyuujvNxcZTUmQb3swBvpvYaOhkb1HShQ3Xi06muJk3VXyuuwwft0p9UjFP7IUQtqPLnMuJTe6g-K6ZOt8G480e5Ji2VxldBkBDXsrVImKTl75LYmTA7CqY5cZRda0ilStlPJ7CNWJjR4Z9cLEHnJLC7fd5R5I7gDYMewLM2Vv2Vn7isZLeMYpJLCwIP_WKs4-OdXuo08Ne0Tg6DEXnT36bdzJTLQP3Oz0sjLu2IJUMWgKKpLjfdFlUVsAawzFdTQ&h=CT_C3zKJIWsfGqKZRiT6wgFk0DAcW1WbO3G879Oy5Sg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 89BAAB528DCB4495A750596A75C60A8A Ref B: BL2AA2010202009 Ref C: 2024-03-03T21:17:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1961363-240f-4785-8bed-b214c70e3b2e?api-version=2023-11-15&t=638450974670304248&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CZMv0AQbPZRWj5dhMerxPwiPRi1TmaP5UzA8sGnUgKjrJfQA22orjX2m7NfQycr9kOl-DtmhG-nITAD8VwyI7dyuujvNxcZTUmQb3swBvpvYaOhkb1HShQ3Xi06muJk3VXyuuwwft0p9UjFP7IUQtqPLnMuJTe6g-K6ZOt8G480e5Ji2VxldBkBDXsrVImKTl75LYmTA7CqY5cZRda0ilStlPJ7CNWJjR4Z9cLEHnJLC7fd5R5I7gDYMewLM2Vv2Vn7isZLeMYpJLCwIP_WKs4-OdXuo08Ne0Tg6DEXnT36bdzJTLQP3Oz0sjLu2IJUMWgKKpLjfdFlUVsAawzFdTQ&h=CT_C3zKJIWsfGqKZRiT6wgFk0DAcW1WbO3G879Oy5Sg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F850CA3F6C834D549E53D025C475AE91 Ref B: BL2AA2010203031 Ref C: 2024-03-03T21:18:17Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml new file mode 100644 index 00000000000..bb50b0dcdc1 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml @@ -0,0 +1,1063 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_database000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001","name":"cli_test_cosmosdb_mongodb_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_database","date":"2024-03-03T21:18:20Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '426' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:18:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6FB9409A505846068D12F8D5BD64CF96 Ref B: BL2AA2030102027 Ref C: 2024-03-03T21:18:21Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": + "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": + "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '355' + Content-Type: + - application/json + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:18:25.4765613Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"9f286144-7a64-4714-88e9-e857f34ef65e","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:18:25.4765613Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:18:25.4765613Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:18:25.4765613Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:18:25.4765613Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074639357&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iT65PvTtiIS_u9T25nQoaCNGRG5nn2zKrlYoo8zuEyo4ZUYXhKfExmbaFqT_u2rpsl3PYpXqbNiYKAKNNU5uPEUpN_baVECQ3AGcyBzM55yP6Sp-UXR4hwtjus_V_da-OJ1NinmO5ekyoXiv6bW6wMIgFFEjJPOe0rPFCoX79s0CSeu7gwENQv4PBL9UsJRAXACDzZpvyM5Bf-_yJ15IBBRmqfEcNfgeKFKZibl6_RKeVStS4Ohz4t9akNQxmqjdjGGQZpeV94mvZgHo8z3g6UCRt3w-17_9sR-xHjjqZ8GLAl0sbB3i02743GVkQR0QOrRHy4uYCnyYaud5TzOH_g&h=54TT9GGCxcDC484DscIF3zbCymYx4MjOGAp-VR3o0VU + cache-control: + - no-store, no-cache + content-length: + - '2695' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:27 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074795161&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=p4jPZpHtSLYJHjqghCsaNH7GHW6A_Grh3TaUgzI0yD9-X8M4PBr1GNkRV5_vY5VdXP2RuKDzvcwwDztVUwx2SNtF_2IHj29-E0qDiU68fejxjszSL1TEPPE1D8wAHlUH0CKX2fLWLPgjGWlhzd524t_9LNyQFDAgtNsAKL7_lGwfBFs6tS8nhnryDLoWf8WIzMysMQzi3gMVnSuqqC-xCqg6X1vzUtri9HLpiA7kXk0JeO2O6zNC7rLxNBNcAr15hDqHszsmDoE7NL4xzGwReZuKBHTlGaxWOrFya4hSPxpm3WqTkGZQKw6yGPbmZ-peMCV-xTHWT82IP900-d0_eQ&h=dIIs1-dDD2DalFbMJfq4SgnmloVTTx4vikLzihlg8_8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 7064D809CC1B41AD8703CE325201B3E7 Ref B: BL2AA2030103037 Ref C: 2024-03-03T21:18:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074639357&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iT65PvTtiIS_u9T25nQoaCNGRG5nn2zKrlYoo8zuEyo4ZUYXhKfExmbaFqT_u2rpsl3PYpXqbNiYKAKNNU5uPEUpN_baVECQ3AGcyBzM55yP6Sp-UXR4hwtjus_V_da-OJ1NinmO5ekyoXiv6bW6wMIgFFEjJPOe0rPFCoX79s0CSeu7gwENQv4PBL9UsJRAXACDzZpvyM5Bf-_yJ15IBBRmqfEcNfgeKFKZibl6_RKeVStS4Ohz4t9akNQxmqjdjGGQZpeV94mvZgHo8z3g6UCRt3w-17_9sR-xHjjqZ8GLAl0sbB3i02743GVkQR0QOrRHy4uYCnyYaud5TzOH_g&h=54TT9GGCxcDC484DscIF3zbCymYx4MjOGAp-VR3o0VU + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 996EB11495BC43A0AC4ED3AA8A0A951D Ref B: BL2AA2010202031 Ref C: 2024-03-03T21:18:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074639357&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iT65PvTtiIS_u9T25nQoaCNGRG5nn2zKrlYoo8zuEyo4ZUYXhKfExmbaFqT_u2rpsl3PYpXqbNiYKAKNNU5uPEUpN_baVECQ3AGcyBzM55yP6Sp-UXR4hwtjus_V_da-OJ1NinmO5ekyoXiv6bW6wMIgFFEjJPOe0rPFCoX79s0CSeu7gwENQv4PBL9UsJRAXACDzZpvyM5Bf-_yJ15IBBRmqfEcNfgeKFKZibl6_RKeVStS4Ohz4t9akNQxmqjdjGGQZpeV94mvZgHo8z3g6UCRt3w-17_9sR-xHjjqZ8GLAl0sbB3i02743GVkQR0QOrRHy4uYCnyYaud5TzOH_g&h=54TT9GGCxcDC484DscIF3zbCymYx4MjOGAp-VR3o0VU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DDDCADA0C1A34DD9A6AB893FE0FF82DB Ref B: BL2AA2010203019 Ref C: 2024-03-03T21:18:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074639357&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iT65PvTtiIS_u9T25nQoaCNGRG5nn2zKrlYoo8zuEyo4ZUYXhKfExmbaFqT_u2rpsl3PYpXqbNiYKAKNNU5uPEUpN_baVECQ3AGcyBzM55yP6Sp-UXR4hwtjus_V_da-OJ1NinmO5ekyoXiv6bW6wMIgFFEjJPOe0rPFCoX79s0CSeu7gwENQv4PBL9UsJRAXACDzZpvyM5Bf-_yJ15IBBRmqfEcNfgeKFKZibl6_RKeVStS4Ohz4t9akNQxmqjdjGGQZpeV94mvZgHo8z3g6UCRt3w-17_9sR-xHjjqZ8GLAl0sbB3i02743GVkQR0QOrRHy4uYCnyYaud5TzOH_g&h=54TT9GGCxcDC484DscIF3zbCymYx4MjOGAp-VR3o0VU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3E1C1F4030384009B5B11BB565B349B0 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:19:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074639357&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iT65PvTtiIS_u9T25nQoaCNGRG5nn2zKrlYoo8zuEyo4ZUYXhKfExmbaFqT_u2rpsl3PYpXqbNiYKAKNNU5uPEUpN_baVECQ3AGcyBzM55yP6Sp-UXR4hwtjus_V_da-OJ1NinmO5ekyoXiv6bW6wMIgFFEjJPOe0rPFCoX79s0CSeu7gwENQv4PBL9UsJRAXACDzZpvyM5Bf-_yJ15IBBRmqfEcNfgeKFKZibl6_RKeVStS4Ohz4t9akNQxmqjdjGGQZpeV94mvZgHo8z3g6UCRt3w-17_9sR-xHjjqZ8GLAl0sbB3i02743GVkQR0QOrRHy4uYCnyYaud5TzOH_g&h=54TT9GGCxcDC484DscIF3zbCymYx4MjOGAp-VR3o0VU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4F6A167B55C44212A019B86AB82594A4 Ref B: BL2AA2010203053 Ref C: 2024-03-03T21:19:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074639357&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iT65PvTtiIS_u9T25nQoaCNGRG5nn2zKrlYoo8zuEyo4ZUYXhKfExmbaFqT_u2rpsl3PYpXqbNiYKAKNNU5uPEUpN_baVECQ3AGcyBzM55yP6Sp-UXR4hwtjus_V_da-OJ1NinmO5ekyoXiv6bW6wMIgFFEjJPOe0rPFCoX79s0CSeu7gwENQv4PBL9UsJRAXACDzZpvyM5Bf-_yJ15IBBRmqfEcNfgeKFKZibl6_RKeVStS4Ohz4t9akNQxmqjdjGGQZpeV94mvZgHo8z3g6UCRt3w-17_9sR-xHjjqZ8GLAl0sbB3i02743GVkQR0QOrRHy4uYCnyYaud5TzOH_g&h=54TT9GGCxcDC484DscIF3zbCymYx4MjOGAp-VR3o0VU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BE17CBCEAD3B47969B35969A42CF1F11 Ref B: BL2AA2010202023 Ref C: 2024-03-03T21:20:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074639357&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iT65PvTtiIS_u9T25nQoaCNGRG5nn2zKrlYoo8zuEyo4ZUYXhKfExmbaFqT_u2rpsl3PYpXqbNiYKAKNNU5uPEUpN_baVECQ3AGcyBzM55yP6Sp-UXR4hwtjus_V_da-OJ1NinmO5ekyoXiv6bW6wMIgFFEjJPOe0rPFCoX79s0CSeu7gwENQv4PBL9UsJRAXACDzZpvyM5Bf-_yJ15IBBRmqfEcNfgeKFKZibl6_RKeVStS4Ohz4t9akNQxmqjdjGGQZpeV94mvZgHo8z3g6UCRt3w-17_9sR-xHjjqZ8GLAl0sbB3i02743GVkQR0QOrRHy4uYCnyYaud5TzOH_g&h=54TT9GGCxcDC484DscIF3zbCymYx4MjOGAp-VR3o0VU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C804EB8214D44F73932D5EA4B0848CBA Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:20:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/87609ea7-c468-49c1-bf83-c0a517c0111e?api-version=2024-02-15-preview&t=638450975074639357&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iT65PvTtiIS_u9T25nQoaCNGRG5nn2zKrlYoo8zuEyo4ZUYXhKfExmbaFqT_u2rpsl3PYpXqbNiYKAKNNU5uPEUpN_baVECQ3AGcyBzM55yP6Sp-UXR4hwtjus_V_da-OJ1NinmO5ekyoXiv6bW6wMIgFFEjJPOe0rPFCoX79s0CSeu7gwENQv4PBL9UsJRAXACDzZpvyM5Bf-_yJ15IBBRmqfEcNfgeKFKZibl6_RKeVStS4Ohz4t9akNQxmqjdjGGQZpeV94mvZgHo8z3g6UCRt3w-17_9sR-xHjjqZ8GLAl0sbB3i02743GVkQR0QOrRHy4uYCnyYaud5TzOH_g&h=54TT9GGCxcDC484DscIF3zbCymYx4MjOGAp-VR3o0VU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 596F3F1DB4A64F3882DE77640D86B42F Ref B: BL2AA2030102037 Ref C: 2024-03-03T21:21:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:20:29.2379964Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"9f286144-7a64-4714-88e9-e857f34ef65e","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:20:29.2379964Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:20:29.2379964Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:20:29.2379964Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:20:29.2379964Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3143' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 81BEE2512709470EAC0674DE58CDDCBF Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:21:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:20:29.2379964Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"9f286144-7a64-4714-88e9-e857f34ef65e","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:20:29.2379964Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:20:29.2379964Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:20:29.2379964Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:20:29.2379964Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3143' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 45940E2BD07E48A5A3075CDA64A94DD9 Ref B: BL2AA2030102009 Ref C: 2024-03-03T21:21:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"the database cli000002 doesn''t exist.\r\nActivityId: + 007c3a76-d9a4-11ee-9e02-000d3a1e0e23, Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '162' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9CFA23A0CAD245AF91C47EE487802E01 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:21:30Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7a1c152-13a5-4671-b9df-fed0361b1d40?api-version=2023-11-15&t=638450976916943102&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=n60j2Jtj_UJmTO66B8MPmripOdTpEgf6eJfvNqIJ6ROYDWNwVZuSs0KV7fHLohW8s-VQZsRYPVp78WfZLb_ACNpdPmNs8-Av4Mua0RQgSDOxvnbnYNizundg2HcExQmWPRxLPiqqTTmyi0oTyOyx_IKLxSfOinVerezD6aP7TTuknHxO7wXSBshi4zGEt_nxWuYpflJbnTutovAgcfJx9d7yOaRPf5TbMHzwvf1_sGItHDE5-J9XB0VAl-vNUtgUCusETIrSPS4YDatlYy7CuBKdbYUSEY7MOZ6bqjpbZ5GGvNhIHndgkWuUfRdGQxP5dqyD5QhtCNNq1dQwecvSJw&h=xgoEvLdxr0Wa56TNLVZa12W-BayRWWhtpTEieFsVyG4 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:31 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002/operationResults/a7a1c152-13a5-4671-b9df-fed0361b1d40?api-version=2023-11-15&t=638450976916943102&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=n0edGsQ9je59Ix8XyEbnO4rkKJsWer85If474pQn0GS2PZeI2PyghPOxM8HgHImrWGuwLXVLgsNegV-AinIIivUSIBWlPqaOGE0xkibzgkPlZdl6d3nDXqlRhWB3jl-Zid5LelNr5OYqhBmyv6pssme1ZrHPMgBX6fnSjDgc-WPbDUVj6w5a4CISvdkiHb05ul07suyPUpsejFk6FIHke3POMud6c_f2eMygMC1V3iSEPOi2DVxH44wHhB3qAmfByH6GIxe5kHTGk_6hcBmikYR7HvmtD7V7JJ6YMuuvw7jvSQoyCpfKqFQfY9_ljG2IAKTD3KQsijjaEKPkOS50mw&h=vXMKYWKTgbpxqVdS2pjo6pcYMdPfXetiklcMA4jtl4k + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: B62AA35B870C470E8B59DF2CC20313D0 Ref B: BL2AA2030103033 Ref C: 2024-03-03T21:21:31Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7a1c152-13a5-4671-b9df-fed0361b1d40?api-version=2023-11-15&t=638450976916943102&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=n60j2Jtj_UJmTO66B8MPmripOdTpEgf6eJfvNqIJ6ROYDWNwVZuSs0KV7fHLohW8s-VQZsRYPVp78WfZLb_ACNpdPmNs8-Av4Mua0RQgSDOxvnbnYNizundg2HcExQmWPRxLPiqqTTmyi0oTyOyx_IKLxSfOinVerezD6aP7TTuknHxO7wXSBshi4zGEt_nxWuYpflJbnTutovAgcfJx9d7yOaRPf5TbMHzwvf1_sGItHDE5-J9XB0VAl-vNUtgUCusETIrSPS4YDatlYy7CuBKdbYUSEY7MOZ6bqjpbZ5GGvNhIHndgkWuUfRdGQxP5dqyD5QhtCNNq1dQwecvSJw&h=xgoEvLdxr0Wa56TNLVZa12W-BayRWWhtpTEieFsVyG4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 259D93E1322C4100903150529C064F19 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:21:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7a1c152-13a5-4671-b9df-fed0361b1d40?api-version=2023-11-15&t=638450976916943102&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=n60j2Jtj_UJmTO66B8MPmripOdTpEgf6eJfvNqIJ6ROYDWNwVZuSs0KV7fHLohW8s-VQZsRYPVp78WfZLb_ACNpdPmNs8-Av4Mua0RQgSDOxvnbnYNizundg2HcExQmWPRxLPiqqTTmyi0oTyOyx_IKLxSfOinVerezD6aP7TTuknHxO7wXSBshi4zGEt_nxWuYpflJbnTutovAgcfJx9d7yOaRPf5TbMHzwvf1_sGItHDE5-J9XB0VAl-vNUtgUCusETIrSPS4YDatlYy7CuBKdbYUSEY7MOZ6bqjpbZ5GGvNhIHndgkWuUfRdGQxP5dqyD5QhtCNNq1dQwecvSJw&h=xgoEvLdxr0Wa56TNLVZa12W-BayRWWhtpTEieFsVyG4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 20D7F17C221D493D97A9A589E0D1A034 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:22:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '329' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4445F1D25BAB427E812234468C7677D2 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:22:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '329' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:03 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B98D9883E7DD465CA4F5CA8641A354BC Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:22:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002"}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '341' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:03 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A36FB35299674C3D9F550AC295E112B7 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:22:03Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '329' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:04 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3A2938CB8DF842F3A25844DA9FC404DB Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:22:04Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d0191016-598b-4bab-bf8a-14729a62d0f9?api-version=2023-11-15&t=638450977253785137&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=kG9KtoV9oj7D30a8ZmsYZwzyVmfsdZ1FpMc3jfzkByiNdYulnq5ubIPCKyIBnFtA8xfvKrvAhpQPHD30W19vrpfUZAM_QdByM-CRJtO0p1pusXXcV2xrDN9IPA3V1yP63qT_kfKjn28D4O8vvt6NusblXji4rnRqlmWc0aDbhEn8w0A_62w-tYqdvyiyTmbSCcq5s-jbaB7HAdmRPr-YwptLOlZPbgC-9KigwgK3ZvzCg1Oy4OBIa0rEX3X4VS4joIpjZaT9Mc_FUFYHiQ6sW_nBpnZ2Pz7mUl15MKNKFMgfQXoWWfMsMg8N1WHANDI-JcCDgwJalWEqPTbAirIixQ&h=c5hkG7iPVQspJ06pcrFJtDSjTtZc2dNkmSP7K9ZVyoE + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:04 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002/operationResults/d0191016-598b-4bab-bf8a-14729a62d0f9?api-version=2023-11-15&t=638450977253785137&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=hoCOUqvlZnK6ioj2Sc65OIOc8nrWX-iIn0XnqFeZyhBFm88ogcFA2Wq97ZSLAb7zYBMJrBo8ZKaEqW-scICkxIRxdu-xwzPqGwhvesETIVDxaxpAqtmfnYKA1IjeMh_Rgmue8kGj6-077OTgn5_9dy2dxnp5TaJVsmgCZYKnehb4KELSvbwNBwzGIPS3LXS3qs33MIqmwzhlDeBNaz0YYuOTuIcAc6NknUydz1ytEYPG8qbmgA4tpsEvC2EfyDnNj5uDsdpH5dB0U4CFvyhvOqMyzCBl6GukIQ3hFQAe5xoEx9VNGJqpcWTpNs9RAPwvjgB9-h_P8FUPdkYmWGMo-w&h=AVlWdiotQ3JKIz4W3pESZ88kzRUBMELh1Atp2Q50O5Q + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 0F41403194854500BE382DF34A6E65BC Ref B: BL2AA2030101051 Ref C: 2024-03-03T21:22:04Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d0191016-598b-4bab-bf8a-14729a62d0f9?api-version=2023-11-15&t=638450977253785137&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=kG9KtoV9oj7D30a8ZmsYZwzyVmfsdZ1FpMc3jfzkByiNdYulnq5ubIPCKyIBnFtA8xfvKrvAhpQPHD30W19vrpfUZAM_QdByM-CRJtO0p1pusXXcV2xrDN9IPA3V1yP63qT_kfKjn28D4O8vvt6NusblXji4rnRqlmWc0aDbhEn8w0A_62w-tYqdvyiyTmbSCcq5s-jbaB7HAdmRPr-YwptLOlZPbgC-9KigwgK3ZvzCg1Oy4OBIa0rEX3X4VS4joIpjZaT9Mc_FUFYHiQ6sW_nBpnZ2Pz7mUl15MKNKFMgfQXoWWfMsMg8N1WHANDI-JcCDgwJalWEqPTbAirIixQ&h=c5hkG7iPVQspJ06pcrFJtDSjTtZc2dNkmSP7K9ZVyoE + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D40F951BD14E46CB8887B59B9712672B Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:22:05Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d0191016-598b-4bab-bf8a-14729a62d0f9?api-version=2023-11-15&t=638450977253785137&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=kG9KtoV9oj7D30a8ZmsYZwzyVmfsdZ1FpMc3jfzkByiNdYulnq5ubIPCKyIBnFtA8xfvKrvAhpQPHD30W19vrpfUZAM_QdByM-CRJtO0p1pusXXcV2xrDN9IPA3V1yP63qT_kfKjn28D4O8vvt6NusblXji4rnRqlmWc0aDbhEn8w0A_62w-tYqdvyiyTmbSCcq5s-jbaB7HAdmRPr-YwptLOlZPbgC-9KigwgK3ZvzCg1Oy4OBIa0rEX3X4VS4joIpjZaT9Mc_FUFYHiQ6sW_nBpnZ2Pz7mUl15MKNKFMgfQXoWWfMsMg8N1WHANDI-JcCDgwJalWEqPTbAirIixQ&h=c5hkG7iPVQspJ06pcrFJtDSjTtZc2dNkmSP7K9ZVyoE + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D31C88067C994E788C0FDDEF3BA04F2A Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:22:35Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1B7E0C75DD5C4FEEA0AEF4E08AF42E90 Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:22:36Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_normal_database_prov_collection_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_normal_database_prov_collection_restore.yaml new file mode 100644 index 00000000000..e0e2d5f816b --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_normal_database_prov_collection_restore.yaml @@ -0,0 +1,8258 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001","name":"cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_normal_database_prov_collection_restore","date":"2024-03-03T21:13:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D0DE268A7C0C4E8B91BEAA8485360B2F Ref B: BL2AA2010202037 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": + "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": + "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '355' + Content-Type: + - application/json + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:13:35.4313105Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:13:35.4313105Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:13:35.4313105Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.4313105Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.4313105Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WfKS4t0iPHEuqyehpzDZWIMT7Kiv_wOZuwvB46lyJilK2ICxMyKcdUaNko6hKEQVbOvKcifh1ZVUiKogfgbcen6dHa7TukZTZVizfqy7f91PpsU8mbrKb6EkS2hgeLIQpZ2qlK8K-4He_sJrCJNVvesA7tlH1d7wiSNINEhsPNfqWNCRZ_gTACUOP9UOtoDG3RlFzYrcLjt25RZm48vOXnv20UPej_b0vkRHGtsq3RuPQtmSeBt1-S9Htuu5oX5RvX_DStNWG7k8G-OYN8aqyPt7ZHj6eJYt6DiIk3vp3CoKarLCIWfOTyptlOcCAIMLG4vSw39nUiWswJXkQd6Gxw&h=cGrANmqkNdhJ1-moXwVR3H8gIWZyNrzGPVdDYQiTU6g + cache-control: + - no-store, no-cache + content-length: + - '2726' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=B5GM7yRjpd8D4PsvGkxbptiVmGkILcZQxdevp22LYfv1WPA-6ILsoOCygy_hw7UpdKOI5Qgp5q1pKt-MlknXiY5883M3tCoiO2nORQlo6PkMpdV08RebEg96HlXRaVSNztN0GINraSW32mRxLsf0tQhXFZcFXQhNUD_iOXjaiiEOpEDNb2obZl7kLF0MMcQmWX-hLrLa0wAJA32-OiHpP3yND_7thmzMVBYtieylRh-yIVlIhszi_rQZeaJ45om8JRrPDeCmBDIIdFPLKBKvhQtUcKNBtgnvJAFdvoe20k5AdunBnGZ_gwZA8NwEAz1u97XWF1GttU28yu0-Hbcu4w&h=SfyD1PDJJaVRpQ6nOQhNYirpR7G8SLiUh69DAFXqxro + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: EF6356410FD3467E8487CCC7D1E6543E Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WfKS4t0iPHEuqyehpzDZWIMT7Kiv_wOZuwvB46lyJilK2ICxMyKcdUaNko6hKEQVbOvKcifh1ZVUiKogfgbcen6dHa7TukZTZVizfqy7f91PpsU8mbrKb6EkS2hgeLIQpZ2qlK8K-4He_sJrCJNVvesA7tlH1d7wiSNINEhsPNfqWNCRZ_gTACUOP9UOtoDG3RlFzYrcLjt25RZm48vOXnv20UPej_b0vkRHGtsq3RuPQtmSeBt1-S9Htuu5oX5RvX_DStNWG7k8G-OYN8aqyPt7ZHj6eJYt6DiIk3vp3CoKarLCIWfOTyptlOcCAIMLG4vSw39nUiWswJXkQd6Gxw&h=cGrANmqkNdhJ1-moXwVR3H8gIWZyNrzGPVdDYQiTU6g + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 81ACF6C8A7C149D085A54DA32FBB8461 Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:13:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WfKS4t0iPHEuqyehpzDZWIMT7Kiv_wOZuwvB46lyJilK2ICxMyKcdUaNko6hKEQVbOvKcifh1ZVUiKogfgbcen6dHa7TukZTZVizfqy7f91PpsU8mbrKb6EkS2hgeLIQpZ2qlK8K-4He_sJrCJNVvesA7tlH1d7wiSNINEhsPNfqWNCRZ_gTACUOP9UOtoDG3RlFzYrcLjt25RZm48vOXnv20UPej_b0vkRHGtsq3RuPQtmSeBt1-S9Htuu5oX5RvX_DStNWG7k8G-OYN8aqyPt7ZHj6eJYt6DiIk3vp3CoKarLCIWfOTyptlOcCAIMLG4vSw39nUiWswJXkQd6Gxw&h=cGrANmqkNdhJ1-moXwVR3H8gIWZyNrzGPVdDYQiTU6g + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 69FBF16DCAB04C799A361A6AD89AEB1F Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:14:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WfKS4t0iPHEuqyehpzDZWIMT7Kiv_wOZuwvB46lyJilK2ICxMyKcdUaNko6hKEQVbOvKcifh1ZVUiKogfgbcen6dHa7TukZTZVizfqy7f91PpsU8mbrKb6EkS2hgeLIQpZ2qlK8K-4He_sJrCJNVvesA7tlH1d7wiSNINEhsPNfqWNCRZ_gTACUOP9UOtoDG3RlFzYrcLjt25RZm48vOXnv20UPej_b0vkRHGtsq3RuPQtmSeBt1-S9Htuu5oX5RvX_DStNWG7k8G-OYN8aqyPt7ZHj6eJYt6DiIk3vp3CoKarLCIWfOTyptlOcCAIMLG4vSw39nUiWswJXkQd6Gxw&h=cGrANmqkNdhJ1-moXwVR3H8gIWZyNrzGPVdDYQiTU6g + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B7BAC4DC4779495B9903B08C8024EA8A Ref B: BL2AA2030103027 Ref C: 2024-03-03T21:14:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WfKS4t0iPHEuqyehpzDZWIMT7Kiv_wOZuwvB46lyJilK2ICxMyKcdUaNko6hKEQVbOvKcifh1ZVUiKogfgbcen6dHa7TukZTZVizfqy7f91PpsU8mbrKb6EkS2hgeLIQpZ2qlK8K-4He_sJrCJNVvesA7tlH1d7wiSNINEhsPNfqWNCRZ_gTACUOP9UOtoDG3RlFzYrcLjt25RZm48vOXnv20UPej_b0vkRHGtsq3RuPQtmSeBt1-S9Htuu5oX5RvX_DStNWG7k8G-OYN8aqyPt7ZHj6eJYt6DiIk3vp3CoKarLCIWfOTyptlOcCAIMLG4vSw39nUiWswJXkQd6Gxw&h=cGrANmqkNdhJ1-moXwVR3H8gIWZyNrzGPVdDYQiTU6g + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 280CCA79D3244E289A695FE296FCE346 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:15:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WfKS4t0iPHEuqyehpzDZWIMT7Kiv_wOZuwvB46lyJilK2ICxMyKcdUaNko6hKEQVbOvKcifh1ZVUiKogfgbcen6dHa7TukZTZVizfqy7f91PpsU8mbrKb6EkS2hgeLIQpZ2qlK8K-4He_sJrCJNVvesA7tlH1d7wiSNINEhsPNfqWNCRZ_gTACUOP9UOtoDG3RlFzYrcLjt25RZm48vOXnv20UPej_b0vkRHGtsq3RuPQtmSeBt1-S9Htuu5oX5RvX_DStNWG7k8G-OYN8aqyPt7ZHj6eJYt6DiIk3vp3CoKarLCIWfOTyptlOcCAIMLG4vSw39nUiWswJXkQd6Gxw&h=cGrANmqkNdhJ1-moXwVR3H8gIWZyNrzGPVdDYQiTU6g + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D8C9E25E29C341CA87B8B6E44EA1B1D8 Ref B: BL2AA2010204003 Ref C: 2024-03-03T21:15:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WfKS4t0iPHEuqyehpzDZWIMT7Kiv_wOZuwvB46lyJilK2ICxMyKcdUaNko6hKEQVbOvKcifh1ZVUiKogfgbcen6dHa7TukZTZVizfqy7f91PpsU8mbrKb6EkS2hgeLIQpZ2qlK8K-4He_sJrCJNVvesA7tlH1d7wiSNINEhsPNfqWNCRZ_gTACUOP9UOtoDG3RlFzYrcLjt25RZm48vOXnv20UPej_b0vkRHGtsq3RuPQtmSeBt1-S9Htuu5oX5RvX_DStNWG7k8G-OYN8aqyPt7ZHj6eJYt6DiIk3vp3CoKarLCIWfOTyptlOcCAIMLG4vSw39nUiWswJXkQd6Gxw&h=cGrANmqkNdhJ1-moXwVR3H8gIWZyNrzGPVdDYQiTU6g + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D1A17987624B4A709F71214D01BE93A7 Ref B: BL2AA2030101051 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fc8bba3-e990-412d-9018-2417219d904d?api-version=2024-02-15-preview&t=638450972174026190&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WfKS4t0iPHEuqyehpzDZWIMT7Kiv_wOZuwvB46lyJilK2ICxMyKcdUaNko6hKEQVbOvKcifh1ZVUiKogfgbcen6dHa7TukZTZVizfqy7f91PpsU8mbrKb6EkS2hgeLIQpZ2qlK8K-4He_sJrCJNVvesA7tlH1d7wiSNINEhsPNfqWNCRZ_gTACUOP9UOtoDG3RlFzYrcLjt25RZm48vOXnv20UPej_b0vkRHGtsq3RuPQtmSeBt1-S9Htuu5oX5RvX_DStNWG7k8G-OYN8aqyPt7ZHj6eJYt6DiIk3vp3CoKarLCIWfOTyptlOcCAIMLG4vSw39nUiWswJXkQd6Gxw&h=cGrANmqkNdhJ1-moXwVR3H8gIWZyNrzGPVdDYQiTU6g + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CD6304FD7C784E6496DE027684C7151D Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:37.1096764Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:37.1096764Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:37.1096764Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:37.1096764Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:37.1096764Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3174' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BB1AB5F7B01440C082BBFC1109B66672 Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:37.1096764Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","mongoEndpoint":"https://cli000003.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:37.1096764Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:37.1096764Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:37.1096764Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:37.1096764Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3174' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 95293AFFCC014929B0B266DE851B992A Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000004", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9cc8a47-8ac4-4ba3-99f8-f17fa9dd869d?api-version=2023-11-15&t=638450974004747916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=peFICE9sEJRSDOi1-U8MQux8iyu-ib7yLNCUl_kg2Hgkna8Ne0lCQpAJ8IEkYFCNkRT0H06XoM91LCKE3zlmsMqGZxVbaZaobXtlEeZh1WrRuGnvWk-HJS2qwgGFz51fNMXyNI_0L2LQ5bbvcqQn4dcetC8himMdbrM8w1imRTS0-bzGmiA4_EgfaEidprYGi7ad7eTaAKrcbyufqgA6ISFh7gVgMwINtLYFGBvl6blNG73mi4wvv7G-NXS6NIOR5HYb5JP2oD_jt1h4YTz2kbmdn423YDmu1WE6IPaEiXDfapnFIQo6QSRD43G5qtosC4IjJi_JP3D2LY40LIZ1kA&h=lKh5dUadezKIRB12tYPmPFT3EBWLZek4AY-XZ6rAKfE + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/f9cc8a47-8ac4-4ba3-99f8-f17fa9dd869d?api-version=2023-11-15&t=638450974004904151&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=p0YSQsIzjUlx4N4zyTgDQ4vld2tx0x3cPOY8QXoLDPZjKS5Q-Qg3rvlD2V5LFLEoFhLHBmvC1ot8fAWjwCqkyh02wjCYqjPC6M82whnDtzLOxZsKU2cQPaj1OG5H0StoTbMXtThHVJVylT5Biaynx8fXX2TNFeQF-jkLPIRo9tlyVLPBTBKpJ35yO1-nWjqtQK8STuJnyV8KqKvbfPDHSlSvsK_mKECRJ21GW-aPCmHypJHyT64buJxlj-JxWrpMEpMk_jcTkcu2gWYshMBH-w3QFXMwkAzstW4S29rqMlt5WffrGIedQCPb_9J2UmehEWDNUIZrgvBjHYaTW6OUWg&h=frmLuuwd81jPg9ltPNtYLAlQWFiYFzpMnf0NRijLt64 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 076E00EFFA51489E8BC9D526A69245E0 Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:16:39Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9cc8a47-8ac4-4ba3-99f8-f17fa9dd869d?api-version=2023-11-15&t=638450974004747916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=peFICE9sEJRSDOi1-U8MQux8iyu-ib7yLNCUl_kg2Hgkna8Ne0lCQpAJ8IEkYFCNkRT0H06XoM91LCKE3zlmsMqGZxVbaZaobXtlEeZh1WrRuGnvWk-HJS2qwgGFz51fNMXyNI_0L2LQ5bbvcqQn4dcetC8himMdbrM8w1imRTS0-bzGmiA4_EgfaEidprYGi7ad7eTaAKrcbyufqgA6ISFh7gVgMwINtLYFGBvl6blNG73mi4wvv7G-NXS6NIOR5HYb5JP2oD_jt1h4YTz2kbmdn423YDmu1WE6IPaEiXDfapnFIQo6QSRD43G5qtosC4IjJi_JP3D2LY40LIZ1kA&h=lKh5dUadezKIRB12tYPmPFT3EBWLZek4AY-XZ6rAKfE + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 462E3E2AD86749659B5D770D4766699C Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:16:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f9cc8a47-8ac4-4ba3-99f8-f17fa9dd869d?api-version=2023-11-15&t=638450974004747916&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=peFICE9sEJRSDOi1-U8MQux8iyu-ib7yLNCUl_kg2Hgkna8Ne0lCQpAJ8IEkYFCNkRT0H06XoM91LCKE3zlmsMqGZxVbaZaobXtlEeZh1WrRuGnvWk-HJS2qwgGFz51fNMXyNI_0L2LQ5bbvcqQn4dcetC8himMdbrM8w1imRTS0-bzGmiA4_EgfaEidprYGi7ad7eTaAKrcbyufqgA6ISFh7gVgMwINtLYFGBvl6blNG73mi4wvv7G-NXS6NIOR5HYb5JP2oD_jt1h4YTz2kbmdn423YDmu1WE6IPaEiXDfapnFIQo6QSRD43G5qtosC4IjJi_JP3D2LY40LIZ1kA&h=lKh5dUadezKIRB12tYPmPFT3EBWLZek4AY-XZ6rAKfE + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C0BBF288D72C418BAE687FA2A38BB952 Ref B: BL2AA2010202039 Ref C: 2024-03-03T21:17:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '360' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1996C6FBA3DA46998E0F523AA2AD3099 Ref B: BL2AA2010203021 Ref C: 2024-03-03T21:17:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"The collection ''cli000004''.''cli000002'' + doesn''t exist.\r\nActivityId: 66a1777e-d9a3-11ee-b19d-000d3a1e0e23, Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '178' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 86D6A1101F0844B5BE614FD358FE1C2D Ref B: BL2AA2010202053 Ref C: 2024-03-03T21:17:12Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": + "Hash"}, "createMode": "Default"}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + Content-Length: + - '126' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --shard + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe89f258-6604-4cf3-a40d-5eee4d77a8c5?api-version=2023-11-15&t=638450974337002086&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=KwLpYZx7AyfrJYbdawm-1XThRjrgZ1w0DwfpCRBWR2OytBjEkmhes-iL07Pvj-NQMa7LZAK7okXtK0IVk5Q64-5Etbr8u8L8qNIotr0phW3sDEAP9xuK2S0sujjMJ6M6Cc0tbQ0QZPXn8rf0l4KdODXgWAsAcO04UAlVxzzq3eG2GNT1YuYFIHsIWoqeq61tieo-gs_waLRHykpcSNaYdjtqvttE7HE12sR5k-oUiALy8dg2grZjOiHl6LxA3ik47C4tm7bVyVs_q0TDxpLzGS4g9ErQg0knpoLFKcK86gWiozEAHaEjB7UxtYe_DLslLS3zXIAXGwrJ0zahy24tGA&h=n09kr4S3lIaYzhWUUG12tClMjZOwLEOl1W1qB5WrleU + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:13 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/fe89f258-6604-4cf3-a40d-5eee4d77a8c5?api-version=2023-11-15&t=638450974337002086&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=YobmzN1puhlvNI3hz7t_FozSE6UjsbjeoePMr6GrBUY2hlU_TZfTZs_RT-rKAak7I_L7j49GTENU-2w-0xwgoFikL4Bb7MMYhcZD8dyUdu2kSXKTE9b3BfNsxfuQuIT0gi9RiQE31uzIZu6d4B0OifpxSR-ZaZCFFS63IyiJqwYIKtdBZhQ0L1lgcKxTCsWw4L9ij5zNzwyjp2_bN6Zr9LisqOdKwaHQPqzyYf91mhdaYh-jV5RibnYPgwaql_Zu88VZ6RN5Y0i6ZHkxk3KIjmtN-wyUdKEmqO4OzmdCZYBSvIex-3FgGS-wOwl01Be1vxw-jfPJ0pPTuxFLiObFLg&h=QReMtiILFpSXdQZIx9_If6I87okc9OGL5uKhSM1eD7Q + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 1435AAC3236445FAB2129F647EF517A4 Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:17:12Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe89f258-6604-4cf3-a40d-5eee4d77a8c5?api-version=2023-11-15&t=638450974337002086&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=KwLpYZx7AyfrJYbdawm-1XThRjrgZ1w0DwfpCRBWR2OytBjEkmhes-iL07Pvj-NQMa7LZAK7okXtK0IVk5Q64-5Etbr8u8L8qNIotr0phW3sDEAP9xuK2S0sujjMJ6M6Cc0tbQ0QZPXn8rf0l4KdODXgWAsAcO04UAlVxzzq3eG2GNT1YuYFIHsIWoqeq61tieo-gs_waLRHykpcSNaYdjtqvttE7HE12sR5k-oUiALy8dg2grZjOiHl6LxA3ik47C4tm7bVyVs_q0TDxpLzGS4g9ErQg0knpoLFKcK86gWiozEAHaEjB7UxtYe_DLslLS3zXIAXGwrJ0zahy24tGA&h=n09kr4S3lIaYzhWUUG12tClMjZOwLEOl1W1qB5WrleU + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 67125C64467D402DA250EC5E070D9F05 Ref B: BL2AA2010202021 Ref C: 2024-03-03T21:17:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe89f258-6604-4cf3-a40d-5eee4d77a8c5?api-version=2023-11-15&t=638450974337002086&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=KwLpYZx7AyfrJYbdawm-1XThRjrgZ1w0DwfpCRBWR2OytBjEkmhes-iL07Pvj-NQMa7LZAK7okXtK0IVk5Q64-5Etbr8u8L8qNIotr0phW3sDEAP9xuK2S0sujjMJ6M6Cc0tbQ0QZPXn8rf0l4KdODXgWAsAcO04UAlVxzzq3eG2GNT1YuYFIHsIWoqeq61tieo-gs_waLRHykpcSNaYdjtqvttE7HE12sR5k-oUiALy8dg2grZjOiHl6LxA3ik47C4tm7bVyVs_q0TDxpLzGS4g9ErQg0knpoLFKcK86gWiozEAHaEjB7UxtYe_DLslLS3zXIAXGwrJ0zahy24tGA&h=n09kr4S3lIaYzhWUUG12tClMjZOwLEOl1W1qB5WrleU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1EEEAD85FA4743DC8405C776CBDF3014 Ref B: BL2AA2010205039 Ref C: 2024-03-03T21:17:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 45BB9E199CEB46D5B745137B8D1A99C1 Ref B: BL2AA2010203037 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3113C6C4AE5D4E78B4EB706ADE9251BA Ref B: BL2AA2010205053 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '477' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BC5A9A6A6B6D4F66883D8B5620598DFD Ref B: BL2AA2010205031 Ref C: 2024-03-03T21:17:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 43069713DBCA43D5B6C3F8E1E6EF11E3 Ref B: BL2AA2010203003 Ref C: 2024-03-03T21:17:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b36de8-0562-4eca-8677-adf6abd711b1?api-version=2023-11-15&t=638450977674835772&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Bw5OD3_iNqbO9Q-CFVarEiHm2Oa3qGeolGOZ4r-tnEGI0gtrNXTZqpO59VLRci9tUvl5crNeQSCWyKQ52oQuMq0vMo5ThI0ptaJCcnF9_8PqdiOwIKOpw50BcNjibrw5JpHSDqduEfyfshEkkccIVDjUYv26Uk8x59nX3fElXf3Db9oa_7ZnmtIFi_a4_VyVjLHUI_NZuQftfuLBg92YabyOWPxHxlqquBUqmvZ9p_Ou66Qs3JxkFJnL9bip32kdfOa6GF2JoIdZJ5cdqLJMbnG-i7-6KaJeDk8QF8XWBzCz12fjOegh74_zP0CVN5T_u7fqtkXQrIqYYYQdI_LSuw&h=6mVu2XSO2OC4XHLqg84zCvCp3-BB9C_v8Xewj7kDOhQ + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:46 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/b9b36de8-0562-4eca-8677-adf6abd711b1?api-version=2023-11-15&t=638450977674992001&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=aV1GKpECsqfMVVUl6uX2h2J_-CvMVLI0UYTiMH_rLhf7x__bWN7yP_8O6pqPJrUkdnvKQ3pfa1ZTL33GE4LHzLVgcralOEVGTOtlgyOq_vIDZPkJaDXEQiDY46sGEH4FK0SFhxKLik6Mgg262GA37pP1bFer3uEXqXNSliyT5vD-aDgIthDtYGUtXOTzn1tnTAr2QZySQy5G4lUu7ohBtgkdZn_pJOR81UTLlHUb-vMT_ayxAMmV5a-bjHMig2VduB6R-hHyvKNml_AQMigAcdwC4xFxMzT9YkoHVpH6IRp_zNnn438SfdxAM8y-qZqdvZlQdPQY8zQjiJ-OXp5RgA&h=PXAybHhCa4IO2pl96_xos9fCblKsYtDQP53s4lZdEKc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 772E7CB7AA454C089A641D051F760E15 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:22:46Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b36de8-0562-4eca-8677-adf6abd711b1?api-version=2023-11-15&t=638450977674835772&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Bw5OD3_iNqbO9Q-CFVarEiHm2Oa3qGeolGOZ4r-tnEGI0gtrNXTZqpO59VLRci9tUvl5crNeQSCWyKQ52oQuMq0vMo5ThI0ptaJCcnF9_8PqdiOwIKOpw50BcNjibrw5JpHSDqduEfyfshEkkccIVDjUYv26Uk8x59nX3fElXf3Db9oa_7ZnmtIFi_a4_VyVjLHUI_NZuQftfuLBg92YabyOWPxHxlqquBUqmvZ9p_Ou66Qs3JxkFJnL9bip32kdfOa6GF2JoIdZJ5cdqLJMbnG-i7-6KaJeDk8QF8XWBzCz12fjOegh74_zP0CVN5T_u7fqtkXQrIqYYYQdI_LSuw&h=6mVu2XSO2OC4XHLqg84zCvCp3-BB9C_v8Xewj7kDOhQ + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F7348E0B27B5435AB789FC1C7570FAD9 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:22:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b9b36de8-0562-4eca-8677-adf6abd711b1?api-version=2023-11-15&t=638450977674835772&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Bw5OD3_iNqbO9Q-CFVarEiHm2Oa3qGeolGOZ4r-tnEGI0gtrNXTZqpO59VLRci9tUvl5crNeQSCWyKQ52oQuMq0vMo5ThI0ptaJCcnF9_8PqdiOwIKOpw50BcNjibrw5JpHSDqduEfyfshEkkccIVDjUYv26Uk8x59nX3fElXf3Db9oa_7ZnmtIFi_a4_VyVjLHUI_NZuQftfuLBg92YabyOWPxHxlqquBUqmvZ9p_Ou66Qs3JxkFJnL9bip32kdfOa6GF2JoIdZJ5cdqLJMbnG-i7-6KaJeDk8QF8XWBzCz12fjOegh74_zP0CVN5T_u7fqtkXQrIqYYYQdI_LSuw&h=6mVu2XSO2OC4XHLqg84zCvCp3-BB9C_v8Xewj7kDOhQ + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8BB0EB1F868B48CF848814E324A27B07 Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:23:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AE4C30957D9647CB90F119FF1EDE72B8 Ref B: BL2AA2030104035 Ref C: 2024-03-03T21:23:18Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:23:20Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cli000003","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","oldestRestorableTime":"2024-03-03T21:20:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:23:22Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:23:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:23:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:23:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:23:20Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:23:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:23:19Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '427058' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:23:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: A8072258A82848A28FFD691526699EB2 Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:23:19Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3", + "restoreTimestampInUtc": "2024-03-03T21:17:46.656722Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:25 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YeWhOcpaV0FxRs-eGHlWP6p5ImZDc2anVK01cESXFWXWmd1kUTZpCBrYksdTppYi9TthyPzQLVfGGfa_IYKMW-WIk-wlvCHhsDp3b3EdbfXjw2iJay1Uv-fVbXxYDvURp-wB_iW6uvFuKbykvcvQn1ErVvQdaLtSQp_bS6W2qgoeniPY631fbctY2a42anjbuSFJpEYffmwKMx42uchBX7UUCBzT08jzKOYhlNbZPqJotktEGShjyF-Y0MXIgWOa2nrg8qxlps8pjRvL874XGq3PM9XS5CqWD5S4NH22a_n3kZF2XQlR-_DBPqe75A2ZxiTnHtftRiRk5GJ8To8myA&h=2tht2jj_16vimOllKKK4QIJSIDFtixpef7SRtG4-QF8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: ABDEB523446643FF80834F091416438B Ref B: BL2AA2030102011 Ref C: 2024-03-03T21:23:24Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2A1A46F652684DE8B1D81B6FA4BDC50A Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:23:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3AD3DE7039C24267B1EAEEED996CB75D Ref B: BL2AA2010202047 Ref C: 2024-03-03T21:23:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E9FA3FEE01BC4398A8AD32D660658F06 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:24:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 37D01990AAF74D188A681AD59F0AC35C Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:24:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:25:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B1EFEF33EDE14340B8531AE91F8C6D2A Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:25:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:25:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E2109D4ECE4F46649601A6DD1F919C9D Ref B: BL2AA2010204045 Ref C: 2024-03-03T21:25:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9CC394132B534323847CC7513FB6F650 Ref B: BL2AA2030102009 Ref C: 2024-03-03T21:26:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CA16DE85F66A4A4C98F84F6B9FE7D143 Ref B: BL2AA2010203021 Ref C: 2024-03-03T21:26:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7D87335D5CE04794BFE5690690E1D69E Ref B: BL2AA2010202023 Ref C: 2024-03-03T21:27:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 462CD74CA08147EBBE45379F5DF9CAD4 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:27:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1FD1A53B2C4849CBA8DD1E0206A45317 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:28:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 519F67022D934482B7B298AAAC6028CF Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:28:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 045D257B053A48AD882911B94F49EB53 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:29:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 883E7575A0444A929766B28C56BA0591 Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:29:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373e7c61-76fc-44d8-a824-efaf80e7c22a?api-version=2024-02-15-preview&t=638450978059153491&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dv6F__i2mDe9rcMBl_ZsJBNvEld428jgJk2TtbJK3w81A8-dK0vmH_gUYfycheC03sSMESCSPQo6TwDigB7vYGl3MJYDvm1-OvohL3bxiO_N4QhourLlzIOlpNfoe3xgGmF-hQPirg7fLS4K_mnMBihQy1ZHzU3VyXTDHTNxcwR8HQbhAmDaJGyUOPBLzjsG8E_a8OvNkTxzYsr0UK-hjnLn9ntURu7uNB3suCDlAmB40YLM1me4wL_rjhsXUceBDalC7OzRyMckewYi7lDf1Ns5MmKEsWSB1kHIonNSgimxFd-Ym8hanNvzoMM8s9OjjWF_SiKIo1D8D1aKECmcKw&h=2_fg9KTtPnK_fvinGwEsxQWfxWQ5tLQgAzfbrlmIPhg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 18750880411246369BF20F49CF712963 Ref B: BL2AA2030104025 Ref C: 2024-03-03T21:30:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 87E504124AF1438FA7B76E53C87C550E Ref B: BL2AA2010201027 Ref C: 2024-03-03T21:30:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '477' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2BA5B77B975A4A9E941D562C822A9385 Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:30:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f215383-2ab4-4ac3-abb8-d48854d0c8b8?api-version=2023-11-15&t=638450982314891610&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QmNS0d7jOZ6IonxtEgSdxOom0_8rhrjj9GE_c8Tk97xDiTs-4kcnSQFfRYuYBEav0Aq1RtUUNZ_A9zGF6IRRD_0wNTody0BjXYEtq8tzTDxxuSDYak0DayyQw6FQWxuADFwA_kNKAR8vaquzEaJfXdaW5NUIwAzsgIMIe2DZgDhu_I28YLzFf2oo3VQREwlka5n3CPcpXEE4SYwU4TFGLWArqph0-fEXTLW0VlGyCBltkTA0MHUuQ8EWvNv_wpUgI6_qP2urvehp9bxb66iC_7DNQMmzDclHy_ULDFakAllFmCX0-J4B6I2aS9JwJrq_LEoWz__73lFyht6RCn72CQ&h=sj0qbbb608EOUWutMspTverUg7BmLeF4bi_2xhhwJyU + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:31 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/8f215383-2ab4-4ac3-abb8-d48854d0c8b8?api-version=2023-11-15&t=638450982314891610&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Dbw-UfoXrkc4s9HDuGaqQkbKfKKlKXDLia4JF0f1eYTb0VUmxUNaCfSnkxRrucMCwQr-0TWIjK8p-9ZWHbYE3UITJaHTaKsqRpMClKjqnUc6q-ZBu1Vlt-T0UlGskQhrdLUxIkJ9vw70WXi0xAl69ExCFHBi8WSAkHsVrjMhSU7tlB9UjtG4WvIbL7SCL9RJAjNIwitiI5OCLIaAjfwo_4czUCLavgjJtL-L1qIOx3pbybId448JDN37g_NGrRGZV98849fyOmAPJKAt6RzYLLZ735tlIu4Ji_AA_Xz8WROhhUzzx8uZyTX41o5unk5XoZEnMId9ZnbkNWb1HdwPeg&h=1uzUnD9gwzcDgz_x3N1df-P7B1fq9s61um5LGRnoo9I + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 07E20850CAE64FE7A4D66C3D58023D93 Ref B: BL2AA2010202053 Ref C: 2024-03-03T21:30:30Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f215383-2ab4-4ac3-abb8-d48854d0c8b8?api-version=2023-11-15&t=638450982314891610&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QmNS0d7jOZ6IonxtEgSdxOom0_8rhrjj9GE_c8Tk97xDiTs-4kcnSQFfRYuYBEav0Aq1RtUUNZ_A9zGF6IRRD_0wNTody0BjXYEtq8tzTDxxuSDYak0DayyQw6FQWxuADFwA_kNKAR8vaquzEaJfXdaW5NUIwAzsgIMIe2DZgDhu_I28YLzFf2oo3VQREwlka5n3CPcpXEE4SYwU4TFGLWArqph0-fEXTLW0VlGyCBltkTA0MHUuQ8EWvNv_wpUgI6_qP2urvehp9bxb66iC_7DNQMmzDclHy_ULDFakAllFmCX0-J4B6I2aS9JwJrq_LEoWz__73lFyht6RCn72CQ&h=sj0qbbb608EOUWutMspTverUg7BmLeF4bi_2xhhwJyU + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 257B20D726594026A2EF3FE5CEA4C02D Ref B: BL2AA2010202021 Ref C: 2024-03-03T21:30:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f215383-2ab4-4ac3-abb8-d48854d0c8b8?api-version=2023-11-15&t=638450982314891610&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QmNS0d7jOZ6IonxtEgSdxOom0_8rhrjj9GE_c8Tk97xDiTs-4kcnSQFfRYuYBEav0Aq1RtUUNZ_A9zGF6IRRD_0wNTody0BjXYEtq8tzTDxxuSDYak0DayyQw6FQWxuADFwA_kNKAR8vaquzEaJfXdaW5NUIwAzsgIMIe2DZgDhu_I28YLzFf2oo3VQREwlka5n3CPcpXEE4SYwU4TFGLWArqph0-fEXTLW0VlGyCBltkTA0MHUuQ8EWvNv_wpUgI6_qP2urvehp9bxb66iC_7DNQMmzDclHy_ULDFakAllFmCX0-J4B6I2aS9JwJrq_LEoWz__73lFyht6RCn72CQ&h=sj0qbbb608EOUWutMspTverUg7BmLeF4bi_2xhhwJyU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 43811C0ED1C44CE9B6D1B5126E905F2F Ref B: BL2AA2010204033 Ref C: 2024-03-03T21:31:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EAAE1932D917447BB09C11D96256A866 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:31:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:31:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:31:02Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:31:02Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:31:04Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:31:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cli000003","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:31:05Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:31:06Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:31:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:31:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:31:03Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:31:03Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:31:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:31:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:31:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:31:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:31:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:31:03Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428019' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:31:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 2BF4BE9C9BA44CD6AF15966A4FB10FC9 Ref B: BL2AA2010205007 Ref C: 2024-03-03T21:31:02Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000004", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3", + "restoreTimestampInUtc": "2024-03-03T21:17:46.656722Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5c8232-df19-42ae-996e-bdc7912bab8b?api-version=2024-02-15-preview&t=638450982691466535&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fugKhETR9d0vs_Eo-q-PtPB-4Ag7x3THMZx-U4p-eDRwPvqQ6uu5vYimWhRLUL9YcddwxgcBnnmzx35pyr3l1kchwIHuKbIHmFSV7TMXUeSeCjVMbwa_xuHAtSMFgXWAWFAaYE7so6j6z_9OedGbCX84YZoPBnfSq6SWI_3a-g-hg9zHvM_mFr7gvrU6LCX41B8gIcu0Zfl0Z_etKmbjwwtFPOCXTEs2BNEHlV1mpbQj8c_-e8lrhiiDKO1c22Bv2C7sD18rGAJYSf6sC56EMWQt8Icx6XNZ8e1bEXE8mkjV3b7E-yMtHCCv-i5PHyctdQYrlw-OvYzeMbXoRkaHYA&h=hiM5Jzj-063_sEo_IwKipepNwjx3OlcgmO8PiYuEeN4 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:08 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/8c5c8232-df19-42ae-996e-bdc7912bab8b?api-version=2024-02-15-preview&t=638450982691622788&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LBc3g-YxQp1ATQO6tRNUYI9PiY0U2X-gscSLfspivkLPgs-FQaCvxIJW_S696aw3zmqt1ZgGmiUziBsJ_tmndJcxhHw5B8G-mSe0o360Sudm1j9NOlutyYqyDv2VQwhdh5P9ge3dEW3ieHAVLpN0dHQd0EslBCIW9wZXl_iPTzwJwA-YmXSKsl5z-Ku071QlmOa9tDga3lBIBvywEiB4aHgcwy_p-MbhGlxcyUa9hEMWP4FpD8HqB3ZQkAuCyqemOHarbOX21xtflBh3laxbWvtMr_DreIhnyUwJzug3ujqkzuwhf3_BPqPFOSr7wa-IkbH9t-3YiXJudeOnwEYsBA&h=EYtP-r4La0ZUl7iwDhW2Ms1JJ2yLkGk0AB4cjUpj5ek + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 522E7D6B342F4C8EA4ED2E3EB2F0792B Ref B: BL2AA2010203047 Ref C: 2024-03-03T21:31:08Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5c8232-df19-42ae-996e-bdc7912bab8b?api-version=2024-02-15-preview&t=638450982691466535&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fugKhETR9d0vs_Eo-q-PtPB-4Ag7x3THMZx-U4p-eDRwPvqQ6uu5vYimWhRLUL9YcddwxgcBnnmzx35pyr3l1kchwIHuKbIHmFSV7TMXUeSeCjVMbwa_xuHAtSMFgXWAWFAaYE7so6j6z_9OedGbCX84YZoPBnfSq6SWI_3a-g-hg9zHvM_mFr7gvrU6LCX41B8gIcu0Zfl0Z_etKmbjwwtFPOCXTEs2BNEHlV1mpbQj8c_-e8lrhiiDKO1c22Bv2C7sD18rGAJYSf6sC56EMWQt8Icx6XNZ8e1bEXE8mkjV3b7E-yMtHCCv-i5PHyctdQYrlw-OvYzeMbXoRkaHYA&h=hiM5Jzj-063_sEo_IwKipepNwjx3OlcgmO8PiYuEeN4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 281F8078587748E99B09445927195506 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:31:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5c8232-df19-42ae-996e-bdc7912bab8b?api-version=2024-02-15-preview&t=638450982691466535&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fugKhETR9d0vs_Eo-q-PtPB-4Ag7x3THMZx-U4p-eDRwPvqQ6uu5vYimWhRLUL9YcddwxgcBnnmzx35pyr3l1kchwIHuKbIHmFSV7TMXUeSeCjVMbwa_xuHAtSMFgXWAWFAaYE7so6j6z_9OedGbCX84YZoPBnfSq6SWI_3a-g-hg9zHvM_mFr7gvrU6LCX41B8gIcu0Zfl0Z_etKmbjwwtFPOCXTEs2BNEHlV1mpbQj8c_-e8lrhiiDKO1c22Bv2C7sD18rGAJYSf6sC56EMWQt8Icx6XNZ8e1bEXE8mkjV3b7E-yMtHCCv-i5PHyctdQYrlw-OvYzeMbXoRkaHYA&h=hiM5Jzj-063_sEo_IwKipepNwjx3OlcgmO8PiYuEeN4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E13BFF1A0DA44D8AB9B219B697EE6A70 Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:31:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5c8232-df19-42ae-996e-bdc7912bab8b?api-version=2024-02-15-preview&t=638450982691466535&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fugKhETR9d0vs_Eo-q-PtPB-4Ag7x3THMZx-U4p-eDRwPvqQ6uu5vYimWhRLUL9YcddwxgcBnnmzx35pyr3l1kchwIHuKbIHmFSV7TMXUeSeCjVMbwa_xuHAtSMFgXWAWFAaYE7so6j6z_9OedGbCX84YZoPBnfSq6SWI_3a-g-hg9zHvM_mFr7gvrU6LCX41B8gIcu0Zfl0Z_etKmbjwwtFPOCXTEs2BNEHlV1mpbQj8c_-e8lrhiiDKO1c22Bv2C7sD18rGAJYSf6sC56EMWQt8Icx6XNZ8e1bEXE8mkjV3b7E-yMtHCCv-i5PHyctdQYrlw-OvYzeMbXoRkaHYA&h=hiM5Jzj-063_sEo_IwKipepNwjx3OlcgmO8PiYuEeN4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D09A3A7F658E470FB613480A724F3FED Ref B: BL2AA2010203053 Ref C: 2024-03-03T21:32:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5c8232-df19-42ae-996e-bdc7912bab8b?api-version=2024-02-15-preview&t=638450982691466535&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fugKhETR9d0vs_Eo-q-PtPB-4Ag7x3THMZx-U4p-eDRwPvqQ6uu5vYimWhRLUL9YcddwxgcBnnmzx35pyr3l1kchwIHuKbIHmFSV7TMXUeSeCjVMbwa_xuHAtSMFgXWAWFAaYE7so6j6z_9OedGbCX84YZoPBnfSq6SWI_3a-g-hg9zHvM_mFr7gvrU6LCX41B8gIcu0Zfl0Z_etKmbjwwtFPOCXTEs2BNEHlV1mpbQj8c_-e8lrhiiDKO1c22Bv2C7sD18rGAJYSf6sC56EMWQt8Icx6XNZ8e1bEXE8mkjV3b7E-yMtHCCv-i5PHyctdQYrlw-OvYzeMbXoRkaHYA&h=hiM5Jzj-063_sEo_IwKipepNwjx3OlcgmO8PiYuEeN4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 424F856D0BB84CDDB53538A6496B23E8 Ref B: BL2AA2010203051 Ref C: 2024-03-03T21:32:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5c8232-df19-42ae-996e-bdc7912bab8b?api-version=2024-02-15-preview&t=638450982691466535&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fugKhETR9d0vs_Eo-q-PtPB-4Ag7x3THMZx-U4p-eDRwPvqQ6uu5vYimWhRLUL9YcddwxgcBnnmzx35pyr3l1kchwIHuKbIHmFSV7TMXUeSeCjVMbwa_xuHAtSMFgXWAWFAaYE7so6j6z_9OedGbCX84YZoPBnfSq6SWI_3a-g-hg9zHvM_mFr7gvrU6LCX41B8gIcu0Zfl0Z_etKmbjwwtFPOCXTEs2BNEHlV1mpbQj8c_-e8lrhiiDKO1c22Bv2C7sD18rGAJYSf6sC56EMWQt8Icx6XNZ8e1bEXE8mkjV3b7E-yMtHCCv-i5PHyctdQYrlw-OvYzeMbXoRkaHYA&h=hiM5Jzj-063_sEo_IwKipepNwjx3OlcgmO8PiYuEeN4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BBB3B8B1A986433BAC5F0704E21EEAE5 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:33:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '360' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 382FFF92E59F464690AE41DABB77923E Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:33:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004"}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '372' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 294ED0946D814778BDAD27F24026C30A Ref B: BL2AA2030103033 Ref C: 2024-03-03T21:33:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 39F203402FFC43C4B0486D7938E0D1F9 Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:33:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:33: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"}]}},{"name":"e84733a9-ee18-456c-b12b-1d37e542608b","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:33: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"}]}},{"name":"2bf685e1-2106-4a9c-a218-7f5e49d008a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:33:13Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cli000003","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:33:15Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:33: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:33: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:33: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:33: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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:33:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:33:12Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:33:12Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428196' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:33:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: FD418F4C9CAD438995E4A0EDAEF09AAE Ref B: BL2AA2030101053 Ref C: 2024-03-03T21:33:12Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3", + "restoreTimestampInUtc": "2024-03-03T21:17:46.656722Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:18 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QqALnY5dt2K7oDtOQaJbxeRBcZCPm76N_JfQspvufmC39Th92VvIzPJPfWdTg-t2ITxHZu2mvE_VQDn8Z5vRtGIvyRjbT7eyxxTTXZL39HYFR37Xvp2cnMdYShWOXKOGTbFqhIk3wx2Nw-PfZO5y6SFBi5CJER7w-Ysniodo7AZLxmQBApD2mTT7WyO3rXjV2LrVfVdYjT7NuEACXLxMWzEz_fHNZjOW8YnFLT6VRJ9gLMQr3522L7ZQUrP1TBM93P9OzPoGdLOhOlnSwIrxib7gntotzwJ5jPMJGg7gTRDgXWQX6iAtq60ADb3ifHBhGs_CKcL50ncY2B1e8t5nBA&h=-qemOrtYIiu_PfVXf24ncVpvBiRcJDERIYir7IUrjQg + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: A6C1AEB79E594825942D19485F0EAD2E Ref B: BL2AA2030103027 Ref C: 2024-03-03T21:33:17Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:19 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 623E49C02D0B49DA90D7C689B9AB5683 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:33:19Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B4C7D1A0FC3F434880B965208D4DD42C Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:33:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DC573409F730490DA3E4617A85BEEF94 Ref B: BL2AA2030101051 Ref C: 2024-03-03T21:34:19Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:49 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F8DDD6BA5D6740E58BD37F440DC1D2A5 Ref B: BL2AA2010202047 Ref C: 2024-03-03T21:34:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:19 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5975D3E1FDD248ADBD7500211B9D067C Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:35:19Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:49 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7E8909B592B946ECA7F58977A02A1BBE Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:35:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 254998B8FB3541748EAE3D2A9B33A389 Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:36:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 41C1314A9E6C45619583473679149277 Ref B: BL2AA2010203007 Ref C: 2024-03-03T21:36:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 18E73B58D084441FB83EDC88FAB1EE36 Ref B: BL2AA2010203023 Ref C: 2024-03-03T21:37:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2A1800C790034AB58C754A3ECCA50443 Ref B: BL2AA2010203047 Ref C: 2024-03-03T21:37:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2CCC02B8389D493396BAF072173354C4 Ref B: BL2AA2010203051 Ref C: 2024-03-03T21:38:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 13EF3D9FB7A04253AC1573CF991B551C Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:38:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 99B991FC13514F7B8EDBD0CD3FBD66BE Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:39:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:52 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 31E62DCCFED94CC58126490BDA2B448E Ref B: BL2AA2030103049 Ref C: 2024-03-03T21:39:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78bc837f-7037-4c71-8077-9e694b17f8f0?api-version=2024-02-15-preview&t=638450983990626810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TBTCLyKA7JRzv9Zg3dZtpBqD0yd_VWK61kjYhXA6D9aH3sJlelZY_iesq8jNCO9jyjx4OjI26wC20T3Q7mSNY4npwTSmhZ2fnZY_BhaLPIo-pq8Rwv3BtKoTIkkTijnY8Q_HRK1PbVbWFs9jt-LQvk8WE608duea7nJaM1M1_dTUYnHNBnLb_2i1EtvzCzAi0PMXqeoduXu3cVR7kbmEO87idkVSTQF8zYWoDVmyJBk6Dq2x0WSEdZdJUr8RX4gIttUw1dJHEuObEUUmrQtxcJOuklXOkzJ1CWXq6DGecbjCkQqvPvjCMsYRGnb8t17VwaZft4c2MOkm7hKTvXfr5g&h=RK8TrQFNevZhcyKy5TYv9J9IR39G-Uoq_GIpoHVhUag + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5D4FDE8E474847C398DDEA01ED0AB3F9 Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:40:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 645D5C65FE2A46CD952D05762D7D01C4 Ref B: BL2AA2010202033 Ref C: 2024-03-03T21:40:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '477' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9D0871126E83431A8BD605122DB84BB9 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:40:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8309abef-5023-4fd5-a34d-5fe306be49e5?api-version=2023-11-15&t=638450988246558628&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=H2Pb-r282cYaWFKRR1KMsTMd-CoZyPLh9NrNaUosjpaUwEoSQTrmM5NjcufN0gkaSOx3Mr-vEstooxQTMZpwhyehIAeETY15RrdMlJSxKPrdFjVgFKOBpyUhmfcnE3cChwdhF9o8kp-n4Gw21UI1TlcAleZk-H-EMt3gu38lkuuKcuzTh8UNMzewWJiXN7EcYd7i0CbKChaOJ8BaFA3MuRk4I6m83CgliMkAGRnsf-xCSyHIUpM0tpqY_u15paWm9_k2auhLspwdd4YkA_PzqWDIByzXkeUk9oDVzy1kIvVlVS865j04l-FaUeuXt_WbVWzleAzzV2j0_nOVbxYEXA&h=_yfvi4I7Qv-rCDpWtp_lwBwjdAAlW3nMOrrKzXBDK8A + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:24 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/8309abef-5023-4fd5-a34d-5fe306be49e5?api-version=2023-11-15&t=638450988246714900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=slH6cQvXGA7hCneCIdsW3gBU73a7mhrPVZALGbXAIcjIvPgWz8V8U9277AqW4zdhb7XOy9fCmeOHbpAub6lT3NCFkYt3ZocB42g1UJW8OyuIK55z30unWKtSZiBKjqRSVZT9PhPcquKF_C_5hycLNfUxvlxhpE1XY--39Q5AQ4ztR4w8Bh3RfExjxPUZy5CdWmTTkoarUgPbDVKosZvhW95Q0Pqzqryf3TDr6z7O084v4PAfuWVYDszK3-chbYOFOu_ifqdibMgsP8ApRvtzSRLVwW1F74mY9OMTVQrXrnjsBp5OyJzbjISopFO1vg3YT_tgYHttYOeVM0mH_SJwWg&h=6PumsrKVd6aaz6IiKoLGYcNU4CFCKqaufGFbRqOg-o8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 97FE056A2D9F4EDA93272BF31DD9224C Ref B: BL2AA2010202047 Ref C: 2024-03-03T21:40:24Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8309abef-5023-4fd5-a34d-5fe306be49e5?api-version=2023-11-15&t=638450988246558628&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=H2Pb-r282cYaWFKRR1KMsTMd-CoZyPLh9NrNaUosjpaUwEoSQTrmM5NjcufN0gkaSOx3Mr-vEstooxQTMZpwhyehIAeETY15RrdMlJSxKPrdFjVgFKOBpyUhmfcnE3cChwdhF9o8kp-n4Gw21UI1TlcAleZk-H-EMt3gu38lkuuKcuzTh8UNMzewWJiXN7EcYd7i0CbKChaOJ8BaFA3MuRk4I6m83CgliMkAGRnsf-xCSyHIUpM0tpqY_u15paWm9_k2auhLspwdd4YkA_PzqWDIByzXkeUk9oDVzy1kIvVlVS865j04l-FaUeuXt_WbVWzleAzzV2j0_nOVbxYEXA&h=_yfvi4I7Qv-rCDpWtp_lwBwjdAAlW3nMOrrKzXBDK8A + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 21D8A1371DC34D9AB0D4F9629D755391 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:40:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8309abef-5023-4fd5-a34d-5fe306be49e5?api-version=2023-11-15&t=638450988246558628&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=H2Pb-r282cYaWFKRR1KMsTMd-CoZyPLh9NrNaUosjpaUwEoSQTrmM5NjcufN0gkaSOx3Mr-vEstooxQTMZpwhyehIAeETY15RrdMlJSxKPrdFjVgFKOBpyUhmfcnE3cChwdhF9o8kp-n4Gw21UI1TlcAleZk-H-EMt3gu38lkuuKcuzTh8UNMzewWJiXN7EcYd7i0CbKChaOJ8BaFA3MuRk4I6m83CgliMkAGRnsf-xCSyHIUpM0tpqY_u15paWm9_k2auhLspwdd4YkA_PzqWDIByzXkeUk9oDVzy1kIvVlVS865j04l-FaUeuXt_WbVWzleAzzV2j0_nOVbxYEXA&h=_yfvi4I7Qv-rCDpWtp_lwBwjdAAlW3nMOrrKzXBDK8A + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1DFFA5D2383849BDBFDA13CFB900FDAA Ref B: BL2AA2010203003 Ref C: 2024-03-03T21:40:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BBD53F29C89C4727B340A1DD9ED575B3 Ref B: BL2AA2010201009 Ref C: 2024-03-03T21:40:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_normal_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 06B670DFC8E54441998E43F22CA8B139 Ref B: BL2AA2030102037 Ref C: 2024-03-03T21:40:55Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_database_prov_collection_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_database_prov_collection_restore.yaml new file mode 100644 index 00000000000..b5b6f98dc2c --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_mongodb_shared_database_prov_collection_restore.yaml @@ -0,0 +1,8340 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001","name":"cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_mongodb_shared_database_prov_collection_restore","date":"2024-03-03T21:40:58Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:40:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B8D3149A0D014CE89B7B94BCF44122F2 Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:41:00Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": + "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": + "Standard", "apiProperties": {"serverVersion": "3.6"}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '355' + Content-Type: + - application/json + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:04.1744427Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:04.1744427Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:04.1744427Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:04.1744427Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:04.1744427Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c776e362-863e-4955-9ac2-aabf0f9d5e85?api-version=2024-02-15-preview&t=638450988662478031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FUJmKJbY-4kcnRyabOJottLogOJxkjJ4mnRQOZKR9FrO43NtQBGL7atab9yZXeSRyiAz2SPo9CunNm65dojZo-dTCisZejUmtzYEGfJgLqC6xgrLxqb3_SN5ULM9uJk94hgG6iGiSH-af5pZt7Buac7OJ3V29ommfdysBZE1jWbn6F6rmSnAO3_HFIRbfk2yzwkrPYICOqSKbCEMAbU81G6C0QHQki1b18D4K1v6jJ_aTygX8ayBfjG0d_WJFmfOdlRL8zyFpqnebxeYf60mhDfxwHy_tRywiKku4IWJCA0-zu3mrJFyq5_ldpYYEle5Jz85G148id-QreWbY4_Cqg&h=cRl0y-_J1GIPECxfsyt8stCXI5xdvmeWO5Vf1On_5o4 + cache-control: + - no-store, no-cache + content-length: + - '2726' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:05 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/c776e362-863e-4955-9ac2-aabf0f9d5e85?api-version=2024-02-15-preview&t=638450988662634287&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MT3rNObk1eR79FDmtWVtesLIuZPXdw6ZL80s4JhVVb9xZmPdF31CLZUqYVOFgMa4-qfwebZjrHQhbGZiaNsPqlnaeoPJUnhZB-sntfhPkw9mV2ThnC3eJxATs_3J7Y_f9Y-X6uIp6I1F3F4xWBkVSXTw9MJ8_R-pbEy_pUQWK_sC9-73yIw0Hh-OF-duXgA_taVRhySEh6NqAFJAvtyZg0gTyHuV8XMSzvqOjfj-o-mFn4SqzSN5Ve0Dm2YHo1WJVAkzBGN16wdgxEa75g6Gj19-UGopvn248HOwOkfdMJ0R3ufZ4hMv92A_WaVH7JA4xlVv5N1s4THKmIGd9THlCQ&h=xUk8cdX0E5DlVz2P6R2D-4uUstPCkd76kNBgC_PWZWU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: A3F8D77C898A4D74AC635D06ED2DACBC Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:41:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c776e362-863e-4955-9ac2-aabf0f9d5e85?api-version=2024-02-15-preview&t=638450988662478031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FUJmKJbY-4kcnRyabOJottLogOJxkjJ4mnRQOZKR9FrO43NtQBGL7atab9yZXeSRyiAz2SPo9CunNm65dojZo-dTCisZejUmtzYEGfJgLqC6xgrLxqb3_SN5ULM9uJk94hgG6iGiSH-af5pZt7Buac7OJ3V29ommfdysBZE1jWbn6F6rmSnAO3_HFIRbfk2yzwkrPYICOqSKbCEMAbU81G6C0QHQki1b18D4K1v6jJ_aTygX8ayBfjG0d_WJFmfOdlRL8zyFpqnebxeYf60mhDfxwHy_tRywiKku4IWJCA0-zu3mrJFyq5_ldpYYEle5Jz85G148id-QreWbY4_Cqg&h=cRl0y-_J1GIPECxfsyt8stCXI5xdvmeWO5Vf1On_5o4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 485F0F7410554E23A9E4901F5915B274 Ref B: MNZ221060609037 Ref C: 2024-03-03T21:41:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c776e362-863e-4955-9ac2-aabf0f9d5e85?api-version=2024-02-15-preview&t=638450988662478031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FUJmKJbY-4kcnRyabOJottLogOJxkjJ4mnRQOZKR9FrO43NtQBGL7atab9yZXeSRyiAz2SPo9CunNm65dojZo-dTCisZejUmtzYEGfJgLqC6xgrLxqb3_SN5ULM9uJk94hgG6iGiSH-af5pZt7Buac7OJ3V29ommfdysBZE1jWbn6F6rmSnAO3_HFIRbfk2yzwkrPYICOqSKbCEMAbU81G6C0QHQki1b18D4K1v6jJ_aTygX8ayBfjG0d_WJFmfOdlRL8zyFpqnebxeYf60mhDfxwHy_tRywiKku4IWJCA0-zu3mrJFyq5_ldpYYEle5Jz85G148id-QreWbY4_Cqg&h=cRl0y-_J1GIPECxfsyt8stCXI5xdvmeWO5Vf1On_5o4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 13543901DB654776B942FFC445086D2B Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:41:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c776e362-863e-4955-9ac2-aabf0f9d5e85?api-version=2024-02-15-preview&t=638450988662478031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FUJmKJbY-4kcnRyabOJottLogOJxkjJ4mnRQOZKR9FrO43NtQBGL7atab9yZXeSRyiAz2SPo9CunNm65dojZo-dTCisZejUmtzYEGfJgLqC6xgrLxqb3_SN5ULM9uJk94hgG6iGiSH-af5pZt7Buac7OJ3V29ommfdysBZE1jWbn6F6rmSnAO3_HFIRbfk2yzwkrPYICOqSKbCEMAbU81G6C0QHQki1b18D4K1v6jJ_aTygX8ayBfjG0d_WJFmfOdlRL8zyFpqnebxeYf60mhDfxwHy_tRywiKku4IWJCA0-zu3mrJFyq5_ldpYYEle5Jz85G148id-QreWbY4_Cqg&h=cRl0y-_J1GIPECxfsyt8stCXI5xdvmeWO5Vf1On_5o4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C356EA290E004CB59FDD20192E0F19E5 Ref B: MNZ221060610023 Ref C: 2024-03-03T21:42:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c776e362-863e-4955-9ac2-aabf0f9d5e85?api-version=2024-02-15-preview&t=638450988662478031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FUJmKJbY-4kcnRyabOJottLogOJxkjJ4mnRQOZKR9FrO43NtQBGL7atab9yZXeSRyiAz2SPo9CunNm65dojZo-dTCisZejUmtzYEGfJgLqC6xgrLxqb3_SN5ULM9uJk94hgG6iGiSH-af5pZt7Buac7OJ3V29ommfdysBZE1jWbn6F6rmSnAO3_HFIRbfk2yzwkrPYICOqSKbCEMAbU81G6C0QHQki1b18D4K1v6jJ_aTygX8ayBfjG0d_WJFmfOdlRL8zyFpqnebxeYf60mhDfxwHy_tRywiKku4IWJCA0-zu3mrJFyq5_ldpYYEle5Jz85G148id-QreWbY4_Cqg&h=cRl0y-_J1GIPECxfsyt8stCXI5xdvmeWO5Vf1On_5o4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 857E9B29569D4ECA839C36E22BF8C040 Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:42:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c776e362-863e-4955-9ac2-aabf0f9d5e85?api-version=2024-02-15-preview&t=638450988662478031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FUJmKJbY-4kcnRyabOJottLogOJxkjJ4mnRQOZKR9FrO43NtQBGL7atab9yZXeSRyiAz2SPo9CunNm65dojZo-dTCisZejUmtzYEGfJgLqC6xgrLxqb3_SN5ULM9uJk94hgG6iGiSH-af5pZt7Buac7OJ3V29ommfdysBZE1jWbn6F6rmSnAO3_HFIRbfk2yzwkrPYICOqSKbCEMAbU81G6C0QHQki1b18D4K1v6jJ_aTygX8ayBfjG0d_WJFmfOdlRL8zyFpqnebxeYf60mhDfxwHy_tRywiKku4IWJCA0-zu3mrJFyq5_ldpYYEle5Jz85G148id-QreWbY4_Cqg&h=cRl0y-_J1GIPECxfsyt8stCXI5xdvmeWO5Vf1On_5o4 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9F2C9544CD77420CBE3B3EB7DBD09CB1 Ref B: BL2AA2030102031 Ref C: 2024-03-03T21:43:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c776e362-863e-4955-9ac2-aabf0f9d5e85?api-version=2024-02-15-preview&t=638450988662478031&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FUJmKJbY-4kcnRyabOJottLogOJxkjJ4mnRQOZKR9FrO43NtQBGL7atab9yZXeSRyiAz2SPo9CunNm65dojZo-dTCisZejUmtzYEGfJgLqC6xgrLxqb3_SN5ULM9uJk94hgG6iGiSH-af5pZt7Buac7OJ3V29ommfdysBZE1jWbn6F6rmSnAO3_HFIRbfk2yzwkrPYICOqSKbCEMAbU81G6C0QHQki1b18D4K1v6jJ_aTygX8ayBfjG0d_WJFmfOdlRL8zyFpqnebxeYf60mhDfxwHy_tRywiKku4IWJCA0-zu3mrJFyq5_ldpYYEle5Jz85G148id-QreWbY4_Cqg&h=cRl0y-_J1GIPECxfsyt8stCXI5xdvmeWO5Vf1On_5o4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 796B3E844C1B4343B04CD6F0FDDDFC65 Ref B: MNZ221060608017 Ref C: 2024-03-03T21:43:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:43:03.4066688Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","mongoEndpoint":"https://cli000004.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:43:03.4066688Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:43:03.4066688Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:43:03.4066688Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:43:03.4066688Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3174' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FBF6D096006F41DA8BEF9F70758208BF Ref B: MNZ221060609021 Ref C: 2024-03-03T21:43:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --server-version --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:43:03.4066688Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","mongoEndpoint":"https://cli000004.mongo.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"FullFidelity"},"instanceId":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.6"},"configurationOverrides":{"EnableBsonSchema":"True","EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableMongo"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:43:03.4066688Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:43:03.4066688Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:43:03.4066688Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:43:03.4066688Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3174' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 60F8454F81AA4C31B7E1F8B24EED5DA3 Ref B: MNZ221060610047 Ref C: 2024-03-03T21:43:38Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000005", "createMode": "Default"}, + "options": {"throughput": 1000}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + Content-Length: + - '107' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3a9e981b-4423-4956-854a-a3ff47fbaae3?api-version=2023-11-15&t=638450990193432109&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QQ7XuY-aJuMs6EJ6R9ahMUyM5MpxfDlaz1eKhRZzfJ0HgKrvWdh_lyzI8nIItx_L35GYZy13-jJzFzM3q4WG_-qG9W4PCvfPsKIrMxJ5u8Jt7ICTXDuzZBSUJk28akWtdjPMO9dQGz4QZ5njE275wT7KWSsrc6_K42h5ZDpzfx20nIM00LBNYkyvAvVPfomq198t-PcQKSkrXVdBaLTjcFxHiGBHb9q52BdnT3UpjyoYq-ntqrHcU5dYxeNM67qDc2mwkFtFWxjG8mSXaABpfE_BW1iDNJCqVjgxY5LXCitXoEuYgVscIka26znk8KOsSZEthfuyk9LsjPcLaa4juw&h=cjuIK4ED8keaudhuUCSGuW8CQ0ntoqkqIu4hTD_mS7Q + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:38 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/operationResults/3a9e981b-4423-4956-854a-a3ff47fbaae3?api-version=2023-11-15&t=638450990193588365&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r9DlkotsvQfMFQqalaM5-jrlF7ypqAC1ZdqbHUal-UrgyQiGoD3f02ybO9SPvF-g6B0c4bVkIezxnw8C_ZxcOZfMUF98pwW6k_dLuRVjLOhgXY7ajF6pOTb7Wg9JtaEzVa_wCk5YwyE0b_S1GYoxYy5PRaLkghOloWtcrnqjhCTVO594ERn55sZipiHtqOI5LoAs5M2gh-5FzyrbQ7NITDqRQkBGyBJ5H-HNYUPwKp_WMFtZQJEEWcVoZztltQHjy3hFkERD0AOYjNNcqTXBZD-L3hvhAk9BmsAdpr9xJ6k5_knLbGxwY1lF5XhNb2x8H_tO5jMpGvzj5FgJyDVCQQ&h=ZX2_Tn-zQpJSWClPhM3EPAIehQ59vUVGPIHkjiIDzOk + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 5604C2D171C245418C651FFA2CD45A2D Ref B: MNZ221060608039 Ref C: 2024-03-03T21:43:38Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3a9e981b-4423-4956-854a-a3ff47fbaae3?api-version=2023-11-15&t=638450990193432109&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QQ7XuY-aJuMs6EJ6R9ahMUyM5MpxfDlaz1eKhRZzfJ0HgKrvWdh_lyzI8nIItx_L35GYZy13-jJzFzM3q4WG_-qG9W4PCvfPsKIrMxJ5u8Jt7ICTXDuzZBSUJk28akWtdjPMO9dQGz4QZ5njE275wT7KWSsrc6_K42h5ZDpzfx20nIM00LBNYkyvAvVPfomq198t-PcQKSkrXVdBaLTjcFxHiGBHb9q52BdnT3UpjyoYq-ntqrHcU5dYxeNM67qDc2mwkFtFWxjG8mSXaABpfE_BW1iDNJCqVjgxY5LXCitXoEuYgVscIka26znk8KOsSZEthfuyk9LsjPcLaa4juw&h=cjuIK4ED8keaudhuUCSGuW8CQ0ntoqkqIu4hTD_mS7Q + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8915B515477F4EC2BE3CD0745EBADE22 Ref B: MNZ221060608047 Ref C: 2024-03-03T21:43:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3a9e981b-4423-4956-854a-a3ff47fbaae3?api-version=2023-11-15&t=638450990193432109&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QQ7XuY-aJuMs6EJ6R9ahMUyM5MpxfDlaz1eKhRZzfJ0HgKrvWdh_lyzI8nIItx_L35GYZy13-jJzFzM3q4WG_-qG9W4PCvfPsKIrMxJ5u8Jt7ICTXDuzZBSUJk28akWtdjPMO9dQGz4QZ5njE275wT7KWSsrc6_K42h5ZDpzfx20nIM00LBNYkyvAvVPfomq198t-PcQKSkrXVdBaLTjcFxHiGBHb9q52BdnT3UpjyoYq-ntqrHcU5dYxeNM67qDc2mwkFtFWxjG8mSXaABpfE_BW1iDNJCqVjgxY5LXCitXoEuYgVscIka26znk8KOsSZEthfuyk9LsjPcLaa4juw&h=cjuIK4ED8keaudhuUCSGuW8CQ0ntoqkqIu4hTD_mS7Q + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C36475C7F049448ABBC27461E1B79A15 Ref B: MNZ221060610011 Ref C: 2024-03-03T21:44:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000005","properties":{"resource":{"id":"cli000005"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '360' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3DBDC57248B141EE9C9C6E00742C91EA Ref B: MNZ221060609027 Ref C: 2024-03-03T21:44:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"The collection ''cli000005''.''cli000002'' + doesn''t exist.\r\nActivityId: 2b895181-d9a7-11ee-83af-000d3a1e0e23, Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '178' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B6F9B1F59E044010A1A2815FDDBD428F Ref B: MNZ221060610021 Ref C: 2024-03-03T21:44:10Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": + "Hash"}, "createMode": "Default"}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + Content-Length: + - '126' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --shard + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f4e1dcd-550b-44eb-a467-88bd0ce5044d?api-version=2023-11-15&t=638450990523964999&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LJz_I-G2hR6ubY32pWkss2xIQBla1tOXCGocfq3YnC2okpn0gFI-OaXDCAaU3rMUhjTQ01OEPL5nEG0zMZkUvCVn0gzntH__x4RBaJwzVqH40rVbMDqsy120p2_9bH4lzejoQj6UvGkPDcjlo-_hJ93uYISYD5nO0V4Q1fqEcvyhxgyXOQlZEwEY0TaP-1fMMPWIt08-4cnlbXgqw827_dJIoNpho8wZw8Ue9QsPsBXTwDl5TBwbhsh8qLWE35SwoXzKVuxgESKSehjPl0A8Phy3_MYXY0ZhEh1gWYT8JgEqqplG43DO0d2ayltRoo9Fd2JGLrGgOHei6nlw-Yg9-A&h=rQDp9B4I--ZIENjfNRN3wrOR31Qzre149Hb_IyBodrQ + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:11 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002/operationResults/3f4e1dcd-550b-44eb-a467-88bd0ce5044d?api-version=2023-11-15&t=638450990524121249&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YROL8ip0f6cInWeJjdEXgHun5Zr1D9dXC8Khq9CJxxBjGFxsf2Y7i0h4uaHplUIjFsBSZUlUuNDG4tX_USq6F2svCFSVIVP5cxOIIb7A2EB54jPP57WcAYxTefFhg0isuGS2CnzTR19P-nDoT3KOkJDU5wyW5O-eQEM8QfvM3yDxaNggWypXjAhrhPM0MT9fgv60OCYIpS7OOblPSq7hK7hFws0GG4Dx2kIabsMavAm8cWhrX_W3uHhJpNZF6FQZnICeLRXmLIH9KiMcavPfvvsrR-kCZSMUID4WXyUgt4i3PYOw-egol7EehvwyQITJ79CCrknJBuhCkBog1Hw33g&h=HWBL73jiqv9LrWmCEspmoDhyLPY0MwjHtzLRn9a5Ue0 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: FC98C4725C794AB798AA495C0883D08E Ref B: MNZ221060610023 Ref C: 2024-03-03T21:44:11Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f4e1dcd-550b-44eb-a467-88bd0ce5044d?api-version=2023-11-15&t=638450990523964999&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LJz_I-G2hR6ubY32pWkss2xIQBla1tOXCGocfq3YnC2okpn0gFI-OaXDCAaU3rMUhjTQ01OEPL5nEG0zMZkUvCVn0gzntH__x4RBaJwzVqH40rVbMDqsy120p2_9bH4lzejoQj6UvGkPDcjlo-_hJ93uYISYD5nO0V4Q1fqEcvyhxgyXOQlZEwEY0TaP-1fMMPWIt08-4cnlbXgqw827_dJIoNpho8wZw8Ue9QsPsBXTwDl5TBwbhsh8qLWE35SwoXzKVuxgESKSehjPl0A8Phy3_MYXY0ZhEh1gWYT8JgEqqplG43DO0d2ayltRoo9Fd2JGLrGgOHei6nlw-Yg9-A&h=rQDp9B4I--ZIENjfNRN3wrOR31Qzre149Hb_IyBodrQ + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BDC35C3C66BC40AD8A245DE77EC258D8 Ref B: MNZ221060610027 Ref C: 2024-03-03T21:44:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f4e1dcd-550b-44eb-a467-88bd0ce5044d?api-version=2023-11-15&t=638450990523964999&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LJz_I-G2hR6ubY32pWkss2xIQBla1tOXCGocfq3YnC2okpn0gFI-OaXDCAaU3rMUhjTQ01OEPL5nEG0zMZkUvCVn0gzntH__x4RBaJwzVqH40rVbMDqsy120p2_9bH4lzejoQj6UvGkPDcjlo-_hJ93uYISYD5nO0V4Q1fqEcvyhxgyXOQlZEwEY0TaP-1fMMPWIt08-4cnlbXgqw827_dJIoNpho8wZw8Ue9QsPsBXTwDl5TBwbhsh8qLWE35SwoXzKVuxgESKSehjPl0A8Phy3_MYXY0ZhEh1gWYT8JgEqqplG43DO0d2ayltRoo9Fd2JGLrGgOHei6nlw-Yg9-A&h=rQDp9B4I--ZIENjfNRN3wrOR31Qzre149Hb_IyBodrQ + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0659DE5FB1734114A943CD224E0312C7 Ref B: MNZ221060610011 Ref C: 2024-03-03T21:44:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A80E12C1D02344A79DBE90E601166421 Ref B: MNZ221060609025 Ref C: 2024-03-03T21:44:42Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003", "shardKey": {"theShardKey": + "Hash"}, "createMode": "Default"}, "options": {"throughput": 1000}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + Content-Length: + - '144' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --shard --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a65a4ec1-7490-4344-b0a5-329f539a35d4?api-version=2023-11-15&t=638450990845796175&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YJeef6ZTJymLl4YzqPzVtB57RjVCcFdvwyzghIztQYpciDUt543I4TmCz9LlazL1HK__oWcegnNfdN2ComHT9ZtS8y-TTGg-lXlgeROxa2v8t1liUPBcFf_E84v1Ku8-N5aTEOMBIo9RYVyinXy5ocGURSKpnd4tt0dQ8z9U4jvdy7nSbaxhamHpz6SP71GaRQmVagrUyJD6e_KtajdvMlhZmHpVBOSsJmUAX7lZdMBDf9bMtBatMZj32YGU7jVBnVuiDVj8SVlPfBQNfXa4q15gcQd6PvIF_iguTfVB0EZSEo5jKXR0aoV1VFv4GNkjvIpLKeZ81LP0lHAPBux0GA&h=iHmMzINEhnCylzjnEO1hr_kcCjHm_CziE14lydhxUzA + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:43 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003/operationResults/a65a4ec1-7490-4344-b0a5-329f539a35d4?api-version=2023-11-15&t=638450990845796175&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=d2KEkkJzCmNKR2YEc5zqV1lawjTGbqV4k1CYuW2B5ZDh-AScocmxlRNCfCPpPfr1CoSSN_qzKDL7RniLSKiTcplTIo06AHwP0Rh3KKQ2KCj9ZzPOFPLN6do0QalKWrGzAifNCYyzLwXCB7yKuVGWCrYQ2ib-oeTmieQDOgtDTbnq1FClEz8Sh-eSY1_RowhzDHdjdGqrR--Xl_fY8b8sNisI_-O8GfaBcD06vgeTSiWcKKHKVGMqU8e86zSKJH8fHcmba1A5pW0LTJiRJqj1y2nqeOPHzY5CGmJk5F4xEFy3oZoe6lRtBq00cZWb7PY2THfDe_xBPaVympKUeSty_A&h=kZjzTgWARvCzp782JMeiMNdNNMCnuTaE3W54Gsw5Iu4 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: EB427401EA6949B2A1C3DA03BD518252 Ref B: MNZ221060610007 Ref C: 2024-03-03T21:44:44Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a65a4ec1-7490-4344-b0a5-329f539a35d4?api-version=2023-11-15&t=638450990845796175&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YJeef6ZTJymLl4YzqPzVtB57RjVCcFdvwyzghIztQYpciDUt543I4TmCz9LlazL1HK__oWcegnNfdN2ComHT9ZtS8y-TTGg-lXlgeROxa2v8t1liUPBcFf_E84v1Ku8-N5aTEOMBIo9RYVyinXy5ocGURSKpnd4tt0dQ8z9U4jvdy7nSbaxhamHpz6SP71GaRQmVagrUyJD6e_KtajdvMlhZmHpVBOSsJmUAX7lZdMBDf9bMtBatMZj32YGU7jVBnVuiDVj8SVlPfBQNfXa4q15gcQd6PvIF_iguTfVB0EZSEo5jKXR0aoV1VFv4GNkjvIpLKeZ81LP0lHAPBux0GA&h=iHmMzINEhnCylzjnEO1hr_kcCjHm_CziE14lydhxUzA + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 81F973B46AB7463B9E11DEA23A1A0E15 Ref B: MNZ221060610021 Ref C: 2024-03-03T21:44:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a65a4ec1-7490-4344-b0a5-329f539a35d4?api-version=2023-11-15&t=638450990845796175&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YJeef6ZTJymLl4YzqPzVtB57RjVCcFdvwyzghIztQYpciDUt543I4TmCz9LlazL1HK__oWcegnNfdN2ComHT9ZtS8y-TTGg-lXlgeROxa2v8t1liUPBcFf_E84v1Ku8-N5aTEOMBIo9RYVyinXy5ocGURSKpnd4tt0dQ8z9U4jvdy7nSbaxhamHpz6SP71GaRQmVagrUyJD6e_KtajdvMlhZmHpVBOSsJmUAX7lZdMBDf9bMtBatMZj32YGU7jVBnVuiDVj8SVlPfBQNfXa4q15gcQd6PvIF_iguTfVB0EZSEo5jKXR0aoV1VFv4GNkjvIpLKeZ81LP0lHAPBux0GA&h=iHmMzINEhnCylzjnEO1hr_kcCjHm_CziE14lydhxUzA + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F3F785C1A4C240BC9BCE7977323D183D Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:45:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --shard --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000003","properties":{"resource":{"id":"cli000003","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 964CBE51AB8F4E3E910681A3E6D68CD4 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:45:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D87C3B2AB8794B238B4EC86F433F1C87 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:45:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000003","properties":{"resource":{"id":"cli000003","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '943' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7627B6FE9E284389A06ED6C79DBC5C52 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:45:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F31E83239D334388A71250CC5EBF22C7 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:45:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/04acc76f-ed92-4e2d-8b9e-e4bdd6dfae9b?api-version=2023-11-15&t=638450994188008137&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=nWeWVepVfJk5cxkseXYyzu2E95thZ43fleY1vi40V3ZsVIujqtccZjj2YSUg71IgohLZ_wgAw93RmbpG3-fjDZ83m1oJsGzp8YJX0-UrHvFJQFNFW-pThq83vDLXGKC4EOe0R6og1pIhkRuPAm4_vzjLaSNe2uuXwAn_5Ls0bMYTTG-2_fkXd4d6WgF7pFlbk2Ejyhmb5TOfVV8cz3aRk2zglXehrOFFieo9JJnvn_mm0lpULMeHzPSDOsRmI28iHy0vYCky6DqEWxcyMgeeN6yL6x8BeA2DDZsnXkl9EsWmENd_NF-RZUjsXTeZ-WNh6Zg8cQI89q0vd6wITfLsCg&h=Kgd_RNvGe13Qec1C-rE2hMC_Svk-Ybq_jJpMEyhjFxw + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:18 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002/operationResults/04acc76f-ed92-4e2d-8b9e-e4bdd6dfae9b?api-version=2023-11-15&t=638450994188008137&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v4YG4Pp1fAitNylAkEhswgBwDfT7fhsZGWkOTyXi_N_WgqTHr_pcBqnbah3XSICk5GSsgyTmCQziyiRMDR4Frk0qbF8VKmNBuSIWnXt61UNZWJff_duUghyioLWz38D4Faz3QG5LLs84hRI0QiJthsVpG5P8l1SMs2XH4G2jXvnFO4lqE5yRKqbcYA7zBkGVp7wjCe0ssiNf0tlrQtQCh9MplK9JZ4Rm_ZBn8N7dW8ShY_-eZRXrKBJ8ZBHBiCZZ-oYLELMKpsIKRWwE6plMJkbqVqiAbixejzxZNS2aQ2re2lLAdsCflfKWr4L7k-Tsu3TkpwwOKqG80zIgHE_7ww&h=zKIo_x6puixM1T0wNcJsM0iH-98_kAPVredaj0eF1V8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: FA993BD7219A4091B370B56BBA3AF3F7 Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:50:18Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/04acc76f-ed92-4e2d-8b9e-e4bdd6dfae9b?api-version=2023-11-15&t=638450994188008137&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=nWeWVepVfJk5cxkseXYyzu2E95thZ43fleY1vi40V3ZsVIujqtccZjj2YSUg71IgohLZ_wgAw93RmbpG3-fjDZ83m1oJsGzp8YJX0-UrHvFJQFNFW-pThq83vDLXGKC4EOe0R6og1pIhkRuPAm4_vzjLaSNe2uuXwAn_5Ls0bMYTTG-2_fkXd4d6WgF7pFlbk2Ejyhmb5TOfVV8cz3aRk2zglXehrOFFieo9JJnvn_mm0lpULMeHzPSDOsRmI28iHy0vYCky6DqEWxcyMgeeN6yL6x8BeA2DDZsnXkl9EsWmENd_NF-RZUjsXTeZ-WNh6Zg8cQI89q0vd6wITfLsCg&h=Kgd_RNvGe13Qec1C-rE2hMC_Svk-Ybq_jJpMEyhjFxw + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EE57EC8FD61A435C9D5EF02C53A7C822 Ref B: BL2AA2030102011 Ref C: 2024-03-03T21:50:18Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/04acc76f-ed92-4e2d-8b9e-e4bdd6dfae9b?api-version=2023-11-15&t=638450994188008137&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=nWeWVepVfJk5cxkseXYyzu2E95thZ43fleY1vi40V3ZsVIujqtccZjj2YSUg71IgohLZ_wgAw93RmbpG3-fjDZ83m1oJsGzp8YJX0-UrHvFJQFNFW-pThq83vDLXGKC4EOe0R6og1pIhkRuPAm4_vzjLaSNe2uuXwAn_5Ls0bMYTTG-2_fkXd4d6WgF7pFlbk2Ejyhmb5TOfVV8cz3aRk2zglXehrOFFieo9JJnvn_mm0lpULMeHzPSDOsRmI28iHy0vYCky6DqEWxcyMgeeN6yL6x8BeA2DDZsnXkl9EsWmENd_NF-RZUjsXTeZ-WNh6Zg8cQI89q0vd6wITfLsCg&h=Kgd_RNvGe13Qec1C-rE2hMC_Svk-Ybq_jJpMEyhjFxw + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EDC97F54DACF44D88B4D54008F52E785 Ref B: MNZ221060610047 Ref C: 2024-03-03T21:50:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/276c98ca-847c-4c12-821f-d51e6776458b?api-version=2023-11-15&t=638450994503968525&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lpR46yYSIrr5Cp2f2mqFLBldomxOR6K4FT1wH3JYtU8X6m4fQ7ITgpfXrcKu2LEtNt1pMNslkAG4iUEPTvox1Nx42glAxvU3GS82aZnQlQrbaHLpGuv_vZGl2Drn_4KgQMngyl-IKxYWEJpj1NFUuZk2KtqzlDwylZ3zjsx6mUbYSbzawMMVMuiBSrBSTeHq7b0WdQtUbmQ8XIaczCuHqr_Nuj1N4GOriuqYhID-6JpKPGDYQnydErv_v7WM22Na8BYqlQBmoS2t-a1oHntTEIhHjI7ESn6ziplLRdbyYSFu8Mr6oTThZjeMEe5LGKm2e15ZRHmdWMSdScRqbaJaUQ&h=YRII_GJsgLcUGBsgUq-qPvaD6Qjg64Ezr-_2HlLLxik + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:50 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003/operationResults/276c98ca-847c-4c12-821f-d51e6776458b?api-version=2023-11-15&t=638450994504124796&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f6XLnoLv6APkp7qnjmxGFc9nJFOiFctQ0bf3EFGn8fg5E6_Wn0-g3hzSzCHkaYjDG93ojm7VDa1d5Qb6m-9CgNUB5G9Mi-i0LXnWF3YuAeogJPVTVwufBEx-NzvmGvjne6JlfFcuxZpCN8QVVVK7wOMNbhJYw4tHZLyzNL3w-tYT4NmPlvx_2e2P8W8wYEYSLJRRWtg8syO_IsKe-oF4opQQoGzPCNyB5EvYIQaLUP8Vg-FQ_kLm49EqKegm62EflKpI6XurcHVw6EpX7_SyXTdHDq2SwBE2kPP9Qn0L_YrkoDs2qFLY1OueXnpGMNMSbDrxPntEmnYx-BwZHaFgrw&h=j7UH5wN9yYIOk3PhhQX9InBFmXazQfVonea3F_UgVFs + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-msedge-ref: + - 'Ref A: C1F501D6C167435D827BBF416144407D Ref B: MNZ221060609009 Ref C: 2024-03-03T21:50:49Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/276c98ca-847c-4c12-821f-d51e6776458b?api-version=2023-11-15&t=638450994503968525&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lpR46yYSIrr5Cp2f2mqFLBldomxOR6K4FT1wH3JYtU8X6m4fQ7ITgpfXrcKu2LEtNt1pMNslkAG4iUEPTvox1Nx42glAxvU3GS82aZnQlQrbaHLpGuv_vZGl2Drn_4KgQMngyl-IKxYWEJpj1NFUuZk2KtqzlDwylZ3zjsx6mUbYSbzawMMVMuiBSrBSTeHq7b0WdQtUbmQ8XIaczCuHqr_Nuj1N4GOriuqYhID-6JpKPGDYQnydErv_v7WM22Na8BYqlQBmoS2t-a1oHntTEIhHjI7ESn6ziplLRdbyYSFu8Mr6oTThZjeMEe5LGKm2e15ZRHmdWMSdScRqbaJaUQ&h=YRII_GJsgLcUGBsgUq-qPvaD6Qjg64Ezr-_2HlLLxik + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 231E7F4AFCC74E598862F36BE7E0B74F Ref B: MNZ221060609029 Ref C: 2024-03-03T21:50:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/276c98ca-847c-4c12-821f-d51e6776458b?api-version=2023-11-15&t=638450994503968525&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lpR46yYSIrr5Cp2f2mqFLBldomxOR6K4FT1wH3JYtU8X6m4fQ7ITgpfXrcKu2LEtNt1pMNslkAG4iUEPTvox1Nx42glAxvU3GS82aZnQlQrbaHLpGuv_vZGl2Drn_4KgQMngyl-IKxYWEJpj1NFUuZk2KtqzlDwylZ3zjsx6mUbYSbzawMMVMuiBSrBSTeHq7b0WdQtUbmQ8XIaczCuHqr_Nuj1N4GOriuqYhID-6JpKPGDYQnydErv_v7WM22Na8BYqlQBmoS2t-a1oHntTEIhHjI7ESn6ziplLRdbyYSFu8Mr6oTThZjeMEe5LGKm2e15ZRHmdWMSdScRqbaJaUQ&h=YRII_GJsgLcUGBsgUq-qPvaD6Qjg64Ezr-_2HlLLxik + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 027C38B1475F46D882AC70C246FDE2B2 Ref B: MNZ221060608049 Ref C: 2024-03-03T21:51:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D959EF7BD6D746E990B1BE0EDEF8F943 Ref B: MNZ221060608017 Ref C: 2024-03-03T21:51:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:51:21Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:51:21Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:51:21Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:51:23Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:51:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","oldestRestorableTime":"2024-03-03T21:21:29+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcliykmkvebk","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli000004","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T21:51:25Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:51:22Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:51:22Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:51:22Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:51:22Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:51:22Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:51:22Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:51:22Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:51:22Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:51:22Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:51:22Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '429419' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:51:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: E2A1C4B30C534197A6F7AE5A96DC95E4 Ref B: MNZ221060608037 Ref C: 2024-03-03T21:51:21Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae", + "restoreTimestampInUtc": "2024-03-03T21:45:17.921255Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/324e035d-039f-48fb-8d78-1cd764dc9e4d?api-version=2024-02-15-preview&t=638450994887384835&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ahwogPT_JxlB5Y7WNCxs557x2hW28UrAdZm5Ip-0AVjCM1drJfl7Se92Us2xLcluZ1X5mnLwl_o9u5uBiSxixRDRS4fbRYJINFqfQjld3ZzbQCk1gEwybrBjQHK_pEIG7t6mJO_xoYJhpQjLA_Tcge2AO-fFXo9IxhfARJtmnX5OcavLnhN51Rj07rpcqx2GCf5xsR6XZeLKwyclyRiX_n85Ahnp9u5BDB8kJqoLmYG55Zo6_C3fcUDL8qGEaJCefHiTOc0J44MdRkXicrPusur9bb-ihFs7KTliBlTwjFKkHvyOJXlsGq2N2_GxaU2i7V_2_zQpxYILcVhkU9dVVQ&h=6a4gm4EtNw-_iOGE__vIr6pnaCFFjt25srPSOpSToOA + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:27 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002/operationResults/324e035d-039f-48fb-8d78-1cd764dc9e4d?api-version=2024-02-15-preview&t=638450994887384835&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eUYXzcYOFsS5mBO5gNAmiBoOnNzqa4SLWxXoFgy_QKWMs_VTgfL6jd2uL-hVnu3uGyaENeG5-vI99hnHcg9ixUAcZ0OdS0vvrZgCC8s7a-wAYFfCuj_4w3VwrVMg8AyHVixmJwzAXb6hhcd_oPfKjRvkBaWwhhJG9StpCBWPIX58F6PUK2DD0NpFO9cT0zjNio3jktfUNR8qT1YqUtVML5bRUM4ZjhYKQn68-uebC2QUEXvmtMbUMlwio5i7hGu2NMndgZdaSDVwXTeYi2gAXQAdcHGzyP2CEVUsHJ84m0wqvGGYLww2DLteBh8PRkx29Lq-wjaimLdsYYVeXQCqaw&h=HeH67ssiy6Ef0BJBEY50RIEpMoEklyF1cT56n84nAtc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: A9C385259DF24CC486C521836204440D Ref B: MNZ221060609051 Ref C: 2024-03-03T21:51:27Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/324e035d-039f-48fb-8d78-1cd764dc9e4d?api-version=2024-02-15-preview&t=638450994887384835&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ahwogPT_JxlB5Y7WNCxs557x2hW28UrAdZm5Ip-0AVjCM1drJfl7Se92Us2xLcluZ1X5mnLwl_o9u5uBiSxixRDRS4fbRYJINFqfQjld3ZzbQCk1gEwybrBjQHK_pEIG7t6mJO_xoYJhpQjLA_Tcge2AO-fFXo9IxhfARJtmnX5OcavLnhN51Rj07rpcqx2GCf5xsR6XZeLKwyclyRiX_n85Ahnp9u5BDB8kJqoLmYG55Zo6_C3fcUDL8qGEaJCefHiTOc0J44MdRkXicrPusur9bb-ihFs7KTliBlTwjFKkHvyOJXlsGq2N2_GxaU2i7V_2_zQpxYILcVhkU9dVVQ&h=6a4gm4EtNw-_iOGE__vIr6pnaCFFjt25srPSOpSToOA + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5AFAA600BDC843FE8F84D093F6E69669 Ref B: MNZ221060610031 Ref C: 2024-03-03T21:51:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/324e035d-039f-48fb-8d78-1cd764dc9e4d?api-version=2024-02-15-preview&t=638450994887384835&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ahwogPT_JxlB5Y7WNCxs557x2hW28UrAdZm5Ip-0AVjCM1drJfl7Se92Us2xLcluZ1X5mnLwl_o9u5uBiSxixRDRS4fbRYJINFqfQjld3ZzbQCk1gEwybrBjQHK_pEIG7t6mJO_xoYJhpQjLA_Tcge2AO-fFXo9IxhfARJtmnX5OcavLnhN51Rj07rpcqx2GCf5xsR6XZeLKwyclyRiX_n85Ahnp9u5BDB8kJqoLmYG55Zo6_C3fcUDL8qGEaJCefHiTOc0J44MdRkXicrPusur9bb-ihFs7KTliBlTwjFKkHvyOJXlsGq2N2_GxaU2i7V_2_zQpxYILcVhkU9dVVQ&h=6a4gm4EtNw-_iOGE__vIr6pnaCFFjt25srPSOpSToOA + response: + body: + string: '{"status":"Failed","error":{"code":"BadRequest","message":"InAccount + restore of individual shared database collections is not supported. Please + restore shared database to restore its collections that shared the throughput.\r\nActivityId: + 2c4377c1-d9a8-11ee-8876-000d3a1e0e23, Microsoft.Azure.Documents.Common/2.14.0, + Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, + Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, + Microsoft.Azure.Documents.Common/2.14.0"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '523' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 96774006CDFD459E87172D7D50D3367C Ref B: MNZ221060610023 Ref C: 2024-03-03T21:51:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7424B77C2BA345AEB536B831D2A0E8BF Ref B: MNZ221060608007 Ref C: 2024-03-03T21:51:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cc689e87-d25a-4dd3-bb07-6fd8107ffcbf?api-version=2023-11-15&t=638450995232239657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CMYl_vAuxZC51D0EgvUS0u3jjDfxVtjyzlPEF4YiWpFAxEFESqMHVXmgR5CJu7Zhi5L4jNSRjGhtCJcFhp7MXFqvBBEGLy3ql97M9cWtuZub-UFAHynENOy1nLKORhHfAN2wnvbeaQcIpYJjqqkKXc_Wlv3ENW2Xypu2safHB6tlArTcVXA6c7ENey2-KwbR1BP0KATkO7E_G5OmkGBQFnHxa3v5uZnZysI4YRaSIPWA1SwDbK7CoRerj0IgnESoQNfMb-OBf4mFNSss93SgzRhHlIqdA4jKDsMsvZohz3cC5nL_fs53uvXfYzm8nQ70C-rkg1ahrX5JwB36-sG4lA&h=ND7X5oDeazzmjHEa28-trvqrDvBmuVl-qAPoQgEJRa8 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:02 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/operationResults/cc689e87-d25a-4dd3-bb07-6fd8107ffcbf?api-version=2023-11-15&t=638450995232239657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lhBrhWV4EyfvvOaqTXkddRned_uKqA9VaviMQoXCHEjUH2l4ztka_jXqueniQAC-bzbZbVa9mpj2ET4yXvPwfL4u0ztbaNEibyaBksFAjSjSKgbeHT4o-7-dhKOXZnU1-UWsWeKNoMQkt5IlgeXfuG-SbaoY-ZIYiK6ZCv4proyG_OWWYEfwo6ITHRIpQtUm0zlIdRTFKD9I0fV6TYjy8DdI0vUUenQfxieUC8yuAjcSFQASqIMxM35awDCgbJ1sLVNuiOd0TFTbGZJtJEk2nFpwx8emX9hN5lXhQkmn-2aOiD6-7gspDGsraSwJa4tC1rzSaHrhRcf-Ktz20j9aNA&h=x4oa5g1NqD8a3n4t5_AYtdZCURzish-XueF_evnmKOs + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 257BE05CF61C46A999ABBCCBB36AD7CF Ref B: MNZ221060610031 Ref C: 2024-03-03T21:52:02Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cc689e87-d25a-4dd3-bb07-6fd8107ffcbf?api-version=2023-11-15&t=638450995232239657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CMYl_vAuxZC51D0EgvUS0u3jjDfxVtjyzlPEF4YiWpFAxEFESqMHVXmgR5CJu7Zhi5L4jNSRjGhtCJcFhp7MXFqvBBEGLy3ql97M9cWtuZub-UFAHynENOy1nLKORhHfAN2wnvbeaQcIpYJjqqkKXc_Wlv3ENW2Xypu2safHB6tlArTcVXA6c7ENey2-KwbR1BP0KATkO7E_G5OmkGBQFnHxa3v5uZnZysI4YRaSIPWA1SwDbK7CoRerj0IgnESoQNfMb-OBf4mFNSss93SgzRhHlIqdA4jKDsMsvZohz3cC5nL_fs53uvXfYzm8nQ70C-rkg1ahrX5JwB36-sG4lA&h=ND7X5oDeazzmjHEa28-trvqrDvBmuVl-qAPoQgEJRa8 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:03 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 399476045E8B4F32B1A55AA5826F0121 Ref B: MNZ221060610025 Ref C: 2024-03-03T21:52:03Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cc689e87-d25a-4dd3-bb07-6fd8107ffcbf?api-version=2023-11-15&t=638450995232239657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CMYl_vAuxZC51D0EgvUS0u3jjDfxVtjyzlPEF4YiWpFAxEFESqMHVXmgR5CJu7Zhi5L4jNSRjGhtCJcFhp7MXFqvBBEGLy3ql97M9cWtuZub-UFAHynENOy1nLKORhHfAN2wnvbeaQcIpYJjqqkKXc_Wlv3ENW2Xypu2safHB6tlArTcVXA6c7ENey2-KwbR1BP0KATkO7E_G5OmkGBQFnHxa3v5uZnZysI4YRaSIPWA1SwDbK7CoRerj0IgnESoQNfMb-OBf4mFNSss93SgzRhHlIqdA4jKDsMsvZohz3cC5nL_fs53uvXfYzm8nQ70C-rkg1ahrX5JwB36-sG4lA&h=ND7X5oDeazzmjHEa28-trvqrDvBmuVl-qAPoQgEJRa8 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:33 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B8906E29238547E9AD539AF23C337E1A Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:52:33Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:34 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A666FF88EA454BA6A4135A7741202078 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:52:34Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:52:36Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcliykmkvebk","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli000004","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T21:52:38Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:52:35Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:52:35Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:52:35Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:52:36Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:52:35Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:52:35Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428968' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:52:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 0B76F7F4CCFE4F049CF166BB6AD7765E Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:52:35Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000005", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae", + "restoreTimestampInUtc": "2024-03-03T21:45:17.921255Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:40 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/operationResults/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SK9twicHH-vB-1nw_a5QjKyOIv0DNm8E1GbjP5rgSZ-EVcPlqjSjPNW5m0GFVSVwz5LdcIsrjHiQVfqUq5JZ3gFRQML5wgCDXRG0VKb51ZgkNXqBT1qC0dY2K98I7Vd9_ZLe9E0iiLPvQ2wjZZMKd9RLN5elHE6823RdyGYyAHleuQ_qrgVVUBbAs-RGzFe0ymIVjmR93mA7gyeqx7CX3saC3vY9rxxpi2HlmpMhDVjrj59GuSxt--1VabDadw1BOURhhNK6Iob3Ixdj9ilZ2KG0fT-CfDC_Dh3goVa4mFotQes6zTCiULYpqDYGeNehXtDv6ChLXyxaTCvhpI_wRA&h=NTIRXprXMzh8iuVVGGa0uR7deVvniV1I2LGcCOb79sI + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: C2B86DF1D76548CC939C087B075468EC Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:52:40Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C9C5FE93612B4BBE88B84D46E8983CFC Ref B: BL2AA2010201051 Ref C: 2024-03-03T21:52:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:53:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5B35BF8800054239BEC99C7FFEA207AF Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:53:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:53:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4282C1342C1C40A1846400C879745D83 Ref B: BL2AA2030104035 Ref C: 2024-03-03T21:53:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:54:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 54F2E183436247DC9CF5EA8E35CCBBD5 Ref B: MNZ221060609011 Ref C: 2024-03-03T21:54:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:54:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8FECA6F7CAF6405783C340ABDDB4173C Ref B: BL2AA2030102019 Ref C: 2024-03-03T21:54:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:55:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 533BCE6392724FFEB10B169E4C7A0557 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:55:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:55:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 68AF892628104F3ABA2B0B105922D60D Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:55:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:56:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 08001E3AB0B441F7ACA5204A5016C6A7 Ref B: BL2AA2030102011 Ref C: 2024-03-03T21:56:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:56:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1F79EE529422474D9BFD15E414499042 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:56:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:57:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 56EB67E6B8D944CE912A4459AABEB927 Ref B: BL2AA2010202051 Ref C: 2024-03-03T21:57:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:57:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3DF9E2AB30944C46A67FD595E1FD54F0 Ref B: MNZ221060608019 Ref C: 2024-03-03T21:57:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:58:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BECBE69940FD4F63A911314CF5EEE982 Ref B: MNZ221060610011 Ref C: 2024-03-03T21:58:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:58:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8D589715705445C0B4028D71D7E4354E Ref B: MNZ221060608039 Ref C: 2024-03-03T21:58:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CB0414EBF22045F1A8AC6B275B9BD5AB Ref B: MNZ221060608037 Ref C: 2024-03-03T21:59:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3b692444-cff6-4606-8b8a-aa32b037d4b5?api-version=2024-02-15-preview&t=638450995617080688&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CYI9SQ5uOBOOW1s5v76rxdscmib1N6SSyirqemQHPZufE_mvCu0PAUFKjehKwGLdX81GI-5bhXFMXzhv5K3yr4AsbsGwfwx5QCC1_8xRya5LhcA6NjhrzlWhRGVD4tVPTQG7XdDR8P-aU_3Pyra8WlG0VQhsh6GeB3yxPr1e54MawH_cTZL9NW78pk2Elie7BoeDW1gcWygdcZalolZhIEaXlfCeDYV-XplQ50DAw_nIxXn67Zeg8pvs6bZm2j7eOJGpoLNZ-O9Hl97P3dZEyU8PA3bNumIEBKqK0DfbElkji_mhLl63IzK9eHR3UG4UaXYWsGzMAveBSpexY8e2Pg&h=XvJrw-UjOdhzjHlw0zWMb3xRVHgzcC0aTCst3rb4C3U + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5B8C1E32D1CC4F01BE5ADD0109BBA320 Ref B: MNZ221060609049 Ref C: 2024-03-03T21:59:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000005","properties":{"resource":{"id":"cli000005"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '360' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 787AE1E081A74F3C9825C5B5B32A95D7 Ref B: MNZ221060610023 Ref C: 2024-03-03T21:59:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000005","properties":{"resource":{"id":"cli000005"}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '372' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 493096AC3D5848F18DBB29E914B19C25 Ref B: MNZ221060609011 Ref C: 2024-03-03T21:59:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '477' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E309F39E6D814B61A563229EEFDA1780 Ref B: MNZ221060609037 Ref C: 2024-03-03T21:59:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:59:46Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:59:46Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-03T21:59:31Z","oldestRestorableTime":"2024-02-25T21:59:31Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:59:48Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:59: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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:59:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcliykmkvebk","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli000004","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:59:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z","deletionTime":"2024-03-03T21:51:02Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T21:59:50Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:59:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:59:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:59:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:59:47Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:59:47Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:59:46Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:59:46Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:59:46Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:59:46Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:59:46Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:59:46Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '429669' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:59:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: D7143327056248169CCF1DAEBD4B42D2 Ref B: MNZ221060609021 Ref C: 2024-03-03T21:59:46Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae", + "restoreTimestampInUtc": "2024-03-03T21:45:17.921255Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:52 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003/operationResults/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eyD5ik9O4p7qhPT58B6qiZNvTpOmugORdDE6ZejtD_JhW2TQZMqrDb7ncZGxLccRp_7Lj73gJxB5qRPGluHZWnkKBSvO6jKDaWRKtY5e2018YhxhhssXmE7ZCr7_CkyxRsZqTUAbXEO8EYTlXcNw39aNUF3LVbZyyd9U7HiAalgYx2rLVztKS-ZqUQsnS_-_L8ZOLqww4C9KDy0xn-q9S6fhkR8SqBtSC1jZlXRp5cwP2ylZAZcAWfrdyCRYP8V6HfJbxgSoYvjgb2lnDhkAT-PZRehL5cDYvgsDoSbogK5phCJxcvYEDMEtQM9IA0U-HoIx-B94o7yU3kZY1fqGWQ&h=imBdnmEsFIYLFwM83AWYaxYxO_cDpnaiPq-o9y7aE6o + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 37502D8134EE4018960F6E9AACD97945 Ref B: MNZ221060608037 Ref C: 2024-03-03T21:59:52Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:59:53 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 531BE74E09C1444FB62638DAAAA705CA Ref B: MNZ221060610029 Ref C: 2024-03-03T21:59:53Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 84449C167B7D4B34BE16F63346C51742 Ref B: MNZ221060610027 Ref C: 2024-03-03T22:00:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:00:53 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 98A039C2DBDF4228AFB8FB48941888B8 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:00:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:01:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3EDC641860B94074ACD4EB958FD1C4D5 Ref B: MNZ221060610021 Ref C: 2024-03-03T22:01:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:01:53 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 866EEA2C53464B178B071E304C2B87C2 Ref B: MNZ221060608049 Ref C: 2024-03-03T22:01:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:02:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4022F35004DC4A31836FB95E6FC3D92A Ref B: MNZ221060610021 Ref C: 2024-03-03T22:02:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:02:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 79841B4328FB4919BCA38ABA8B1FC0CB Ref B: MNZ221060610017 Ref C: 2024-03-03T22:02:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:03:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 189F07244C5C4A439616A8B1BC9945CA Ref B: MNZ221060609009 Ref C: 2024-03-03T22:03:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:03:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8D8EB11FA83541C0B2277328D2B886D2 Ref B: MNZ221060610031 Ref C: 2024-03-03T22:03:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:04:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9AC336D55E884E5D87632EC934EE81F5 Ref B: MNZ221060609029 Ref C: 2024-03-03T22:04:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:04:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7A266772BDBF4D1D84C8A024088F9951 Ref B: MNZ221060608039 Ref C: 2024-03-03T22:04:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:05:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 53E670C438F24592BEE59E5936B39A1C Ref B: MNZ221060609037 Ref C: 2024-03-03T22:05:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:05:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6B1B9E55C61846DF938839175ED9FA58 Ref B: MNZ221060608049 Ref C: 2024-03-03T22:05:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:06:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0D7232BDA90B4B10B4D04B57CE45C2F8 Ref B: MNZ221060608039 Ref C: 2024-03-03T22:06:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c81151e0-5b13-43e8-b6a8-e0977439ceea?api-version=2024-02-15-preview&t=638450999934660977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XYsKbz8BalT4RbnzLvTfNgYjR9wO1rWJ_lPbc7a_hwtGd-WPIDpYc8CwG16kzf9JUkABn1hYAT-nX2zrkqv8zotEpb9SuWyZj0cTxrqScBw9ysEJaJrClieD8-5sCq_uE34q4AoN6CSK6WRK6ZcmOmWi6IXoc54ckQenPn7KhrSQveyFc8CzHvNTvik8yL40uEd0O0-tEiY0cRILsRXFPi226vAl5uRrPohKUjVRHZxappMw6ZBnqjngfuwLsLBbefTEzG-ZK3WykEnjBr3vhFl4TFuVjrwijn0ZT-KB6wJxSXHs2SpvxVoSBl4j8r42fQLXzDOnQHJpSdDfrlysMQ&h=3mZ5V-GlXwdOqmmRsz2KIJu0aZEvI-rSOh-tZ6_ypmQ + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:06:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 16723597A5424107AB646F3C56136D5C Ref B: MNZ221060610021 Ref C: 2024-03-03T22:06:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000003","properties":{"resource":{"id":"cli000003","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '465' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:06:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5A58EC2FAEB84774BF74C982AA171309 Ref B: MNZ221060608017 Ref C: 2024-03-03T22:06:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb collection list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000003","properties":{"resource":{"id":"cli000003","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]}}]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '943' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:06:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2B2CEDE98A37494D83424B689F5B30F9 Ref B: MNZ221060608037 Ref C: 2024-03-03T22:06:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e510bd3d-1aef-4dfb-8378-79972a3e0aa7?api-version=2023-11-15&t=638451004191469349&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=l5Q0YNI3kctGxUCqYirFlO8vrj-mq168sU8eaNwxJQyJ71MZXTbmay4EhJ8fgQkBBh7NFzXOCUENmMElOLMeIF6lnMxthISkNTKQooEQ-RXKG3VuzoOLkQBNl9UlFtTu658HF7m8vKjHnIIsSjvV4Rst98LpFHHqSTzQVL8Na9_HSqUJddUWXjlDwRY4ICmdje7qnMPSluJOl2yMUlazB-q_QTE39dkVSLz0raU6cp5Icw70O4XZtZhhmYGSlOr6-xk8A7nxN1bHBtlJ8vfH4GsGGkkmwpE4cA6RK4e5x8Py1RoyMi1yiYwYa-laQX-8OrpAoyrm2oNqrSodpJ5ErQ&h=g8jx8oytUBo0vy-CbaZ6oCN3w41GE1eLxVegV4bOA70 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:06:58 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases/cli000005/operationResults/e510bd3d-1aef-4dfb-8378-79972a3e0aa7?api-version=2023-11-15&t=638451004191625609&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qp8kX0p3w-A1mtfHQ00KsHmhK21FEvWs40ClL5yvYeQAHdw-ttmcqhjCdv-Z3Ah4_6wHQNEZy4AtPQ8cKATd8-dTK5jpvwNgDWs3_6jFwSkCfK0Igl706T39q6b9LY5G5EOgS9uA6fXb-uqjffoNbHcgvQAzA7DvrJyTRTKhMZPw3gZErPchbFrXRrJODDYzeqaT_NA5RumeZ7szMlV3LfFgUlTrJNtburZS7E4Quz3HhdH_teHXBNAzalZU7Lb_WPf67gjXrxn10coEy9AivJrCozFWOketP7sbdwG0mh2648EhlcQoqojZDmm18I3BD4r6byeOCcBAUTwZu8oSGw&h=0jsCJ5KVFm1nZloikpVhSkwXzWIUOCUOcuMB0WH4SGk + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 1DA29CA72C3C4199A21BD66032BC2C5D Ref B: MNZ221060608039 Ref C: 2024-03-03T22:06:58Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e510bd3d-1aef-4dfb-8378-79972a3e0aa7?api-version=2023-11-15&t=638451004191469349&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=l5Q0YNI3kctGxUCqYirFlO8vrj-mq168sU8eaNwxJQyJ71MZXTbmay4EhJ8fgQkBBh7NFzXOCUENmMElOLMeIF6lnMxthISkNTKQooEQ-RXKG3VuzoOLkQBNl9UlFtTu658HF7m8vKjHnIIsSjvV4Rst98LpFHHqSTzQVL8Na9_HSqUJddUWXjlDwRY4ICmdje7qnMPSluJOl2yMUlazB-q_QTE39dkVSLz0raU6cp5Icw70O4XZtZhhmYGSlOr6-xk8A7nxN1bHBtlJ8vfH4GsGGkkmwpE4cA6RK4e5x8Py1RoyMi1yiYwYa-laQX-8OrpAoyrm2oNqrSodpJ5ErQ&h=g8jx8oytUBo0vy-CbaZ6oCN3w41GE1eLxVegV4bOA70 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:06:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E14E2CD374964C7C8328635A77AA9A76 Ref B: MNZ221060608047 Ref C: 2024-03-03T22:06:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e510bd3d-1aef-4dfb-8378-79972a3e0aa7?api-version=2023-11-15&t=638451004191469349&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=l5Q0YNI3kctGxUCqYirFlO8vrj-mq168sU8eaNwxJQyJ71MZXTbmay4EhJ8fgQkBBh7NFzXOCUENmMElOLMeIF6lnMxthISkNTKQooEQ-RXKG3VuzoOLkQBNl9UlFtTu658HF7m8vKjHnIIsSjvV4Rst98LpFHHqSTzQVL8Na9_HSqUJddUWXjlDwRY4ICmdje7qnMPSluJOl2yMUlazB-q_QTE39dkVSLz0raU6cp5Icw70O4XZtZhhmYGSlOr6-xk8A7nxN1bHBtlJ8vfH4GsGGkkmwpE4cA6RK4e5x8Py1RoyMi1yiYwYa-laQX-8OrpAoyrm2oNqrSodpJ5ErQ&h=g8jx8oytUBo0vy-CbaZ6oCN3w41GE1eLxVegV4bOA70 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:07:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1E9EE448C97C4DE0857E31465C996452 Ref B: MNZ221060610027 Ref C: 2024-03-03T22:07:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb mongodb database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_shared_database_prov_collection_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/mongodbDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:07:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 89F28BB814B4481287CDC73299860538 Ref B: MNZ221060608049 Ref C: 2024-03-03T22:07:30Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container.yaml new file mode 100644 index 00000000000..f8787c1622d --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_container.yaml @@ -0,0 +1,1252 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_container000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001","name":"cli_test_cosmosdb_sql_container000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_container","date":"2024-03-03T21:13:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '417' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C077EEFEFDCE484B8DDE18421E02D2D4 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:13:35.807261Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:13:35.807261Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:13:35.807261Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.807261Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.807261Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IKvP5Ax95DzvWdZ-WGZG06cBwabr02eXTSMSH_r2EqJ5VEcELxvYZVOk_nZaRJ__dybV6ppQOhbkrZRzTOoOlf5ChOjqdcBPtkultF0eTMwuCD4ZDVeqqq6HpYl07RakrIW9SeRN0Im_4elkWNYKFIhd49N3sC8sCl1ZuN8OOcAosanwSEwTBU-YjNDzgkk-B0ky_-RFDX3LZhCIvu_I2_bYb38PhC2WbkQdijvzjpqVCvFopcFtrlVF8KtK1iQ_uwkR5A7hcUmKG8FMl01mkSDgK9RRLOSMmPyOX-uuVYdIJ0y9ZdNgcS63vBck6XxRhVNPTQvnhzZw_rExrxTGtQ&h=A9J2Sb7tu-kLON5F_hKA2nwIolP-k7iDyX0NNnKpDw8 + cache-control: + - no-store, no-cache + content-length: + - '2661' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:37 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=DlpLyL1FpCU7MSatXfQq956ZY-jizECVa_s6KwDS-Ytx7f2GLerGXvMdygc3_R2LLjivjm62sQ3cs0YmxRbu_pOeaS1mIAw4MvezLYz0QaX5bzvF88I7zCrOueGMEoXhOSeBgSsEdRGlaY5C0fwFTZevNtEmUaHAiAU_JtjMxxfDt75HXrJHkmVGeHNlQ3pdchsxbJiXHJ54s4B3NAG66lK5X-zrp-Z34gXSmD92AnwpakDwyRnl1G_6vdGYPHqXl6vJu6JD79myjnxERICc2YPu2w3cfpQpEpQbg0ixcRRaW5ruHhJH2Pe6e99DSAODhvL3yWPn-FW4RYB7MvjvrA&h=OmqcGCy4ynXK8qW4M_S5eaxxa6EeqlNXm04nhnP61l8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: DBC880F1DECF41DF898E6111CFF570B5 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IKvP5Ax95DzvWdZ-WGZG06cBwabr02eXTSMSH_r2EqJ5VEcELxvYZVOk_nZaRJ__dybV6ppQOhbkrZRzTOoOlf5ChOjqdcBPtkultF0eTMwuCD4ZDVeqqq6HpYl07RakrIW9SeRN0Im_4elkWNYKFIhd49N3sC8sCl1ZuN8OOcAosanwSEwTBU-YjNDzgkk-B0ky_-RFDX3LZhCIvu_I2_bYb38PhC2WbkQdijvzjpqVCvFopcFtrlVF8KtK1iQ_uwkR5A7hcUmKG8FMl01mkSDgK9RRLOSMmPyOX-uuVYdIJ0y9ZdNgcS63vBck6XxRhVNPTQvnhzZw_rExrxTGtQ&h=A9J2Sb7tu-kLON5F_hKA2nwIolP-k7iDyX0NNnKpDw8 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BC75CBB59C194E3D998ED1163F7B53B8 Ref B: BL2AA2030102047 Ref C: 2024-03-03T21:13:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IKvP5Ax95DzvWdZ-WGZG06cBwabr02eXTSMSH_r2EqJ5VEcELxvYZVOk_nZaRJ__dybV6ppQOhbkrZRzTOoOlf5ChOjqdcBPtkultF0eTMwuCD4ZDVeqqq6HpYl07RakrIW9SeRN0Im_4elkWNYKFIhd49N3sC8sCl1ZuN8OOcAosanwSEwTBU-YjNDzgkk-B0ky_-RFDX3LZhCIvu_I2_bYb38PhC2WbkQdijvzjpqVCvFopcFtrlVF8KtK1iQ_uwkR5A7hcUmKG8FMl01mkSDgK9RRLOSMmPyOX-uuVYdIJ0y9ZdNgcS63vBck6XxRhVNPTQvnhzZw_rExrxTGtQ&h=A9J2Sb7tu-kLON5F_hKA2nwIolP-k7iDyX0NNnKpDw8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 23768E7602094697A5681FCADEEA2A4E Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:14:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IKvP5Ax95DzvWdZ-WGZG06cBwabr02eXTSMSH_r2EqJ5VEcELxvYZVOk_nZaRJ__dybV6ppQOhbkrZRzTOoOlf5ChOjqdcBPtkultF0eTMwuCD4ZDVeqqq6HpYl07RakrIW9SeRN0Im_4elkWNYKFIhd49N3sC8sCl1ZuN8OOcAosanwSEwTBU-YjNDzgkk-B0ky_-RFDX3LZhCIvu_I2_bYb38PhC2WbkQdijvzjpqVCvFopcFtrlVF8KtK1iQ_uwkR5A7hcUmKG8FMl01mkSDgK9RRLOSMmPyOX-uuVYdIJ0y9ZdNgcS63vBck6XxRhVNPTQvnhzZw_rExrxTGtQ&h=A9J2Sb7tu-kLON5F_hKA2nwIolP-k7iDyX0NNnKpDw8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E1CCD968800D45379C12A3960CDC9F3D Ref B: BL2AA2030101053 Ref C: 2024-03-03T21:14:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IKvP5Ax95DzvWdZ-WGZG06cBwabr02eXTSMSH_r2EqJ5VEcELxvYZVOk_nZaRJ__dybV6ppQOhbkrZRzTOoOlf5ChOjqdcBPtkultF0eTMwuCD4ZDVeqqq6HpYl07RakrIW9SeRN0Im_4elkWNYKFIhd49N3sC8sCl1ZuN8OOcAosanwSEwTBU-YjNDzgkk-B0ky_-RFDX3LZhCIvu_I2_bYb38PhC2WbkQdijvzjpqVCvFopcFtrlVF8KtK1iQ_uwkR5A7hcUmKG8FMl01mkSDgK9RRLOSMmPyOX-uuVYdIJ0y9ZdNgcS63vBck6XxRhVNPTQvnhzZw_rExrxTGtQ&h=A9J2Sb7tu-kLON5F_hKA2nwIolP-k7iDyX0NNnKpDw8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A3F11F43133A47E6BB3D9E96113E555F Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:15:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IKvP5Ax95DzvWdZ-WGZG06cBwabr02eXTSMSH_r2EqJ5VEcELxvYZVOk_nZaRJ__dybV6ppQOhbkrZRzTOoOlf5ChOjqdcBPtkultF0eTMwuCD4ZDVeqqq6HpYl07RakrIW9SeRN0Im_4elkWNYKFIhd49N3sC8sCl1ZuN8OOcAosanwSEwTBU-YjNDzgkk-B0ky_-RFDX3LZhCIvu_I2_bYb38PhC2WbkQdijvzjpqVCvFopcFtrlVF8KtK1iQ_uwkR5A7hcUmKG8FMl01mkSDgK9RRLOSMmPyOX-uuVYdIJ0y9ZdNgcS63vBck6XxRhVNPTQvnhzZw_rExrxTGtQ&h=A9J2Sb7tu-kLON5F_hKA2nwIolP-k7iDyX0NNnKpDw8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8AAA9A2714AE421FA924B37FDA6FEFC8 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:15:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IKvP5Ax95DzvWdZ-WGZG06cBwabr02eXTSMSH_r2EqJ5VEcELxvYZVOk_nZaRJ__dybV6ppQOhbkrZRzTOoOlf5ChOjqdcBPtkultF0eTMwuCD4ZDVeqqq6HpYl07RakrIW9SeRN0Im_4elkWNYKFIhd49N3sC8sCl1ZuN8OOcAosanwSEwTBU-YjNDzgkk-B0ky_-RFDX3LZhCIvu_I2_bYb38PhC2WbkQdijvzjpqVCvFopcFtrlVF8KtK1iQ_uwkR5A7hcUmKG8FMl01mkSDgK9RRLOSMmPyOX-uuVYdIJ0y9ZdNgcS63vBck6XxRhVNPTQvnhzZw_rExrxTGtQ&h=A9J2Sb7tu-kLON5F_hKA2nwIolP-k7iDyX0NNnKpDw8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E847D7BC5B7B4A34BF188911FA02400A Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f9f7b23-ebf0-42e8-b141-4d3cf5a1a916?api-version=2024-02-15-preview&t=638450972175851885&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IKvP5Ax95DzvWdZ-WGZG06cBwabr02eXTSMSH_r2EqJ5VEcELxvYZVOk_nZaRJ__dybV6ppQOhbkrZRzTOoOlf5ChOjqdcBPtkultF0eTMwuCD4ZDVeqqq6HpYl07RakrIW9SeRN0Im_4elkWNYKFIhd49N3sC8sCl1ZuN8OOcAosanwSEwTBU-YjNDzgkk-B0ky_-RFDX3LZhCIvu_I2_bYb38PhC2WbkQdijvzjpqVCvFopcFtrlVF8KtK1iQ_uwkR5A7hcUmKG8FMl01mkSDgK9RRLOSMmPyOX-uuVYdIJ0y9ZdNgcS63vBck6XxRhVNPTQvnhzZw_rExrxTGtQ&h=A9J2Sb7tu-kLON5F_hKA2nwIolP-k7iDyX0NNnKpDw8 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DE6E3B7A127C472EAF0254B88007E770 Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:36.1389437Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:36.1389437Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:36.1389437Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:36.1389437Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:36.1389437Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3024' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 27F3A3BEC10E4B488AEA2235508CEB96 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:36.1389437Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:36.1389437Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:36.1389437Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:36.1389437Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:36.1389437Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3024' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8645F250F5DF4D0EA017AFCF2A6F06DB Ref B: BL2AA2030104045 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000004", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8524f692-6624-43a2-9295-d1a31b695579?api-version=2023-11-15&t=638450974007296925&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PLWurYMFc2IJ3BMwCS2aQEec6ylC8zYN3c3NUcqU_wk9-oYXnVJkYZqugDI_F8Ewiyu4xslvqiCNg82HVr4rNo9p_IhRDaF7YZxGsmiNpR39H9T6CA2DL2gPkgIsMiP5VECIfp0Qh3F4W_kK9GlSgZge3vs49yqtUUbhnO_5MB6sjHGtjcLf87EJ8ag4ZWqTa2xzIhIYd8iN2BPqANm02PnCCdk3za9oNfQwCo1GQD6Ps-7H8luFhIJnoHtH416JIjw6jjWbo79JoDm98bsTEZa12_JpyUodudiMmWa-80UbBi0lkRRdpGGjGNT5vrm3-p5uwezVbhqvuvD9xV4aOA&h=gt70mOKG3qpvaHKP_MliZiHZW-uN6kNSMsbGBRzBhfM + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:40 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/operationResults/8524f692-6624-43a2-9295-d1a31b695579?api-version=2023-11-15&t=638450974007296925&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jv7t20y75ybYlBb0WYDcIgdKH4Qtpc_M2jEJR5Sv2QyEsE6Kzaykmp6L5GPBW14c3DsfTeZeS3Mg6EQm6MeSZPw-yy-Qmt_XOF-78auYeSw1v8NKkKjKH8ujiH6aWLXnxeKzb49CuQqzRsMn7kQ4QhTFRGhqFXBQW9u7cFMtba9K0mZ-poC_OFMkNpDlqZZzo8quxvVur2nZ0iUwp3j3XIR6Um7M0no7vaqEMJvc90i3xuOIgHUYqRdhAn-UiSBWBv4MRAcTTPygt0D4H56tlchAXqa8WchJMuH7F6Fap--vQQnX22eO-QCKl-de3wOynEUZatQcM5pw_XwdUbA8wQ&h=0pWnHHdycE5LfyGz3VeIcSYA7cd8WS_hlHJtCERyIhs + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 02B3C7D8252C46578AA40E9B863E918F Ref B: BL2AA2030102007 Ref C: 2024-03-03T21:16:39Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8524f692-6624-43a2-9295-d1a31b695579?api-version=2023-11-15&t=638450974007296925&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PLWurYMFc2IJ3BMwCS2aQEec6ylC8zYN3c3NUcqU_wk9-oYXnVJkYZqugDI_F8Ewiyu4xslvqiCNg82HVr4rNo9p_IhRDaF7YZxGsmiNpR39H9T6CA2DL2gPkgIsMiP5VECIfp0Qh3F4W_kK9GlSgZge3vs49yqtUUbhnO_5MB6sjHGtjcLf87EJ8ag4ZWqTa2xzIhIYd8iN2BPqANm02PnCCdk3za9oNfQwCo1GQD6Ps-7H8luFhIJnoHtH416JIjw6jjWbo79JoDm98bsTEZa12_JpyUodudiMmWa-80UbBi0lkRRdpGGjGNT5vrm3-p5uwezVbhqvuvD9xV4aOA&h=gt70mOKG3qpvaHKP_MliZiHZW-uN6kNSMsbGBRzBhfM + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 37CD001A22AF4D94863E231D1DC55E1F Ref B: BL2AA2010202021 Ref C: 2024-03-03T21:16:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8524f692-6624-43a2-9295-d1a31b695579?api-version=2023-11-15&t=638450974007296925&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PLWurYMFc2IJ3BMwCS2aQEec6ylC8zYN3c3NUcqU_wk9-oYXnVJkYZqugDI_F8Ewiyu4xslvqiCNg82HVr4rNo9p_IhRDaF7YZxGsmiNpR39H9T6CA2DL2gPkgIsMiP5VECIfp0Qh3F4W_kK9GlSgZge3vs49yqtUUbhnO_5MB6sjHGtjcLf87EJ8ag4ZWqTa2xzIhIYd8iN2BPqANm02PnCCdk3za9oNfQwCo1GQD6Ps-7H8luFhIJnoHtH416JIjw6jjWbo79JoDm98bsTEZa12_JpyUodudiMmWa-80UbBi0lkRRdpGGjGNT5vrm3-p5uwezVbhqvuvD9xV4aOA&h=gt70mOKG3qpvaHKP_MliZiHZW-uN6kNSMsbGBRzBhfM + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 146C8733D93A402FB0E77FC8CA36C82F Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:17:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"TTkOAA==","_self":"dbs/TTkOAA==/","_etag":"\"00006102-0000-0700-0000-65e4e8bd0000\"","_colls":"colls/","_users":"users/","_ts":1709500605}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '464' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8F8E9AEF83DD4FC4801AEB9883104BEF Ref B: BL2AA2010204029 Ref C: 2024-03-03T21:17:11Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/pk"], "kind": "Hash"}}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + Content-Length: + - '265' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n -p + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed9b5fe1-a517-4c16-bd01-44a2eb77f668?api-version=2024-02-15-preview&t=638450974324737237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I_IuJDW8mXetXUv25Wcrjb-7v_va_dOUsVIQ9kTIFGOX1gbgcsLEbEsdSVVSpM-d2vdpZjWd1c5fx5OryJ4GAjA3jQQzQTVlcmGemm6f8JnJBiJnAt-T-ov2jr1XTJi6mlBQBpkpG90iVjIaaOSO_mCfXe6amgmZ3cHcqpYMmmF0iN3R3DK_0dvg3RYoNloUVp6bEPcBtG_sH6Veu2YzCmPuQ2UIx9iScxyNaVoU_WGlZjABbPOGsEmT-E3tVAynrqpKiYxXVbqH3sz0St2afwvaU-dFKQrSJXKZTvYE_5mbUSmUjkwEdM-Q5ECIknnyQh9QyCU6fkyPIoJHwHSsUw&h=QJ5dY6JFTyPMdMHElS1d3byzYFIM4Ct7iNwH3lLf3Js + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002/operationResults/ed9b5fe1-a517-4c16-bd01-44a2eb77f668?api-version=2024-02-15-preview&t=638450974324737237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=E9BP3C5sumHIAfplAg3lP83hZn9ySlhXlplXl5UVBFzHsDbup4ErZYgFPAgARo1gKN_yZ6SC4wwbBl4DtDnq1lm1n6AuI4-L8zvdKS7CNvsR1QPucdzrq0fkDqInC4IdyrwcbrTyL1hmciFtNVYBsR6Wa4Ya3ckn_l5latWEsYeClaRj1FHkD0TMKvDpM0uEOyhQPftVEq3AIgZPw83xaWOYGfa7Gf7tPh-Im33JKfhfJ1IOKhAU3ZzXjEuClMKtjIG_GpJ4kLzkccYCQX_q-x-BNfevKWY3RMncI_hV6nMvRmt6SyiNktG8ucCryb1GB8jMhRRLJHcABUGxSmCzcg&h=yNFO7f-iwGl_cfm_9sOhAdoEdF9coBtqH5kgP89xZsk + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 9D2C2972BF3344DDB24F9D064E63993F Ref B: BL2AA2010201045 Ref C: 2024-03-03T21:17:11Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed9b5fe1-a517-4c16-bd01-44a2eb77f668?api-version=2024-02-15-preview&t=638450974324737237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I_IuJDW8mXetXUv25Wcrjb-7v_va_dOUsVIQ9kTIFGOX1gbgcsLEbEsdSVVSpM-d2vdpZjWd1c5fx5OryJ4GAjA3jQQzQTVlcmGemm6f8JnJBiJnAt-T-ov2jr1XTJi6mlBQBpkpG90iVjIaaOSO_mCfXe6amgmZ3cHcqpYMmmF0iN3R3DK_0dvg3RYoNloUVp6bEPcBtG_sH6Veu2YzCmPuQ2UIx9iScxyNaVoU_WGlZjABbPOGsEmT-E3tVAynrqpKiYxXVbqH3sz0St2afwvaU-dFKQrSJXKZTvYE_5mbUSmUjkwEdM-Q5ECIknnyQh9QyCU6fkyPIoJHwHSsUw&h=QJ5dY6JFTyPMdMHElS1d3byzYFIM4Ct7iNwH3lLf3Js + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2E5C1472B4E14F0A9C363F777485E02B Ref B: BL2AA2010202031 Ref C: 2024-03-03T21:17:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed9b5fe1-a517-4c16-bd01-44a2eb77f668?api-version=2024-02-15-preview&t=638450974324737237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I_IuJDW8mXetXUv25Wcrjb-7v_va_dOUsVIQ9kTIFGOX1gbgcsLEbEsdSVVSpM-d2vdpZjWd1c5fx5OryJ4GAjA3jQQzQTVlcmGemm6f8JnJBiJnAt-T-ov2jr1XTJi6mlBQBpkpG90iVjIaaOSO_mCfXe6amgmZ3cHcqpYMmmF0iN3R3DK_0dvg3RYoNloUVp6bEPcBtG_sH6Veu2YzCmPuQ2UIx9iScxyNaVoU_WGlZjABbPOGsEmT-E3tVAynrqpKiYxXVbqH3sz0St2afwvaU-dFKQrSJXKZTvYE_5mbUSmUjkwEdM-Q5ECIknnyQh9QyCU6fkyPIoJHwHSsUw&h=QJ5dY6JFTyPMdMHElS1d3byzYFIM4Ct7iNwH3lLf3Js + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 506ABCCA8BA9483F8B226BDA1B88D52F Ref B: BL2AA2030104029 Ref C: 2024-03-03T21:17:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"TTkOAK8mNJ8=","_ts":1709500637,"_self":"dbs/TTkOAA==/colls/TTkOAK8mNJ8=/","_etag":"\"00006402-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1127' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E9154DF043184DC3BED7DFC201B21E56 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:17:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"TTkOAK8mNJ8=","_ts":1709500637,"_self":"dbs/TTkOAA==/colls/TTkOAK8mNJ8=/","_etag":"\"00006402-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1127' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 111C30E216204E7D9128D288C38C30C8 Ref B: BL2AA2030101017 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"TTkOAK8mNJ8=","_ts":1709500637,"_self":"dbs/TTkOAA==/colls/TTkOAK8mNJ8=/","_etag":"\"00006402-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1127' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 64CD631BD7944933B4C1C3F590644A43 Ref B: BL2AA2030104049 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/invalid?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 7a44d25b-d9a3-11ee-b574-000d3a1e0e23, Request URI: /apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/a80e31c0-2360-4fc6-81a7-4a617a14a791/partitions/8518bba5-b789-45ba-95c6-fc83805794e5/replicas/133536483071045053s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:17:45.1994949Z, RequestEndTime: + 2024-03-03T21:17:45.2014706Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:16:51.8502640Z\\\",\\\"cpu\\\":0.487,\\\"memory\\\":471897840.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1738,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":302},{\\\"dateUtc\\\":\\\"2024-03-03T21:17:01.8605628Z\\\",\\\"cpu\\\":0.963,\\\"memory\\\":471875164.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1225,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":300},{\\\"dateUtc\\\":\\\"2024-03-03T21:17:11.8707054Z\\\",\\\"cpu\\\":0.276,\\\"memory\\\":471890300.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0937,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":300},{\\\"dateUtc\\\":\\\"2024-03-03T21:17:21.8808034Z\\\",\\\"cpu\\\":0.408,\\\"memory\\\":471854652.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0901,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":300},{\\\"dateUtc\\\":\\\"2024-03-03T21:17:31.8912343Z\\\",\\\"cpu\\\":0.324,\\\"memory\\\":471839020.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0455,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":299},{\\\"dateUtc\\\":\\\"2024-03-03T21:17:41.9014746Z\\\",\\\"cpu\\\":0.255,\\\"memory\\\":471826156.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0885,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":299}]}\\r\\nRequestStart: + 2024-03-03T21:17:45.1997099Z; ResponseTime: 2024-03-03T21:17:45.2014536Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.7:11000/apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/a80e31c0-2360-4fc6-81a7-4a617a14a791/partitions/8518bba5-b789-45ba-95c6-fc83805794e5/replicas/133536483071045053s, + LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.229, ActivityId: + 7a44d25b-d9a3-11ee-b574-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:17:43 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:17:43 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:17:43 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:17:43 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:45.1995586Z\\\", + \\\"durationInMs\\\": 0.018},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:45.1995766Z\\\", \\\"durationInMs\\\": + 0.0172},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:45.1995938Z\\\", + \\\"durationInMs\\\": 0.1017},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:45.1996955Z\\\", \\\"durationInMs\\\": 0.54},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:45.2002355Z\\\", + \\\"durationInMs\\\": 0.1168},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:45.2003523Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:17:43.4072533Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:17:43.4072868Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:17:43.4077391Z\\\"},\\\"requestSizeInBytes\\\":484,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:17:45.1997770Z; + ResponseTime: 2024-03-03T21:17:45.2014706Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.10:11000/apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/a80e31c0-2360-4fc6-81a7-4a617a14a791/partitions/8518bba5-b789-45ba-95c6-fc83805794e5/replicas/133536483071045055s, + LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.332, ActivityId: + 7a44d25b-d9a3-11ee-b574-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:17:43 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:17:43 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:17:43 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:17:43 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:45.1997127Z\\\", + \\\"durationInMs\\\": 0.0059},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:45.1997186Z\\\", \\\"durationInMs\\\": + 0.006},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:45.1997246Z\\\", + \\\"durationInMs\\\": 0.0452},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:45.1997698Z\\\", \\\"durationInMs\\\": 1.1509},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:45.2009207Z\\\", + \\\"durationInMs\\\": 0.0993},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:45.2010200Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:17:43.4048934Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:17:43.4049162Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:17:43.4056415Z\\\"},\\\"requestSizeInBytes\\\":484,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000004/colls/invalid, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7065' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 082B648FCE434F928A0C6659747649A2 Ref B: BL2AA2010204051 Ref C: 2024-03-03T21:17:45Z' + status: + code: 404 + message: NotFound +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000002","properties":{"resource":{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/pk"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"TTkOAK8mNJ8=","_ts":1709500637,"_self":"dbs/TTkOAA==/colls/TTkOAK8mNJ8=/","_etag":"\"00006402-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1026' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C0FD7F423D674B33ACA222B99161AAA8 Ref B: BL2AA2010202007 Ref C: 2024-03-03T21:17:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1ab287-7302-463d-ae65-cb4e48a22f8a?api-version=2023-11-15&t=638450974662356959&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=T3-ug8vVysQVftlbw2dNEP8dOktWSxHWTGZxRAoff2i1qxZ-AdLKPGjDPCvDMfiRSOy8zgLeSi7liBxM_LlchJopOsXazZnNSVVnz5wHt1_67sescYp733T2fVE0gjuzSxpXV3QyUDPvT0WRfu02X-bVosnFcyncU7Qpk_wFEd6gNkKvzUMp8iYXxW6mtIRdNm-yMDDdb2J0iz1C8F6x1X0Y4OGPLr-I-iBnEcN4Sm3yk9U1VuuMv700Ym9R6vp8o4ecVB8Ro5lR4rreOfGwAKHnZPWzRsjg35MYk4flXcWGj_U6l6Jbz3xSzl1Df3zZSjS8KUw85U7CqIJbvnUdug&h=garQm0ewfqU1GSPQMzVz4nK7g1aKQEt8q7afEYoZuAY + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:45 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000004/containers/cli000002/operationResults/7b1ab287-7302-463d-ae65-cb4e48a22f8a?api-version=2023-11-15&t=638450974662356959&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=aOw3giiHkI9DbuZ1gldPz8vSqse2WoU1w8HEMSXpxg5fgit3WLbQrWN8r9bts9qmwVEjIgApAZguwiiS_qmbGSSs1YZuFRmxYoAbv3EUaoY7XS9QWAayD-3mpYIsMURPaev1KjRLbb4DrgOAgCJvB_7t0z1TYcaHDXybEPzbxqPOx8Ym1Se-dNd_4ZkB8Cbgj2s1QI2gdkTzUHGKwG4WKot1iNLuBt3bVa23us8JauCecKz3qJNcDUZt0cqpp0m8R_4FXWmWtCjzlH5l4K2FnQaq7AA-qX1KdC5uvdCBdZUXzU6dpeT_B9S6lCxHXne0FJ_eLzpQ5dzuAcwGboapCg&h=OCZE0WSPzi7UHHQcVPSr_cViKvXboqBdyfUDzJ25GbQ + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: BB2C064B3E18453AA8C0ED24D70C736A Ref B: BL2AA2010201051 Ref C: 2024-03-03T21:17:45Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1ab287-7302-463d-ae65-cb4e48a22f8a?api-version=2023-11-15&t=638450974662356959&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=T3-ug8vVysQVftlbw2dNEP8dOktWSxHWTGZxRAoff2i1qxZ-AdLKPGjDPCvDMfiRSOy8zgLeSi7liBxM_LlchJopOsXazZnNSVVnz5wHt1_67sescYp733T2fVE0gjuzSxpXV3QyUDPvT0WRfu02X-bVosnFcyncU7Qpk_wFEd6gNkKvzUMp8iYXxW6mtIRdNm-yMDDdb2J0iz1C8F6x1X0Y4OGPLr-I-iBnEcN4Sm3yk9U1VuuMv700Ym9R6vp8o4ecVB8Ro5lR4rreOfGwAKHnZPWzRsjg35MYk4flXcWGj_U6l6Jbz3xSzl1Df3zZSjS8KUw85U7CqIJbvnUdug&h=garQm0ewfqU1GSPQMzVz4nK7g1aKQEt8q7afEYoZuAY + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B483B2169F7D428C963A1C64CAE38012 Ref B: BL2AA2010201021 Ref C: 2024-03-03T21:17:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1ab287-7302-463d-ae65-cb4e48a22f8a?api-version=2023-11-15&t=638450974662356959&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=T3-ug8vVysQVftlbw2dNEP8dOktWSxHWTGZxRAoff2i1qxZ-AdLKPGjDPCvDMfiRSOy8zgLeSi7liBxM_LlchJopOsXazZnNSVVnz5wHt1_67sescYp733T2fVE0gjuzSxpXV3QyUDPvT0WRfu02X-bVosnFcyncU7Qpk_wFEd6gNkKvzUMp8iYXxW6mtIRdNm-yMDDdb2J0iz1C8F6x1X0Y4OGPLr-I-iBnEcN4Sm3yk9U1VuuMv700Ym9R6vp8o4ecVB8Ro5lR4rreOfGwAKHnZPWzRsjg35MYk4flXcWGj_U6l6Jbz3xSzl1Df3zZSjS8KUw85U7CqIJbvnUdug&h=garQm0ewfqU1GSPQMzVz4nK7g1aKQEt8q7afEYoZuAY + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A3162F4A14B543A4B7C4CA5BDC0C312A Ref B: BL2AA2030104045 Ref C: 2024-03-03T21:18:16Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database.yaml new file mode 100644 index 00000000000..b415f6704e4 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_database.yaml @@ -0,0 +1,1108 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_database000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001","name":"cli_test_cosmosdb_sql_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_database","date":"2024-03-03T21:18:19Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '414' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:18:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D3A496866A1F4308A3F817F240C1BBED Ref B: BL2AA2030102031 Ref C: 2024-03-03T21:18:20Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:18:24.9318468Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"41f6a705-b195-48fc-98ca-cc00be3bc60d","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:18:24.9318468Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:18:24.9318468Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:18:24.9318468Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:18:24.9318468Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5600e9a-5cdd-4b73-bdc4-65dd917e6ae6?api-version=2024-02-15-preview&t=638450975065403103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e0vpdEVvGNoq7WUvtt2Xw0Ni89Kt_Djy6fw1wXzGOXTyhY376gWJxBwMYUaklgOktM9Rhbo56VszKNrEinQx2ELfFGcml6mKZb4zFGmlJkxUzn3v7cRiIrpMfMSA4kk3qkWxoTaASgCtYXWLmh08BawE6IYDrziqUE0q2V4SmxVpLCAz9uUM4jdaH9GlUxEgaBQ_oWuclxW24l_rv6IMm1yxOCQ_0GTf67HkPn-3btnJlLCAfb-ZDuBZai3D3-IQAc8O8769M4XEaGQ0XJL1jPI_B-d--sbr6TQQC7IH-bXAn57QjBsjLqJhATGsjldlVeNbfUXEeuEB1XLkYi7Fdw&h=GcReE5xnQ1g3-Ynjbi2h0Ap9tkjf1YKq3r1RDlxLOU0 + cache-control: + - no-store, no-cache + content-length: + - '2665' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:25 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/a5600e9a-5cdd-4b73-bdc4-65dd917e6ae6?api-version=2024-02-15-preview&t=638450975065559428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QSwc9I7Z3jk23y67n9U0USfWRTrrZIyxKuLsBvtKW5j2muThFMsaQg2OP0zf1QBrslYc9Q_iKi27ynM32frFuV693GiHLUWL5TbWrqLKFkMzetufYan8Fvzdtm-5wjDRkugPtT0NNFlz9RQGt4WzSxAqSQg9tSx-j9yIWzytD2oG70N0nHahn3S_Tl84Fxi3JRefyObMBzM8P5X2bzMvEiVl_Z1OtpXsSZKljZvx-B-znXWJKwBJd7pBlgcKmIc7pVU336-2vzhe1-3c6w95dmmqPCKcVQOhQE5nsV0tg_09sCEvNlq5Tum_ZjmeyXHjh2P2meCoyRhTpJU9BSU6wA&h=PhRHSHzedgjKd_9BkdBXxzKBjGK7JB1s79FIGcNXZA8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 37FDAD84F71F448AA8D4E8C4A80582F7 Ref B: BL2AA2030104049 Ref C: 2024-03-03T21:18:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5600e9a-5cdd-4b73-bdc4-65dd917e6ae6?api-version=2024-02-15-preview&t=638450975065403103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e0vpdEVvGNoq7WUvtt2Xw0Ni89Kt_Djy6fw1wXzGOXTyhY376gWJxBwMYUaklgOktM9Rhbo56VszKNrEinQx2ELfFGcml6mKZb4zFGmlJkxUzn3v7cRiIrpMfMSA4kk3qkWxoTaASgCtYXWLmh08BawE6IYDrziqUE0q2V4SmxVpLCAz9uUM4jdaH9GlUxEgaBQ_oWuclxW24l_rv6IMm1yxOCQ_0GTf67HkPn-3btnJlLCAfb-ZDuBZai3D3-IQAc8O8769M4XEaGQ0XJL1jPI_B-d--sbr6TQQC7IH-bXAn57QjBsjLqJhATGsjldlVeNbfUXEeuEB1XLkYi7Fdw&h=GcReE5xnQ1g3-Ynjbi2h0Ap9tkjf1YKq3r1RDlxLOU0 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CC03AF13F4A14477A250995E7090C9AD Ref B: BL2AA2030104045 Ref C: 2024-03-03T21:18:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5600e9a-5cdd-4b73-bdc4-65dd917e6ae6?api-version=2024-02-15-preview&t=638450975065403103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e0vpdEVvGNoq7WUvtt2Xw0Ni89Kt_Djy6fw1wXzGOXTyhY376gWJxBwMYUaklgOktM9Rhbo56VszKNrEinQx2ELfFGcml6mKZb4zFGmlJkxUzn3v7cRiIrpMfMSA4kk3qkWxoTaASgCtYXWLmh08BawE6IYDrziqUE0q2V4SmxVpLCAz9uUM4jdaH9GlUxEgaBQ_oWuclxW24l_rv6IMm1yxOCQ_0GTf67HkPn-3btnJlLCAfb-ZDuBZai3D3-IQAc8O8769M4XEaGQ0XJL1jPI_B-d--sbr6TQQC7IH-bXAn57QjBsjLqJhATGsjldlVeNbfUXEeuEB1XLkYi7Fdw&h=GcReE5xnQ1g3-Ynjbi2h0Ap9tkjf1YKq3r1RDlxLOU0 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BFDEA1DC3CC447E89022B5E90EC0CF65 Ref B: BL2AA2010205007 Ref C: 2024-03-03T21:18:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5600e9a-5cdd-4b73-bdc4-65dd917e6ae6?api-version=2024-02-15-preview&t=638450975065403103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e0vpdEVvGNoq7WUvtt2Xw0Ni89Kt_Djy6fw1wXzGOXTyhY376gWJxBwMYUaklgOktM9Rhbo56VszKNrEinQx2ELfFGcml6mKZb4zFGmlJkxUzn3v7cRiIrpMfMSA4kk3qkWxoTaASgCtYXWLmh08BawE6IYDrziqUE0q2V4SmxVpLCAz9uUM4jdaH9GlUxEgaBQ_oWuclxW24l_rv6IMm1yxOCQ_0GTf67HkPn-3btnJlLCAfb-ZDuBZai3D3-IQAc8O8769M4XEaGQ0XJL1jPI_B-d--sbr6TQQC7IH-bXAn57QjBsjLqJhATGsjldlVeNbfUXEeuEB1XLkYi7Fdw&h=GcReE5xnQ1g3-Ynjbi2h0Ap9tkjf1YKq3r1RDlxLOU0 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AC7520BE740C4675B66D4278A2CC6129 Ref B: BL2AA2030102049 Ref C: 2024-03-03T21:19:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5600e9a-5cdd-4b73-bdc4-65dd917e6ae6?api-version=2024-02-15-preview&t=638450975065403103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e0vpdEVvGNoq7WUvtt2Xw0Ni89Kt_Djy6fw1wXzGOXTyhY376gWJxBwMYUaklgOktM9Rhbo56VszKNrEinQx2ELfFGcml6mKZb4zFGmlJkxUzn3v7cRiIrpMfMSA4kk3qkWxoTaASgCtYXWLmh08BawE6IYDrziqUE0q2V4SmxVpLCAz9uUM4jdaH9GlUxEgaBQ_oWuclxW24l_rv6IMm1yxOCQ_0GTf67HkPn-3btnJlLCAfb-ZDuBZai3D3-IQAc8O8769M4XEaGQ0XJL1jPI_B-d--sbr6TQQC7IH-bXAn57QjBsjLqJhATGsjldlVeNbfUXEeuEB1XLkYi7Fdw&h=GcReE5xnQ1g3-Ynjbi2h0Ap9tkjf1YKq3r1RDlxLOU0 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 63E035C7A02547A190C5C4928CC1DD3E Ref B: BL2AA2010202051 Ref C: 2024-03-03T21:19:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5600e9a-5cdd-4b73-bdc4-65dd917e6ae6?api-version=2024-02-15-preview&t=638450975065403103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e0vpdEVvGNoq7WUvtt2Xw0Ni89Kt_Djy6fw1wXzGOXTyhY376gWJxBwMYUaklgOktM9Rhbo56VszKNrEinQx2ELfFGcml6mKZb4zFGmlJkxUzn3v7cRiIrpMfMSA4kk3qkWxoTaASgCtYXWLmh08BawE6IYDrziqUE0q2V4SmxVpLCAz9uUM4jdaH9GlUxEgaBQ_oWuclxW24l_rv6IMm1yxOCQ_0GTf67HkPn-3btnJlLCAfb-ZDuBZai3D3-IQAc8O8769M4XEaGQ0XJL1jPI_B-d--sbr6TQQC7IH-bXAn57QjBsjLqJhATGsjldlVeNbfUXEeuEB1XLkYi7Fdw&h=GcReE5xnQ1g3-Ynjbi2h0Ap9tkjf1YKq3r1RDlxLOU0 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D3E5AB9609304DB4803D5DF7EB93D5E0 Ref B: BL2AA2030103023 Ref C: 2024-03-03T21:20:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5600e9a-5cdd-4b73-bdc4-65dd917e6ae6?api-version=2024-02-15-preview&t=638450975065403103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e0vpdEVvGNoq7WUvtt2Xw0Ni89Kt_Djy6fw1wXzGOXTyhY376gWJxBwMYUaklgOktM9Rhbo56VszKNrEinQx2ELfFGcml6mKZb4zFGmlJkxUzn3v7cRiIrpMfMSA4kk3qkWxoTaASgCtYXWLmh08BawE6IYDrziqUE0q2V4SmxVpLCAz9uUM4jdaH9GlUxEgaBQ_oWuclxW24l_rv6IMm1yxOCQ_0GTf67HkPn-3btnJlLCAfb-ZDuBZai3D3-IQAc8O8769M4XEaGQ0XJL1jPI_B-d--sbr6TQQC7IH-bXAn57QjBsjLqJhATGsjldlVeNbfUXEeuEB1XLkYi7Fdw&h=GcReE5xnQ1g3-Ynjbi2h0Ap9tkjf1YKq3r1RDlxLOU0 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B437876E8AED4AE59C91C37323E78521 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:20:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:20:23.4057327Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"41f6a705-b195-48fc-98ca-cc00be3bc60d","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:20:23.4057327Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:20:23.4057327Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:20:23.4057327Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:20:23.4057327Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3023' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3EA10FB8FE224289B476798788DA1E3D Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:20:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:20:23.4057327Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"41f6a705-b195-48fc-98ca-cc00be3bc60d","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:20:23.4057327Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:20:23.4057327Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:20:23.4057327Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:20:23.4057327Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3023' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 36B5BFAB430F40C4981095A83C79A2E8 Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:20:57Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/047ce466-4edf-4b6d-959c-f71975e54b36?api-version=2023-11-15&t=638450976593554374&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jSNLvaR1jlgUl43JK_oeYD0F6vpPBrbvkRz1oaCqe-EWF-7PNlc3ZJruNEivYiCnF57S7abP-IAT92u9trOxvQN0iUXcZbDiNXBZYz-SoQKY9n95n8LGKGjNaZl2jVtI-5ghDcXP90ij8RYQRNyWtpmvXRyQPkXUaWOM_KVlvRVCC8wUDRkEtOzHERnIbXqXudioRQl1Qt7wP2PWV_4dhjVwdBLDyqXP13jzmKAQGrt1T4mZZssWNjmnI6CVRHbZrtDm1jhJtMx2cgins1PtUj_Oiq1V5v-_YhTLxStq7ia6L6l25cZOf3oWriHvk1L_Q6xr5g6DVWhEF3YS8NNc6w&h=LIqOUeDTAef8VgHhu82VD4ZMriNv8uZuBS6EdK6jCrY + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:58 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/047ce466-4edf-4b6d-959c-f71975e54b36?api-version=2023-11-15&t=638450976593710640&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=oJYsj990vk1DEVtErwtl4ofvufI7HPsLAsPIG4sMAdIVao-vMJDh-Zub1pEB6GUgskTM2maUUeQoTGun8UFbupXO8X8JEbn-735oU8A9xs43l7A663rET9jGMC7CzrIo09eCkx0Q8FiVIiGCcmW7peSLQCAzgc4cAUL2ZFDlQsbaOd_rqE6MqfgOi-Y88cprPHsvvR3Sv6VfYHFhRXRNhEVw-F8dY5iZEDRHR4oTYzLjh5f8tQL8ow-wllcdosVAt0aLJts7kMmDwflG4bHJgRKUkoUkPXUasH7OjGOG4uB7QN5RJKI9VNPtWnsSM7lK7g45MKUbKJeoYj-apWqjXQ&h=3xyjM-oOj3pSVMwqgmqXHUczSFrFMh_pSbStqKu_MJo + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: A64A1A0F49A9443F9E4CFB0678685AF9 Ref B: BL2AA2030102011 Ref C: 2024-03-03T21:20:58Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/047ce466-4edf-4b6d-959c-f71975e54b36?api-version=2023-11-15&t=638450976593554374&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jSNLvaR1jlgUl43JK_oeYD0F6vpPBrbvkRz1oaCqe-EWF-7PNlc3ZJruNEivYiCnF57S7abP-IAT92u9trOxvQN0iUXcZbDiNXBZYz-SoQKY9n95n8LGKGjNaZl2jVtI-5ghDcXP90ij8RYQRNyWtpmvXRyQPkXUaWOM_KVlvRVCC8wUDRkEtOzHERnIbXqXudioRQl1Qt7wP2PWV_4dhjVwdBLDyqXP13jzmKAQGrt1T4mZZssWNjmnI6CVRHbZrtDm1jhJtMx2cgins1PtUj_Oiq1V5v-_YhTLxStq7ia6L6l25cZOf3oWriHvk1L_Q6xr5g6DVWhEF3YS8NNc6w&h=LIqOUeDTAef8VgHhu82VD4ZMriNv8uZuBS6EdK6jCrY + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6D64FF2C7D5A46369891C17F204E9D5A Ref B: BL2AA2030101047 Ref C: 2024-03-03T21:20:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/047ce466-4edf-4b6d-959c-f71975e54b36?api-version=2023-11-15&t=638450976593554374&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jSNLvaR1jlgUl43JK_oeYD0F6vpPBrbvkRz1oaCqe-EWF-7PNlc3ZJruNEivYiCnF57S7abP-IAT92u9trOxvQN0iUXcZbDiNXBZYz-SoQKY9n95n8LGKGjNaZl2jVtI-5ghDcXP90ij8RYQRNyWtpmvXRyQPkXUaWOM_KVlvRVCC8wUDRkEtOzHERnIbXqXudioRQl1Qt7wP2PWV_4dhjVwdBLDyqXP13jzmKAQGrt1T4mZZssWNjmnI6CVRHbZrtDm1jhJtMx2cgins1PtUj_Oiq1V5v-_YhTLxStq7ia6L6l25cZOf3oWriHvk1L_Q6xr5g6DVWhEF3YS8NNc6w&h=LIqOUeDTAef8VgHhu82VD4ZMriNv8uZuBS6EdK6jCrY + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4461880F16DA4D38B49D341AE161A543 Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:21:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"zCQfAA==","_self":"dbs/zCQfAA==/","_etag":"\"00006b03-0000-0700-0000-65e4e9c00000\"","_colls":"colls/","_users":"users/","_ts":1709500864}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '463' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0EAD7A40460E4E60A5A69561B58035AB Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:21:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"zCQfAA==","_self":"dbs/zCQfAA==/","_etag":"\"00006b03-0000-0700-0000-65e4e9c00000\"","_colls":"colls/","_users":"users/","_ts":1709500864}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '463' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E925496240B94163B8BFAB2203B68622 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:21:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"zCQfAA==","_self":"dbs/zCQfAA==/","_etag":"\"00006b03-0000-0700-0000-65e4e9c00000\"","_colls":"colls/","_users":"users/","_ts":1709500864}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '463' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D99F8E16B23C4FB4AF421965B8B28E6F Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:21:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/invalid?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 012a04ba-d9a4-11ee-aac6-000d3a1e0e23, Request URI: /apps/eff2080e-ab59-4a90-b373-c71535284254/services/c387af45-423e-4174-aac6-ab0b560d5f57/partitions/ca4a66e5-c478-424b-9189-d738ba986131/replicas/133535148096887945s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:21:31.6109145Z, RequestEndTime: + 2024-03-03T21:21:31.6121009Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:20:37.7522664Z\\\",\\\"cpu\\\":0.598,\\\"memory\\\":477596700.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0871,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":202},{\\\"dateUtc\\\":\\\"2024-03-03T21:20:47.7625590Z\\\",\\\"cpu\\\":0.549,\\\"memory\\\":477993600.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1687,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":200},{\\\"dateUtc\\\":\\\"2024-03-03T21:20:57.7726540Z\\\",\\\"cpu\\\":0.408,\\\"memory\\\":477996188.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0989,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":200},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:07.7827451Z\\\",\\\"cpu\\\":0.189,\\\"memory\\\":477978128.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.108,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":200},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:17.7929882Z\\\",\\\"cpu\\\":0.397,\\\"memory\\\":478001628.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1317,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":200},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:27.8033414Z\\\",\\\"cpu\\\":0.234,\\\"memory\\\":477971400.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.141,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":200}]}\\r\\nRequestStart: + 2024-03-03T21:21:31.6110510Z; ResponseTime: 2024-03-03T21:21:31.6120919Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11300/apps/eff2080e-ab59-4a90-b373-c71535284254/services/c387af45-423e-4174-aac6-ab0b560d5f57/partitions/ca4a66e5-c478-424b-9189-d738ba986131/replicas/133535148096887945s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.236, ActivityId: + 012a04ba-d9a4-11ee-aac6-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:21:04 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:21:04 PM),(port: 11300 | status: Unknown + | lkt: 3/3/2024 9:21:04 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:21:04 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:31.6109696Z\\\", + \\\"durationInMs\\\": 0.0092},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:31.6109788Z\\\", \\\"durationInMs\\\": + 0.0022},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:31.6109810Z\\\", + \\\"durationInMs\\\": 0.0614},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:21:31.6110424Z\\\", \\\"durationInMs\\\": 0.6524},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:31.6116948Z\\\", + \\\"durationInMs\\\": 0.0652},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:21:31.6117600Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:21:31.5714745Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:21:31.5715002Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:21:31.6101761Z\\\"},\\\"requestSizeInBytes\\\":454,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:21:31.6111063Z; + ResponseTime: 2024-03-03T21:21:31.6121009Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.13:11000/apps/eff2080e-ab59-4a90-b373-c71535284254/services/c387af45-423e-4174-aac6-ab0b560d5f57/partitions/ca4a66e5-c478-424b-9189-d738ba986131/replicas/133535148096887946s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.236, ActivityId: + 012a04ba-d9a4-11ee-aac6-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:21:04 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:21:04 PM),(port: 11300 | status: Unknown + | lkt: 3/3/2024 9:21:04 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:21:04 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:31.6110531Z\\\", + \\\"durationInMs\\\": 0.0078},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:31.6110609Z\\\", \\\"durationInMs\\\": + 0.0013},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:31.6110622Z\\\", + \\\"durationInMs\\\": 0.0381},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:21:31.6111003Z\\\", \\\"durationInMs\\\": 0.6684},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:21:31.6117687Z\\\", + \\\"durationInMs\\\": 0.0511},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:21:31.6118198Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:21:31.5323285Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:21:31.5323432Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:21:31.5680926Z\\\"},\\\"requestSizeInBytes\\\":454,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/invalid, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7047' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 46E5B813A2A843D39E1F792B49B52028 Ref B: BL2AA2030103027 Ref C: 2024-03-03T21:21:31Z' + status: + code: 404 + message: NotFound +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"zCQfAA==","_self":"dbs/zCQfAA==/","_etag":"\"00006b03-0000-0700-0000-65e4e9c00000\"","_colls":"colls/","_users":"users/","_ts":1709500864}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '475' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 87C098D2E8B04CAB928FAF781F2BA3EA Ref B: BL2AA2010204003 Ref C: 2024-03-03T21:21:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4cad160d-5971-4a76-83ef-9852a2fdb7a0?api-version=2023-11-15&t=638450976925813922&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=N4Y1JaLwAnQH1frtXOVnG0NOd9LzTK7woSRyRwgbziUUvoPPvjfBVg-yvvIGVH825ZdkdhM5vDfmb46_CDqozyo_j3uOJs6wr-TQH4_Ey-5BSJLyZn35VmFsTys8jByI4Jgrty4KOLzKs4q9q7pSOUq142LEbxXi3hw53c5TOCTkxJAvXZ2OknMZ6gtrqzJlXl51_cM80YsdlE-CJwyFCbhTMVT6OsKY88zL2zl7NorqMehBiU0Z-pSTaiEjxypVu5e8cKmS9g2IMBXs8-_QqhGv0EN7ebJG-xd0IizPTQSzcsan63Cmvhj4g7BsGtpHxFFTGv38MOrnXVlvrcQt1A&h=b6W1Rkc_IX5GV0wkTtiuM7AwDKEBGojjCkR481-s4Us + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:31 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/4cad160d-5971-4a76-83ef-9852a2fdb7a0?api-version=2023-11-15&t=638450976925813922&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MRM7VGxZPCWmSAVjr5kW-c8un5Vs3LCGa0iMvCt6f0eRQeX_bql_qcBFb2mCipIXXs0MlP1lfRiIzIj_FY8cTll1_Vt964xtXY9NZWeSmp6HsgYe-r_ursnn4JjrBTBpNo1Mh2TeBEc4w03OE8AGaIHlrzUtx8JspmpolPAUG2xcaw_jOPqOt0tww7Lj4a4q8A21BOMg6Ec549UBAnUny8Co4S2EmQap4BXiNw0aNBEy7Ucywjk2H4729x9tA-JCVAmWjywNSqHAo5dXwO4hUWbWJYdsuYjuJxsiIl-xpAa6h-8lJ632ExYnXHZcXy767pICudnNU1SWIEaqPA6F9A&h=edr4D5yaLK9UOB9cvT87IdvOrRtSloERXlMlSxLHsPk + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 6F31CCF1CF144A4D88262DE8AB3AE1B0 Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:21:32Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4cad160d-5971-4a76-83ef-9852a2fdb7a0?api-version=2023-11-15&t=638450976925813922&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=N4Y1JaLwAnQH1frtXOVnG0NOd9LzTK7woSRyRwgbziUUvoPPvjfBVg-yvvIGVH825ZdkdhM5vDfmb46_CDqozyo_j3uOJs6wr-TQH4_Ey-5BSJLyZn35VmFsTys8jByI4Jgrty4KOLzKs4q9q7pSOUq142LEbxXi3hw53c5TOCTkxJAvXZ2OknMZ6gtrqzJlXl51_cM80YsdlE-CJwyFCbhTMVT6OsKY88zL2zl7NorqMehBiU0Z-pSTaiEjxypVu5e8cKmS9g2IMBXs8-_QqhGv0EN7ebJG-xd0IizPTQSzcsan63Cmvhj4g7BsGtpHxFFTGv38MOrnXVlvrcQt1A&h=b6W1Rkc_IX5GV0wkTtiuM7AwDKEBGojjCkR481-s4Us + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5B860A3B1323404E9DB05E8291B76AEF Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:21:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4cad160d-5971-4a76-83ef-9852a2fdb7a0?api-version=2023-11-15&t=638450976925813922&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=N4Y1JaLwAnQH1frtXOVnG0NOd9LzTK7woSRyRwgbziUUvoPPvjfBVg-yvvIGVH825ZdkdhM5vDfmb46_CDqozyo_j3uOJs6wr-TQH4_Ey-5BSJLyZn35VmFsTys8jByI4Jgrty4KOLzKs4q9q7pSOUq142LEbxXi3hw53c5TOCTkxJAvXZ2OknMZ6gtrqzJlXl51_cM80YsdlE-CJwyFCbhTMVT6OsKY88zL2zl7NorqMehBiU0Z-pSTaiEjxypVu5e8cKmS9g2IMBXs8-_QqhGv0EN7ebJG-xd0IizPTQSzcsan63Cmvhj4g7BsGtpHxFFTGv38MOrnXVlvrcQt1A&h=b6W1Rkc_IX5GV0wkTtiuM7AwDKEBGojjCkR481-s4Us + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:03 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 955F9BC8420E428A9F83DCB862D3B505 Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:22:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 146be834-d9a4-11ee-a5ec-000d3a1e0e23, Request URI: /apps/eff2080e-ab59-4a90-b373-c71535284254/services/c387af45-423e-4174-aac6-ab0b560d5f57/partitions/ca4a66e5-c478-424b-9189-d738ba986131/replicas/133535148096887945s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:22:03.9800894Z, RequestEndTime: + 2024-03-03T21:22:03.9821056Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:21:04.1707422Z\\\",\\\"cpu\\\":0.651,\\\"memory\\\":474211884.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1206,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":210},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:14.1807326Z\\\",\\\"cpu\\\":1.280,\\\"memory\\\":474198984.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1395,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":208},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:24.1909497Z\\\",\\\"cpu\\\":0.405,\\\"memory\\\":474199080.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0477,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":208},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:34.2011526Z\\\",\\\"cpu\\\":0.465,\\\"memory\\\":474186720.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0474,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":208},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:44.2113433Z\\\",\\\"cpu\\\":0.489,\\\"memory\\\":474179008.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.106,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":208},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:54.2214805Z\\\",\\\"cpu\\\":0.541,\\\"memory\\\":474122360.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.171,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":208}]}\\r\\nRequestStart: + 2024-03-03T21:22:03.9802254Z; ResponseTime: 2024-03-03T21:22:03.9820988Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11300/apps/eff2080e-ab59-4a90-b373-c71535284254/services/c387af45-423e-4174-aac6-ab0b560d5f57/partitions/ca4a66e5-c478-424b-9189-d738ba986131/replicas/133535148096887945s, + LSN: 12, GlobalCommittedLsn: 12, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#12, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.567, ActivityId: + 146be834-d9a4-11ee-a5ec-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:21:30 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:21:30 PM),(port: 11300 | status: Unknown + | lkt: 3/3/2024 9:21:30 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:21:30 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:03.9801378Z\\\", + \\\"durationInMs\\\": 0.0082},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:03.9801460Z\\\", \\\"durationInMs\\\": + 0.0024},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:03.9801484Z\\\", + \\\"durationInMs\\\": 0.0651},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:03.9802135Z\\\", \\\"durationInMs\\\": 1.4377},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:03.9816512Z\\\", + \\\"durationInMs\\\": 0.1847},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:03.9818359Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:22:03.9030427Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:22:03.9030607Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:22:03.9403597Z\\\"},\\\"requestSizeInBytes\\\":464,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:22:03.9802756Z; + ResponseTime: 2024-03-03T21:22:03.9821056Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.13:11000/apps/eff2080e-ab59-4a90-b373-c71535284254/services/c387af45-423e-4174-aac6-ab0b560d5f57/partitions/ca4a66e5-c478-424b-9189-d738ba986131/replicas/133535148096887946s, + LSN: 12, GlobalCommittedLsn: 12, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#12, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.216, ActivityId: + 146be834-d9a4-11ee-a5ec-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:21:30 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:21:30 PM),(port: 11300 | status: Unknown + | lkt: 3/3/2024 9:21:30 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:21:30 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:03.9802274Z\\\", + \\\"durationInMs\\\": 0.0047},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:03.9802321Z\\\", \\\"durationInMs\\\": + 0.001},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:03.9802331Z\\\", + \\\"durationInMs\\\": 0.0364},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:03.9802695Z\\\", \\\"durationInMs\\\": 0.437},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:03.9807065Z\\\", + \\\"durationInMs\\\": 0.0592},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:03.9807657Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:22:03.9421571Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:22:03.9421756Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:22:03.9795475Z\\\"},\\\"requestSizeInBytes\\\":464,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7047' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:03 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4B9C61444C8344C7860F58668ED7578A Ref B: BL2AA2010201047 Ref C: 2024-03-03T21:22:03Z' + status: + code: 404 + message: NotFound +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore.yaml new file mode 100644 index 00000000000..8dc024e6d0b --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore.yaml @@ -0,0 +1,8356 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001","name":"cli_test_cosmosdb_sql_normal_database_prov_container_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_normal_database_prov_container_restore","date":"2024-03-03T21:13:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0E4E24B94F324343B0FAFA273AB9C928 Ref B: BL2AA2030101007 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:13:35.2311139Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:13:35.2311139Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:13:35.2311139Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.2311139Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.2311139Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169461615&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fx1oQdfj1NVva65MsrqC38kMeutPVYPNZn9XE5Sot77jjISyb0jZ7vsw02S2utYjXZuKSu8PAeNMq0e5rS6O9jHV2gAvSSjRH6dKTsZTF1b2OPabBANPQizegRAeqlCTO7Eggx7wPy_SemKqTGpfU3NHircYsykufaWbKH1r47mS2KcqWBt7i10sHO5Vg2b_eqmm1lvetcHjnOPFujU5QboyW1_zpuXGuXiY0y8fpxziyvOHaYRyapnSrLDeS4X0QZGXqiXZaE9Y-UTHipKmjijS3iE7WvPhUyB0g_DuQh8STtNppVgfKTHLelXe1bWsdLzVXPMls4tGgPCglRnhgQ&h=At_y_otYU9ZzVGQZAonylGt6k1mHZuVh_BcW9LuMdqg + cache-control: + - no-store, no-cache + content-length: + - '2695' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169617845&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=VkKh0G19nRd0Gx5MmYd-AaGgSIpR7IuSgyDqPn3FPLg8NfE0KJ3-9RSzEKqTPgEFNz1Al-fDa4IMp8ypEdb18OOuop5qPlLiILd_Hi5YDp-Pfu-__y2f_uU95g5XrjB9K3a3ansxA-Tc-N7PM-yhlU5NI5so1BNDks6GepfNZBVFT-ig1-WZdqfWwpIrrVrK39lpkM-bYaWBTQmfdVXSy8wnajOJfqRRlW7ctZlHHz0Af1_c5zjXDfHjFYxfikucVfD6gIEu-3MEoWc2UnkEuuAj3lxf7p3GmkpPam1q7ykfhsE06CBI1bISZPl4X2RN2wvrgrbpak1gh4ZwWBysnw&h=8nRtlzn6w5QkVhakHnPjB4z6uWVb-CmEh9Q10OUZyj4 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 25CC5A4E25964E72AC8556E657B69915 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169461615&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fx1oQdfj1NVva65MsrqC38kMeutPVYPNZn9XE5Sot77jjISyb0jZ7vsw02S2utYjXZuKSu8PAeNMq0e5rS6O9jHV2gAvSSjRH6dKTsZTF1b2OPabBANPQizegRAeqlCTO7Eggx7wPy_SemKqTGpfU3NHircYsykufaWbKH1r47mS2KcqWBt7i10sHO5Vg2b_eqmm1lvetcHjnOPFujU5QboyW1_zpuXGuXiY0y8fpxziyvOHaYRyapnSrLDeS4X0QZGXqiXZaE9Y-UTHipKmjijS3iE7WvPhUyB0g_DuQh8STtNppVgfKTHLelXe1bWsdLzVXPMls4tGgPCglRnhgQ&h=At_y_otYU9ZzVGQZAonylGt6k1mHZuVh_BcW9LuMdqg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C9A3D86DF4854493A02D397427C86737 Ref B: BL2AA2030102011 Ref C: 2024-03-03T21:13:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169461615&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fx1oQdfj1NVva65MsrqC38kMeutPVYPNZn9XE5Sot77jjISyb0jZ7vsw02S2utYjXZuKSu8PAeNMq0e5rS6O9jHV2gAvSSjRH6dKTsZTF1b2OPabBANPQizegRAeqlCTO7Eggx7wPy_SemKqTGpfU3NHircYsykufaWbKH1r47mS2KcqWBt7i10sHO5Vg2b_eqmm1lvetcHjnOPFujU5QboyW1_zpuXGuXiY0y8fpxziyvOHaYRyapnSrLDeS4X0QZGXqiXZaE9Y-UTHipKmjijS3iE7WvPhUyB0g_DuQh8STtNppVgfKTHLelXe1bWsdLzVXPMls4tGgPCglRnhgQ&h=At_y_otYU9ZzVGQZAonylGt6k1mHZuVh_BcW9LuMdqg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E6E5B2F0BD4246A9A81A6CADE01C991B Ref B: BL2AA2030102037 Ref C: 2024-03-03T21:14:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169461615&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fx1oQdfj1NVva65MsrqC38kMeutPVYPNZn9XE5Sot77jjISyb0jZ7vsw02S2utYjXZuKSu8PAeNMq0e5rS6O9jHV2gAvSSjRH6dKTsZTF1b2OPabBANPQizegRAeqlCTO7Eggx7wPy_SemKqTGpfU3NHircYsykufaWbKH1r47mS2KcqWBt7i10sHO5Vg2b_eqmm1lvetcHjnOPFujU5QboyW1_zpuXGuXiY0y8fpxziyvOHaYRyapnSrLDeS4X0QZGXqiXZaE9Y-UTHipKmjijS3iE7WvPhUyB0g_DuQh8STtNppVgfKTHLelXe1bWsdLzVXPMls4tGgPCglRnhgQ&h=At_y_otYU9ZzVGQZAonylGt6k1mHZuVh_BcW9LuMdqg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B6C5D69C68214C04BD1E8B7A40ED2795 Ref B: BL2AA2030101037 Ref C: 2024-03-03T21:14:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169461615&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fx1oQdfj1NVva65MsrqC38kMeutPVYPNZn9XE5Sot77jjISyb0jZ7vsw02S2utYjXZuKSu8PAeNMq0e5rS6O9jHV2gAvSSjRH6dKTsZTF1b2OPabBANPQizegRAeqlCTO7Eggx7wPy_SemKqTGpfU3NHircYsykufaWbKH1r47mS2KcqWBt7i10sHO5Vg2b_eqmm1lvetcHjnOPFujU5QboyW1_zpuXGuXiY0y8fpxziyvOHaYRyapnSrLDeS4X0QZGXqiXZaE9Y-UTHipKmjijS3iE7WvPhUyB0g_DuQh8STtNppVgfKTHLelXe1bWsdLzVXPMls4tGgPCglRnhgQ&h=At_y_otYU9ZzVGQZAonylGt6k1mHZuVh_BcW9LuMdqg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C45E86B1B2764286BC27CED495B7FF9E Ref B: BL2AA2010204003 Ref C: 2024-03-03T21:15:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169461615&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fx1oQdfj1NVva65MsrqC38kMeutPVYPNZn9XE5Sot77jjISyb0jZ7vsw02S2utYjXZuKSu8PAeNMq0e5rS6O9jHV2gAvSSjRH6dKTsZTF1b2OPabBANPQizegRAeqlCTO7Eggx7wPy_SemKqTGpfU3NHircYsykufaWbKH1r47mS2KcqWBt7i10sHO5Vg2b_eqmm1lvetcHjnOPFujU5QboyW1_zpuXGuXiY0y8fpxziyvOHaYRyapnSrLDeS4X0QZGXqiXZaE9Y-UTHipKmjijS3iE7WvPhUyB0g_DuQh8STtNppVgfKTHLelXe1bWsdLzVXPMls4tGgPCglRnhgQ&h=At_y_otYU9ZzVGQZAonylGt6k1mHZuVh_BcW9LuMdqg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5EC9DE6720D2445ABB3098BCE558607A Ref B: BL2AA2030104023 Ref C: 2024-03-03T21:15:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169461615&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fx1oQdfj1NVva65MsrqC38kMeutPVYPNZn9XE5Sot77jjISyb0jZ7vsw02S2utYjXZuKSu8PAeNMq0e5rS6O9jHV2gAvSSjRH6dKTsZTF1b2OPabBANPQizegRAeqlCTO7Eggx7wPy_SemKqTGpfU3NHircYsykufaWbKH1r47mS2KcqWBt7i10sHO5Vg2b_eqmm1lvetcHjnOPFujU5QboyW1_zpuXGuXiY0y8fpxziyvOHaYRyapnSrLDeS4X0QZGXqiXZaE9Y-UTHipKmjijS3iE7WvPhUyB0g_DuQh8STtNppVgfKTHLelXe1bWsdLzVXPMls4tGgPCglRnhgQ&h=At_y_otYU9ZzVGQZAonylGt6k1mHZuVh_BcW9LuMdqg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7F81A835EF1145EB86EC57CBC5F35F0B Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df50b5a8-8765-4097-affc-ebdb72f45407?api-version=2024-02-15-preview&t=638450972169461615&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fx1oQdfj1NVva65MsrqC38kMeutPVYPNZn9XE5Sot77jjISyb0jZ7vsw02S2utYjXZuKSu8PAeNMq0e5rS6O9jHV2gAvSSjRH6dKTsZTF1b2OPabBANPQizegRAeqlCTO7Eggx7wPy_SemKqTGpfU3NHircYsykufaWbKH1r47mS2KcqWBt7i10sHO5Vg2b_eqmm1lvetcHjnOPFujU5QboyW1_zpuXGuXiY0y8fpxziyvOHaYRyapnSrLDeS4X0QZGXqiXZaE9Y-UTHipKmjijS3iE7WvPhUyB0g_DuQh8STtNppVgfKTHLelXe1bWsdLzVXPMls4tGgPCglRnhgQ&h=At_y_otYU9ZzVGQZAonylGt6k1mHZuVh_BcW9LuMdqg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 63850B5072914F78A8E8B7DB470B91CC Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:37.5207524Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:37.5207524Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:37.5207524Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:37.5207524Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:37.5207524Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3053' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 17800AD0E4C94DBC89F4C3A1C388CE65 Ref B: BL2AA2010205021 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:37.5207524Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:37.5207524Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:37.5207524Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:37.5207524Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:37.5207524Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3053' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4C4F05095D504F5D9074A70E97B6ACD7 Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7beddb22-b36b-46ec-8dd8-a0a55656607e?api-version=2023-11-15&t=638450973998308481&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M5PURPYx2JMByVTZu_CetICRU4ALXkXH0L7f_Gee4R912PDPnpMps9Thbfl08ruaQdObOOLSaTbY0LQSwlE2vHavp3v-lAQ6Ct4_nj2_PN_zKU2xFbpVgar7tgcUP6E__RQdgRuZyOoi2irzecSxVkbsk8hhkcptl7hI0PW0jJ0HVmHKgbhAy2ES0399Ku7LSJMtQJztg3O2vuehOgrwq9JYKllbMcovs7pVtBD6--vQoeK9NhMuGQGGPrWSF0p-0kBFht3-DuNEyntmOMeeLkXXLy__gDhTsmRhmj8fSX-9Vnr76HAD4rxDvdvIvv4BbKheV3ZtuKLD6TB3ORs7wQ&h=_Z0a5_luF79WSC01EXh3gz3NDLt5kXoru0OxZ1YKfrM + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/7beddb22-b36b-46ec-8dd8-a0a55656607e?api-version=2023-11-15&t=638450973998308481&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dK2p-wA7rbnWmGbA5yKRjfSpAFz09-ZBZPlmu8FzeZov7xvn-MR4sGpXpyj_cSfpD0n0xIvMBKpLKNRs6yq69Hsrc_WWwvliTBtIGVk1rQQEdw0EHxh-v7c-WZr2OeF7LRXYrZRDtr6FLsft_1jKkZGi9PKNEat91PTKW9btr2shZAs0ist5-Eyg7CGQ3KSOFlCp1qZMLNwuiLp3HPLHddCMUjfQ6z4BjaPKs4ARz7nQ7Kx0LNyfYfkDZhcB0c945k3hvOB9OKLhIxiAEV7KFak3rx9wopD3s__WU17cMl9WZIuFREy-g7G3R5I6PeC4iWBYRZ8eVhp39EPnJmh9bA&h=e0bCqhcopXByp2c7gWdoyfeb0ID1CPSIbJeiosqWkhE + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 09C1F81721E4467BBD73B9E24B2A9079 Ref B: BL2AA2030101023 Ref C: 2024-03-03T21:16:39Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7beddb22-b36b-46ec-8dd8-a0a55656607e?api-version=2023-11-15&t=638450973998308481&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M5PURPYx2JMByVTZu_CetICRU4ALXkXH0L7f_Gee4R912PDPnpMps9Thbfl08ruaQdObOOLSaTbY0LQSwlE2vHavp3v-lAQ6Ct4_nj2_PN_zKU2xFbpVgar7tgcUP6E__RQdgRuZyOoi2irzecSxVkbsk8hhkcptl7hI0PW0jJ0HVmHKgbhAy2ES0399Ku7LSJMtQJztg3O2vuehOgrwq9JYKllbMcovs7pVtBD6--vQoeK9NhMuGQGGPrWSF0p-0kBFht3-DuNEyntmOMeeLkXXLy__gDhTsmRhmj8fSX-9Vnr76HAD4rxDvdvIvv4BbKheV3ZtuKLD6TB3ORs7wQ&h=_Z0a5_luF79WSC01EXh3gz3NDLt5kXoru0OxZ1YKfrM + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7A2EB6974C2E426790DD5612A5AA9DBE Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:16:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7beddb22-b36b-46ec-8dd8-a0a55656607e?api-version=2023-11-15&t=638450973998308481&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M5PURPYx2JMByVTZu_CetICRU4ALXkXH0L7f_Gee4R912PDPnpMps9Thbfl08ruaQdObOOLSaTbY0LQSwlE2vHavp3v-lAQ6Ct4_nj2_PN_zKU2xFbpVgar7tgcUP6E__RQdgRuZyOoi2irzecSxVkbsk8hhkcptl7hI0PW0jJ0HVmHKgbhAy2ES0399Ku7LSJMtQJztg3O2vuehOgrwq9JYKllbMcovs7pVtBD6--vQoeK9NhMuGQGGPrWSF0p-0kBFht3-DuNEyntmOMeeLkXXLy__gDhTsmRhmj8fSX-9Vnr76HAD4rxDvdvIvv4BbKheV3ZtuKLD6TB3ORs7wQ&h=_Z0a5_luF79WSC01EXh3gz3NDLt5kXoru0OxZ1YKfrM + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7945C2CA15D9477C9EA955EEA3124456 Ref B: BL2AA2010204033 Ref C: 2024-03-03T21:17:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"m91ZAA==","_self":"dbs/m91ZAA==/","_etag":"\"00005e05-0000-0700-0000-65e4e8bd0000\"","_colls":"colls/","_users":"users/","_ts":1709500605}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '493' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 15996C929F3440438FA9F8E93F8B2C78 Ref B: BL2AA2010204045 Ref C: 2024-03-03T21:17:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 65f0fac7-d9a3-11ee-98c1-000d3a1e0e23, Request URI: /apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/2beafad5-6f1c-4729-8b6a-c1e2214acb28/partitions/f65ba131-7e19-4ae7-aefc-bd87edf5856c/replicas/133538175110213626s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:17:11.2998015Z, RequestEndTime: + 2024-03-03T21:17:11.3020933Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:16:12.0604222Z\\\",\\\"cpu\\\":1.674,\\\"memory\\\":477708584.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0817,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":331},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:22.0707093Z\\\",\\\"cpu\\\":1.570,\\\"memory\\\":477673456.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0413,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":334},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:32.0806644Z\\\",\\\"cpu\\\":0.645,\\\"memory\\\":477817544.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1628,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":334},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:42.0909610Z\\\",\\\"cpu\\\":0.844,\\\"memory\\\":477846284.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0414,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":334},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:52.1008422Z\\\",\\\"cpu\\\":0.333,\\\"memory\\\":478045292.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1163,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":333},{\\\"dateUtc\\\":\\\"2024-03-03T21:17:02.1111090Z\\\",\\\"cpu\\\":0.288,\\\"memory\\\":478059864.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0343,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":333}]}\\r\\nRequestStart: + 2024-03-03T21:17:11.3000858Z; ResponseTime: 2024-03-03T21:17:11.3020820Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11000/apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/2beafad5-6f1c-4729-8b6a-c1e2214acb28/partitions/f65ba131-7e19-4ae7-aefc-bd87edf5856c/replicas/133538175110213626s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.989, ActivityId: + 65f0fac7-d9a3-11ee-98c1-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11000 | status: Unknown | lkt: 3/3/2024 9:17:11 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:17:11 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:17:11 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:17:11 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.2999773Z\\\", + \\\"durationInMs\\\": 0.0118},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.2999891Z\\\", \\\"durationInMs\\\": + 0.0129},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.3000020Z\\\", + \\\"durationInMs\\\": 0.0743},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:11.3000763Z\\\", \\\"durationInMs\\\": 1.6215},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.3016978Z\\\", + \\\"durationInMs\\\": 0.1112},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:11.3018090Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:17:03.9922357Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:17:03.9922509Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:17:03.9939862Z\\\"},\\\"requestSizeInBytes\\\":490,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:17:11.3001761Z; + ResponseTime: 2024-03-03T21:17:11.3020933Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.11:11000/apps/3cffac68-230a-45cd-ac43-767a5bc4f1d6/services/2beafad5-6f1c-4729-8b6a-c1e2214acb28/partitions/f65ba131-7e19-4ae7-aefc-bd87edf5856c/replicas/133538175110213627s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.058, ActivityId: + 65f0fac7-d9a3-11ee-98c1-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11000 | status: Unknown | lkt: 3/3/2024 9:17:11 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:17:11 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:17:11 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:17:11 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.3000876Z\\\", + \\\"durationInMs\\\": 0.0047},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.3000923Z\\\", \\\"durationInMs\\\": + 0.0016},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.3000939Z\\\", + \\\"durationInMs\\\": 0.076},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:11.3001699Z\\\", \\\"durationInMs\\\": 1.3862},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:17:11.3015561Z\\\", + \\\"durationInMs\\\": 0.0594},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:17:11.3016155Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:17:11.2123053Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:17:11.2123430Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:17:11.2500535Z\\\"},\\\"requestSizeInBytes\\\":490,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7070' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A273549360124E3D84A00E557C36FD3A Ref B: BL2AA2010205053 Ref C: 2024-03-03T21:17:10Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], + "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": ["/path/to/key1"]}, + {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": {"mode": "lastWriterWins", + "conflictResolutionPath": "/path"}}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + Content-Length: + - '479' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/549c1048-ae1a-48ef-bffc-1d005ee78483?api-version=2024-02-15-preview&t=638450974323643103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PoVJj0TlF5amXEGUajDiFvNEVAizVK7acLS1LfAHd1WLIayEjEXGUEO4HyCxic0mtw81w-g6fDssYPJ1KehRSpZ6-WiN4wqTorrtaAJZ5_078wdxFlcgW0H3iPqbFd6TkljQZBS2aYP_EJyhlq2kR8IBOMsCTmFeQ8szXM0SMwEPqSjgJOYZ5WlvOs0Zw4TUzkKBijtb71lJJozd_Ug9xLMOjM3dqXing386olg03h06hLfyOEOqlzeoisj3I3osDPnLwFoCLQy-takOTADTUalnFq-csKTnh5-tMC5Mbn2KnCBtF_Q_xC3Y2x4QKlz3c5egNVMtLe-LGBdu_vuc9A&h=e40Z0EAo4h29_tpU5uq274FRWWljfGi3qa6lGAU3LXg + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/549c1048-ae1a-48ef-bffc-1d005ee78483?api-version=2024-02-15-preview&t=638450974323799371&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=T79bJ8YS9t1mpBLHgxPV36zcWb7hkOkrC1HeUTvb653h7M1GwnAT4r0d32hcSo4pjjtSZdczs0uLqCv6aW9JI5ec04bLeTwBkYVJ5KqW_LgpnDNkbkhG7wEdS5j9WyspjJNKYAEmLXLR9xhXd9yk5sFuT0PVhA2k3yuXZ1ytnw5Xbu8qxMR1J_7AfRgkvz-VTpy0xM0wOw-OLYSWcQgqCiNjQflTdMXkoVOR3PgL0XCRYxjpCmULbHRWKVvRIDrgpBhuabdALVZ-4PeNWQH55-pY4l7bXXf0V4hpUM609ofXbaUgPf8HTmMB6tROuZTZF66Cpc6z-kiFNCow0kHgeg&h=KZC1Vqhfw2GOGqkpPdtzisImFVxZMiRnpR7QGXo8uiw + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 99496735C57944E88D1C002B1B2CC2B9 Ref B: BL2AA2030103019 Ref C: 2024-03-03T21:17:11Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/549c1048-ae1a-48ef-bffc-1d005ee78483?api-version=2024-02-15-preview&t=638450974323643103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PoVJj0TlF5amXEGUajDiFvNEVAizVK7acLS1LfAHd1WLIayEjEXGUEO4HyCxic0mtw81w-g6fDssYPJ1KehRSpZ6-WiN4wqTorrtaAJZ5_078wdxFlcgW0H3iPqbFd6TkljQZBS2aYP_EJyhlq2kR8IBOMsCTmFeQ8szXM0SMwEPqSjgJOYZ5WlvOs0Zw4TUzkKBijtb71lJJozd_Ug9xLMOjM3dqXing386olg03h06hLfyOEOqlzeoisj3I3osDPnLwFoCLQy-takOTADTUalnFq-csKTnh5-tMC5Mbn2KnCBtF_Q_xC3Y2x4QKlz3c5egNVMtLe-LGBdu_vuc9A&h=e40Z0EAo4h29_tpU5uq274FRWWljfGi3qa6lGAU3LXg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 062B74978E504D70A05484F164F8E0F3 Ref B: BL2AA2030101051 Ref C: 2024-03-03T21:17:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/549c1048-ae1a-48ef-bffc-1d005ee78483?api-version=2024-02-15-preview&t=638450974323643103&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PoVJj0TlF5amXEGUajDiFvNEVAizVK7acLS1LfAHd1WLIayEjEXGUEO4HyCxic0mtw81w-g6fDssYPJ1KehRSpZ6-WiN4wqTorrtaAJZ5_078wdxFlcgW0H3iPqbFd6TkljQZBS2aYP_EJyhlq2kR8IBOMsCTmFeQ8szXM0SMwEPqSjgJOYZ5WlvOs0Zw4TUzkKBijtb71lJJozd_Ug9xLMOjM3dqXing386olg03h06hLfyOEOqlzeoisj3I3osDPnLwFoCLQy-takOTADTUalnFq-csKTnh5-tMC5Mbn2KnCBtF_Q_xC3Y2x4QKlz3c5egNVMtLe-LGBdu_vuc9A&h=e40Z0EAo4h29_tpU5uq274FRWWljfGi3qa6lGAU3LXg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 14D6A9D85C164150911BD4F12F6D3C0F Ref B: BL2AA2030102005 Ref C: 2024-03-03T21:17:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709500637,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00006105-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1262' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0445F6544BBB42959CC346E1BC65C1F4 Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:17:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709500637,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00006105-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1262' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C29A38A486A04BBE86DBDFD8E74ECDE7 Ref B: BL2AA2030102037 Ref C: 2024-03-03T21:17:43Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}, {"path": "/\"_etag\"/?"}]}, "partitionKey": + {"paths": ["/thePartitionKey"], "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": + [{"paths": ["/path/to/key1"]}, {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": + {"mode": "lastWriterWins", "conflictResolutionPath": "/path", "conflictResolutionProcedure": + ""}}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + Content-Length: + - '540' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/51578521-a9f9-4546-843f-d0f7b17e32ab?api-version=2024-02-15-preview&t=638450974645207136&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AGwuBuD7d-YW4U9iWaqDCOjuzMxhIda4BKC1k8mVdJ8RROpFzFMnew4cVEcn1SslQ0LeXCJF4LIMesQU2-yMlpjOlLdGymodA6Dg6SG9aTU72dxkXtcdM8VaGDfcCw8PG6vERyI-9m4VLJvL2gcAZ_-Y9dvT52QKr0NW-gFkK2-07ohNyqC-KBrDNfiCnrcUQLowVMhGjlWA1ovL-Q-Mv1HW6bQaIMyZplZMkGrLNCfNgCLuiw3c7QDr8JBzuNtNlHa5e7Hsc_V5n_SQLjo-7tJPcRm9vNc-UgnqSN5Yr0aXhCo9SvIZ7StPOzhv4YIl_uRbqAAvvGWisaotmaEFsA&h=w_C2RDuLxs2U3RzX-qZ992dl8CoTnTBdWMW0IP9qHYo + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/51578521-a9f9-4546-843f-d0f7b17e32ab?api-version=2024-02-15-preview&t=638450974645363049&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CITs1iGtQw1Tii4hlqdwTwXE9gzJ1ug6b52wCg-TKo0_5NZmU_MvQ0ulS1hyRASrlaNw4wQwA0GWIt4RPTTSpLoYsZ0T3ee7HQ0TZ0nbMjDVV_VW-ea-NOKahnZuXLyO88fiGLgDibgWMrWfoZ3tk72svMqxruuxdzdNf6-teoAXBXWAxbtnEGQcRis7aOQ80ypKdUegbg7Hahe08OTmeALjb1aGdOL8FmZhZMDgI2cQ1mEXN3FZ1AsPENMZVjKZVRT6I7dJ4IG0NkQ0wIAmWsFe0CC20VbNpNXrGkzbYTAF2LcvVESk_F5c-AIzGaPk2u1u9aBckKQHm8VlnsB2hw&h=2rV88yuosZzaIUer_ui2q0ZE-P9oSguVo2dUVETxyrU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 1D3F40F1379C4B369E2D68BED8A03BBD Ref B: BL2AA2030104033 Ref C: 2024-03-03T21:17:43Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/51578521-a9f9-4546-843f-d0f7b17e32ab?api-version=2024-02-15-preview&t=638450974645207136&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AGwuBuD7d-YW4U9iWaqDCOjuzMxhIda4BKC1k8mVdJ8RROpFzFMnew4cVEcn1SslQ0LeXCJF4LIMesQU2-yMlpjOlLdGymodA6Dg6SG9aTU72dxkXtcdM8VaGDfcCw8PG6vERyI-9m4VLJvL2gcAZ_-Y9dvT52QKr0NW-gFkK2-07ohNyqC-KBrDNfiCnrcUQLowVMhGjlWA1ovL-Q-Mv1HW6bQaIMyZplZMkGrLNCfNgCLuiw3c7QDr8JBzuNtNlHa5e7Hsc_V5n_SQLjo-7tJPcRm9vNc-UgnqSN5Yr0aXhCo9SvIZ7StPOzhv4YIl_uRbqAAvvGWisaotmaEFsA&h=w_C2RDuLxs2U3RzX-qZ992dl8CoTnTBdWMW0IP9qHYo + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 10C8F3D52C7942BB8589C9037F7BAC45 Ref B: BL2AA2010203039 Ref C: 2024-03-03T21:17:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/51578521-a9f9-4546-843f-d0f7b17e32ab?api-version=2024-02-15-preview&t=638450974645207136&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AGwuBuD7d-YW4U9iWaqDCOjuzMxhIda4BKC1k8mVdJ8RROpFzFMnew4cVEcn1SslQ0LeXCJF4LIMesQU2-yMlpjOlLdGymodA6Dg6SG9aTU72dxkXtcdM8VaGDfcCw8PG6vERyI-9m4VLJvL2gcAZ_-Y9dvT52QKr0NW-gFkK2-07ohNyqC-KBrDNfiCnrcUQLowVMhGjlWA1ovL-Q-Mv1HW6bQaIMyZplZMkGrLNCfNgCLuiw3c7QDr8JBzuNtNlHa5e7Hsc_V5n_SQLjo-7tJPcRm9vNc-UgnqSN5Yr0aXhCo9SvIZ7StPOzhv4YIl_uRbqAAvvGWisaotmaEFsA&h=w_C2RDuLxs2U3RzX-qZ992dl8CoTnTBdWMW0IP9qHYo + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9577BC1498E54B42A8C1C679CE00F9A9 Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:18:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709500637,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00006105-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1262' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8C68ADF55A65457094ACDE4154E19C07 Ref B: BL2AA2010203037 Ref C: 2024-03-03T21:18:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709500637,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00006105-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1262' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8751A61B1A6D47FDB9E0BAA514C720E6 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:18:15Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709500637,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00006105-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1161' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D6347116E6FA4B3C831D984973D3B6FE Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:18:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709500637,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00006105-0000-0700-0000-65e4e8dd0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1264' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7801CDF3A76F4107B8108F801616D14D Ref B: BL2AA2010203007 Ref C: 2024-03-03T21:23:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e218849-9fda-4cd0-94c0-310e6a24d803?api-version=2023-11-15&t=638450977977647516&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=J88SIEABmz1s706_m7b8gafueCdHxw1GheW1T7L_-OcLDg2RgoPcc_r_dllGN7toA8ktVW8FETz9kBCadylVg2Ju4eHeW4TMJi9T0xmWNnBYI3ShWNervPA1kZAGOQGfq1tGXnRM3OZ1L6jZci4YYur5uCv5eiZgOfO5XcqxJs1lp6UmKvMokUOPAE_AklPfC4onU6-EPC02vLI5Dees0SyoX4eQZpleLVD0KVY0pBW38jmyFNK84kBUMypkuCKP4K_s9vZi7NYqB5Jf4aLTGicBSJAwRhXfB53lnbz-DrRB6zxZ_I-IaE7i6bjmNAx_b71o4HeiyWYnPFx1JD89uA&h=BOVxyomO5QSj8r3uuDs9LYoqSaqYvrHaj6bRKVuw1B4 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:16 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/1e218849-9fda-4cd0-94c0-310e6a24d803?api-version=2023-11-15&t=638450977977803753&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=oKUs2x-E8eA1iYMOt-NGUv-TehJ0mmf-bXVdc-EwyU_lGeNvMHMpTPcke3oOlTHZPufC9Ow9T8D_r2v6o789zTo8OF4EKpnwLiTYKsrO4NVX0tMDcjQBAC88U4ABg9tCGmtd58Vr8oUgRvbAu8QH0FTTsvESmpnv6SlbdPXvq0vYcQb7z2lDORMTShZSvEz7CF6fS0_DmsfoaepeAVkn1Xj5ZURgRztJiKQ_gYe5_iPcUbrFHMIVQBj0aBYjfep6jWwiNgFpFHa5Q5C0RZAnhxCK9CA4c8aRbCRii2OnHn6opWxNSYVxPqS3yHD8iAP9w9G8q3FWeIwGU-6VN67j8w&h=9Gcdc3CAsyghoi53whoj7CTGAakEva1zfCQcAwg8sOc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 9B96A0E9CBB84B2D95522D004E9B2630 Ref B: BL2AA2030104035 Ref C: 2024-03-03T21:23:17Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e218849-9fda-4cd0-94c0-310e6a24d803?api-version=2023-11-15&t=638450977977647516&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=J88SIEABmz1s706_m7b8gafueCdHxw1GheW1T7L_-OcLDg2RgoPcc_r_dllGN7toA8ktVW8FETz9kBCadylVg2Ju4eHeW4TMJi9T0xmWNnBYI3ShWNervPA1kZAGOQGfq1tGXnRM3OZ1L6jZci4YYur5uCv5eiZgOfO5XcqxJs1lp6UmKvMokUOPAE_AklPfC4onU6-EPC02vLI5Dees0SyoX4eQZpleLVD0KVY0pBW38jmyFNK84kBUMypkuCKP4K_s9vZi7NYqB5Jf4aLTGicBSJAwRhXfB53lnbz-DrRB6zxZ_I-IaE7i6bjmNAx_b71o4HeiyWYnPFx1JD89uA&h=BOVxyomO5QSj8r3uuDs9LYoqSaqYvrHaj6bRKVuw1B4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 888892116ED648A3940D619A5889F071 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:23:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e218849-9fda-4cd0-94c0-310e6a24d803?api-version=2023-11-15&t=638450977977647516&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=J88SIEABmz1s706_m7b8gafueCdHxw1GheW1T7L_-OcLDg2RgoPcc_r_dllGN7toA8ktVW8FETz9kBCadylVg2Ju4eHeW4TMJi9T0xmWNnBYI3ShWNervPA1kZAGOQGfq1tGXnRM3OZ1L6jZci4YYur5uCv5eiZgOfO5XcqxJs1lp6UmKvMokUOPAE_AklPfC4onU6-EPC02vLI5Dees0SyoX4eQZpleLVD0KVY0pBW38jmyFNK84kBUMypkuCKP4K_s9vZi7NYqB5Jf4aLTGicBSJAwRhXfB53lnbz-DrRB6zxZ_I-IaE7i6bjmNAx_b71o4HeiyWYnPFx1JD89uA&h=BOVxyomO5QSj8r3uuDs9LYoqSaqYvrHaj6bRKVuw1B4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 40A7C49C31664680B5D3946C9BED806A Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:23:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 26365D0FE4ED442C940560D444EEFBC9 Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:23:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:23:50Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:23: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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:23:52Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:23:49Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:23:49Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:23:49Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:23:50Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:23:49Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:23:49Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '426436' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:23:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 5E9F795F10BF4D83AF9181E8FB1AA62E Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:23:49Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb", + "restoreTimestampInUtc": "2024-03-03T21:18:16.576531Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:55 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZHrYz3fsBypiQuiN3RcV_mX-rFer9zHz1aUShoFUfG2Q9COahWVv8HQKLb49Qr-Pib66A142OEMnbmEC29JCA9tH63GNYo7cOUrPN_HxR2EJKBqdTWfyxaZdkOs88PxWGzDPH4naaUhhI0w_E0E1iUA1BzGQk_dOauXgOAQGmvr9ADWK2MO0vkyGSyx9H2YTM3cVdlMGacqB7BipHTsdhU1KUJ_dlKutfoM4N6B7dTQGMHjt1FPhkj0Psph6trn0841wdNn5hVSdjnBl1FWg_oEDAya2rjqq3ZhQ32P6mj7rAtgI92R-9twi5BANSIrx592YzX32Vr3ADiJAKBU69g&h=ReHf5vK4D2fuMj2Ky1AIURIe8446LkzTd9Mi9776Sgc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 3CE51F8B1CCE442B82D5E84AD3354352 Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:23:54Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E90CC20DD7C44BC7AADB2CA602D7C654 Ref B: BL2AA2030104023 Ref C: 2024-03-03T21:23:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BD230A7A0ED0487B90818B3E81918372 Ref B: BL2AA2010204003 Ref C: 2024-03-03T21:24:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7AD7A843714D45C19B6B1F535731D546 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:24:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:25:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 36CF5E596F8F40418E9BA3BE17551D12 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:25:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:25:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 07A3C5E861A44417835322788661E538 Ref B: BL2AA2010205003 Ref C: 2024-03-03T21:25:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9F53E4DC721D43CD9773CD88FC4F7DA2 Ref B: BL2AA2030103023 Ref C: 2024-03-03T21:26:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 143EEB54035442C8A6C16448EB3CC32B Ref B: BL2AA2010203051 Ref C: 2024-03-03T21:26:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1BD18294EB9249F0956CC4C527CCE41D Ref B: BL2AA2010204037 Ref C: 2024-03-03T21:27:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 660E3FE6155B41E4839C0182F5DD96EC Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:27:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1EDEC278FCFA49E5A869EEAAE38414A3 Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:28:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3DD72679D62849F4B3265CC186E56357 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:28:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CD81090C9BF24CA7A4D36FED3692479B Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:29:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:57 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1B6C3460550F44FC8D97758B31B56BFE Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:29:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EF910F7E2411471CB11067C3A961C928 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:30:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71d98604-ad67-4aee-818a-84bbf56dbe18?api-version=2024-02-15-preview&t=638450978358794657&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AWXRaVV_xeOzHTugcHn5uBP9WyUeUjBucXMCNuc6L2d7Gkc8WLqJpZ4b2dsRT0Ke1JoLgrGIx65YU-rMUwKfqSGuCjvXgy7sz433Uy8Y_3vck46MWA7-8d0PopW6nz84ND0b2610KQSySqxQabFk3wJzENbTa59glBY-jcgCr2WKe1o7ZomC-ztyWdVqZJ9YUK342sJC3_l_ldDM03qwMfgYUshsRtcpHtNYdXxCzEIj7vOIqp1kCjRqNM6tZ9A_rVlTYFUQsZjsmF4s4nY2DTTykF3iPs8RLZIXZ0e4b3eA3Pl1f9BxNFxXyiY8Ogby9qr3nT48Ei0O0yltTuLkuA&h=adwUl9bvIoVmg6yitgpOXlRUo6ui90jvvlj0oNrWQqo + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D14B8E0BD39A4BCD8B209C0A310ADA5B Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:30:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"53357cda-d9a4-11ee-9c8d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:18:16.576531+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb"},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709501216,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00006f05-0000-0700-0000-65e4eb200000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 22B16227DF5E46DCA46F7460837CEC92 Ref B: BL2AA2030104035 Ref C: 2024-03-03T21:30:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"53357cda-d9a4-11ee-9c8d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:18:16.576531+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb"},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709501216,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00006f05-0000-0700-0000-65e4eb200000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1476' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E8F7390E05DD460E882D16F738568E96 Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:30:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec4e7b43-cb34-47cd-92f5-2e76191472fc?api-version=2023-11-15&t=638450982608433126&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=g90MZia8J8Za8QqIz5qh7uVPKTC2Mzyd89pwD8-QrvuRhj14HUZ42hsr3HhJELqQ-Y7MPs37g7fnNk6M-9Ekn31Ka-0HWot5x25omYOcPUlIIHevuDNrYb4NmeJXtEpaDeAfjqtk3KffqxSuZp1UNctchSvpqHKd5VGP_O0bTee-umcn52xQGg2WaJGzw9T5TLLcBwMXaCnV0i7glSoDMEfnIDi1iisQ945FdW5h9veyu-fWSAce8nzuZfVRrUytuFI8rKfguQtrzrkCWEoJGM0HyOJe6jNijX8oz24ZRqyqoI64-V2-Qav7xBNrk-h1njO3T2aK_8PYhET8srPYLw&h=nRL8PH0m99lE01ZhvSiTdw3jzVUq2n4qKJQDmlCQ-tc + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:00 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/ec4e7b43-cb34-47cd-92f5-2e76191472fc?api-version=2023-11-15&t=638450982608589385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HpPPsWTQ0T36--JlQYx30BTu8bvq4PAxPJ22ge28SZDY1FJJKJLL6gvJkpRVDDPzID9kOc0qmEkk9wbM72KgBKpOva5Dw0UTDxYXxoQhgO8giOYJQPpZuCOKIyJgpmBEAJRVuRex_2aUO49y0mfzPQkhFbYiRKHkhmzhkas_zPB5DX08diO3mrHt8VxK64NzP13pAKN_BzjTbfL2LT4DIA5pMg7VrudlH7e-CqZ4YIdpGzICxDPlu8yc2bn4gwLMNxb6D1CXVuoOjKMog5pZ-6YP280UIegfiMqCQFwz5s1m0MUP8bDG9NPsw7qvW7_KAqVz9fehRyiip5LwUPoyGA&h=6MqcyDKzMAknTOfWx6ZYlTnAlM8uBG-0agn2ysHpPF0 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 025941B4556F4CB88301F8E013C6DD2A Ref B: BL2AA2010203023 Ref C: 2024-03-03T21:31:00Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec4e7b43-cb34-47cd-92f5-2e76191472fc?api-version=2023-11-15&t=638450982608433126&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=g90MZia8J8Za8QqIz5qh7uVPKTC2Mzyd89pwD8-QrvuRhj14HUZ42hsr3HhJELqQ-Y7MPs37g7fnNk6M-9Ekn31Ka-0HWot5x25omYOcPUlIIHevuDNrYb4NmeJXtEpaDeAfjqtk3KffqxSuZp1UNctchSvpqHKd5VGP_O0bTee-umcn52xQGg2WaJGzw9T5TLLcBwMXaCnV0i7glSoDMEfnIDi1iisQ945FdW5h9veyu-fWSAce8nzuZfVRrUytuFI8rKfguQtrzrkCWEoJGM0HyOJe6jNijX8oz24ZRqyqoI64-V2-Qav7xBNrk-h1njO3T2aK_8PYhET8srPYLw&h=nRL8PH0m99lE01ZhvSiTdw3jzVUq2n4qKJQDmlCQ-tc + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 29E11BDF2F5547C39BA85611561D8108 Ref B: BL2AA2030102019 Ref C: 2024-03-03T21:31:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec4e7b43-cb34-47cd-92f5-2e76191472fc?api-version=2023-11-15&t=638450982608433126&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=g90MZia8J8Za8QqIz5qh7uVPKTC2Mzyd89pwD8-QrvuRhj14HUZ42hsr3HhJELqQ-Y7MPs37g7fnNk6M-9Ekn31Ka-0HWot5x25omYOcPUlIIHevuDNrYb4NmeJXtEpaDeAfjqtk3KffqxSuZp1UNctchSvpqHKd5VGP_O0bTee-umcn52xQGg2WaJGzw9T5TLLcBwMXaCnV0i7glSoDMEfnIDi1iisQ945FdW5h9veyu-fWSAce8nzuZfVRrUytuFI8rKfguQtrzrkCWEoJGM0HyOJe6jNijX8oz24ZRqyqoI64-V2-Qav7xBNrk-h1njO3T2aK_8PYhET8srPYLw&h=nRL8PH0m99lE01ZhvSiTdw3jzVUq2n4qKJQDmlCQ-tc + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0752310D10D54FB892177189132B5697 Ref B: BL2AA2010202017 Ref C: 2024-03-03T21:31:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D8635BF0A51E44469AFAD5DAC4692472 Ref B: BL2AA2030102049 Ref C: 2024-03-03T21:31:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:31:32Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:31:32Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:31:32Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:31:34Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:31:34Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:31:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:31:33Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:31:33Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:31:33Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:31:33Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:31:33Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:31:33Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:31:33Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:31:33Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:31:33Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:31:33Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428196' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:31:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: C436510B568B479AB9BDAEBA2B337D3F Ref B: BL2AA2030102011 Ref C: 2024-03-03T21:31:32Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb", + "restoreTimestampInUtc": "2024-03-03T21:18:16.576531Z"}, "createMode": "Restore"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + Content-Length: + - '337' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f238c7f-726f-46c0-a4b5-c504bd197929?api-version=2024-02-15-preview&t=638450982997438313&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ALeJnestXP_lat9gG-HB20l4fIC4HzFCvPBURPTkj-GtZK6Dh57x-GQbjXiJHWmDkFgpy8D-Qjlljc-zUl3F4o7O03xXWdl7-LWRiUxePRZ0BD3_Bw9HYVXviypWooDA_Nznj5TaZ3XOblV52fVeqGaw-r2Jr1DipekGJcY6AtLMTHfNayI2RbqN8cz0ofnpppofPMA9bXs_y2Mzd3yfu7AoKvxbwR4eiIfPf4jkRvo99tjV-7XHoxzTv4eM18crR0UX-Og2mswmBTw8CXzE3Hwg22-SUxsGw2BK37sv5gbWU7OZHHlyOOiQ5dmpwN_LJAgRclSMm_NIA_xqy955RQ&h=8-nG_ZHv-gEELSDIremwQL3vANkC81Dao8nddYiqXW8 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:39 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/0f238c7f-726f-46c0-a4b5-c504bd197929?api-version=2024-02-15-preview&t=638450982997438313&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LRM3Z2anuWSrEtBPZgsCvt9G75S8mBvq311td_UcBb5lLssbtjs7tp2CsB1DJHBaCrtCYKxpoOnd_Sz9Ltb0ccO74TBfazqamaR0cG5lmg0apah85ZhxgKpfdY5MpJgXgtIP-z9xiJSWGKdbB6r9h1V2G_7Hcsr2NtOXd3LMARXvOTbjc1Q4dXl7HNG_QVw9mxwHVkWGTejgvKf0lEw6HXRjRetpLS6kF9xPNQcqctGRRIN70ixbfKR41xd4jdK7v6Ye7mJt6OyvcVVBDI_mYbRH5tFpP6guuzPbs46MgdMyc3TDpvizQt459wXfWybGi4K8E660InhGMigA0mSYqA&h=4fgrWb2Ow4TVi6tajumKKnyjHqVC3mUNQSEYogW0ENg + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: B8429E6F586B4DC8883AB214B1C9E611 Ref B: BL2AA2030101047 Ref C: 2024-03-03T21:31:38Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f238c7f-726f-46c0-a4b5-c504bd197929?api-version=2024-02-15-preview&t=638450982997438313&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ALeJnestXP_lat9gG-HB20l4fIC4HzFCvPBURPTkj-GtZK6Dh57x-GQbjXiJHWmDkFgpy8D-Qjlljc-zUl3F4o7O03xXWdl7-LWRiUxePRZ0BD3_Bw9HYVXviypWooDA_Nznj5TaZ3XOblV52fVeqGaw-r2Jr1DipekGJcY6AtLMTHfNayI2RbqN8cz0ofnpppofPMA9bXs_y2Mzd3yfu7AoKvxbwR4eiIfPf4jkRvo99tjV-7XHoxzTv4eM18crR0UX-Og2mswmBTw8CXzE3Hwg22-SUxsGw2BK37sv5gbWU7OZHHlyOOiQ5dmpwN_LJAgRclSMm_NIA_xqy955RQ&h=8-nG_ZHv-gEELSDIremwQL3vANkC81Dao8nddYiqXW8 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 43DAACBAED3A42F6809AF4B39751057C Ref B: BL2AA2030101029 Ref C: 2024-03-03T21:31:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f238c7f-726f-46c0-a4b5-c504bd197929?api-version=2024-02-15-preview&t=638450982997438313&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ALeJnestXP_lat9gG-HB20l4fIC4HzFCvPBURPTkj-GtZK6Dh57x-GQbjXiJHWmDkFgpy8D-Qjlljc-zUl3F4o7O03xXWdl7-LWRiUxePRZ0BD3_Bw9HYVXviypWooDA_Nznj5TaZ3XOblV52fVeqGaw-r2Jr1DipekGJcY6AtLMTHfNayI2RbqN8cz0ofnpppofPMA9bXs_y2Mzd3yfu7AoKvxbwR4eiIfPf4jkRvo99tjV-7XHoxzTv4eM18crR0UX-Og2mswmBTw8CXzE3Hwg22-SUxsGw2BK37sv5gbWU7OZHHlyOOiQ5dmpwN_LJAgRclSMm_NIA_xqy955RQ&h=8-nG_ZHv-gEELSDIremwQL3vANkC81Dao8nddYiqXW8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 083CAF70384D4547AD9520607E4E244B Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:32:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f238c7f-726f-46c0-a4b5-c504bd197929?api-version=2024-02-15-preview&t=638450982997438313&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ALeJnestXP_lat9gG-HB20l4fIC4HzFCvPBURPTkj-GtZK6Dh57x-GQbjXiJHWmDkFgpy8D-Qjlljc-zUl3F4o7O03xXWdl7-LWRiUxePRZ0BD3_Bw9HYVXviypWooDA_Nznj5TaZ3XOblV52fVeqGaw-r2Jr1DipekGJcY6AtLMTHfNayI2RbqN8cz0ofnpppofPMA9bXs_y2Mzd3yfu7AoKvxbwR4eiIfPf4jkRvo99tjV-7XHoxzTv4eM18crR0UX-Og2mswmBTw8CXzE3Hwg22-SUxsGw2BK37sv5gbWU7OZHHlyOOiQ5dmpwN_LJAgRclSMm_NIA_xqy955RQ&h=8-nG_ZHv-gEELSDIremwQL3vANkC81Dao8nddYiqXW8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C5F0E2503CB04E289C74FA2525353F23 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:32:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f238c7f-726f-46c0-a4b5-c504bd197929?api-version=2024-02-15-preview&t=638450982997438313&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ALeJnestXP_lat9gG-HB20l4fIC4HzFCvPBURPTkj-GtZK6Dh57x-GQbjXiJHWmDkFgpy8D-Qjlljc-zUl3F4o7O03xXWdl7-LWRiUxePRZ0BD3_Bw9HYVXviypWooDA_Nznj5TaZ3XOblV52fVeqGaw-r2Jr1DipekGJcY6AtLMTHfNayI2RbqN8cz0ofnpppofPMA9bXs_y2Mzd3yfu7AoKvxbwR4eiIfPf4jkRvo99tjV-7XHoxzTv4eM18crR0UX-Og2mswmBTw8CXzE3Hwg22-SUxsGw2BK37sv5gbWU7OZHHlyOOiQ5dmpwN_LJAgRclSMm_NIA_xqy955RQ&h=8-nG_ZHv-gEELSDIremwQL3vANkC81Dao8nddYiqXW8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F51887BB95AA4756B61B46592D132B65 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:33:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f238c7f-726f-46c0-a4b5-c504bd197929?api-version=2024-02-15-preview&t=638450982997438313&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ALeJnestXP_lat9gG-HB20l4fIC4HzFCvPBURPTkj-GtZK6Dh57x-GQbjXiJHWmDkFgpy8D-Qjlljc-zUl3F4o7O03xXWdl7-LWRiUxePRZ0BD3_Bw9HYVXviypWooDA_Nznj5TaZ3XOblV52fVeqGaw-r2Jr1DipekGJcY6AtLMTHfNayI2RbqN8cz0ofnpppofPMA9bXs_y2Mzd3yfu7AoKvxbwR4eiIfPf4jkRvo99tjV-7XHoxzTv4eM18crR0UX-Og2mswmBTw8CXzE3Hwg22-SUxsGw2BK37sv5gbWU7OZHHlyOOiQ5dmpwN_LJAgRclSMm_NIA_xqy955RQ&h=8-nG_ZHv-gEELSDIremwQL3vANkC81Dao8nddYiqXW8 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AB5EF3BB249F47A1B4B02C25AB12D5FB Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:33:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"m91ZAA==","_self":"dbs/m91ZAA==/","_etag":"\"00007605-0000-0700-0000-65e4ec630000\"","_colls":"colls/","_users":"users/","_ts":1709501539}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '493' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B1BB03616404492ABC4A08B311384F4A Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:33:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"m91ZAA==","_self":"dbs/m91ZAA==/","_etag":"\"00007605-0000-0700-0000-65e4ec630000\"","_colls":"colls/","_users":"users/","_ts":1709501539}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '493' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E748F98F46CF41C6995BBA5DDF087AC6 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:33:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 08185B8F40F845AEBABF5A3D33D8497C Ref B: BL2AA2030103027 Ref C: 2024-03-03T21:33:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:33:42Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:33:42Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:33:42Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:33:44Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:33:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:33:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:33:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:33:43Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:33:43Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:33:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:33:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:33:43Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:33:44Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:33:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:33:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:33:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:33:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:33:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:33:43Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428196' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:33:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 932733BD4CEB42C0A71F2EBFEEE5CBD5 Ref B: BL2AA2010202009 Ref C: 2024-03-03T21:33:42Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb", + "restoreTimestampInUtc": "2024-03-03T21:18:16.576531Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:49 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296837862&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bNanMwf4PjnTdlHiVztU9by3B0mJ_3DmJwmxJwyUtKiBJZ8uRlwaUrZOiMwoPFWsEMt7YfbOArntAWs_lM5I2dxyei83guf2631lOe1U_om77JiUgkbxeTFSREVxG_1tUr1-6X9QzsYIkyw4mNKml_K9kGfbvEu1BG2n2FFbKKSnYSSsT0B286dopyu1uGF2KPT28oBMAaLfWL8Lu9LoQc-7cGRbPB8dXC9QlZ7Ba8IWgip4h8CUISfA_5uPIf6zYAN64XWn_aux8HKOHL_z9072grRGEZQDxvQ8Hus3wVzmS3dDgjuX4kYyOMZrm4NM2gETJRUD4QXt_TRqAmFPmA&h=0adFJqnRFDUwmGzEYeZV-pwzGO-CxlvbN7TorfaARv8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 6CB8B0816C5C4A0E82C66E235B4284C9 Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:33:48Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:49 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 40AEAF34FC174987BFB8D8672EFCFFD9 Ref B: BL2AA2010205007 Ref C: 2024-03-03T21:33:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:19 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C9A664801845472FB14A8771DD4CFA9A Ref B: BL2AA2030103049 Ref C: 2024-03-03T21:34:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D330098569EF4FBB945F6FA8895D5B55 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:34:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1612043A43C4402EB59E943103E8F9B5 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:35:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3CB2F43361CD4C5A826D044BEF4DEB64 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:35:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8CC7297A815546EA9051FEAF82D5BC4C Ref B: BL2AA2010202035 Ref C: 2024-03-03T21:36:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4B5CD3655ACB4E95AF5AE49382558155 Ref B: BL2AA2030101007 Ref C: 2024-03-03T21:36:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E9AE61D23B9F454E84AE7A4114126FD9 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:37:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9743B001416D49B1AA6676E9B3C51CF3 Ref B: BL2AA2010205007 Ref C: 2024-03-03T21:37:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EFAACDB4403E4400BB665B5EDE9FDAA5 Ref B: BL2AA2010202051 Ref C: 2024-03-03T21:38:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2AB4A6BFF96A4ACE88838E5F337A9304 Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:38:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 43A4DC89475D44C0B4CD99153F750C4F Ref B: BL2AA2010202009 Ref C: 2024-03-03T21:39:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FFE0B7E52EE4402DBC6E107FFDBDB2A8 Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:39:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4301BA5537BC4494BE1AA1D723278E85 Ref B: BL2AA2010201051 Ref C: 2024-03-03T21:40:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/815ee195-3b09-45b2-a10f-15f5985e787c?api-version=2024-02-15-preview&t=638450984296681623&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mYzbEMsFcIKgaAEWJHwzbjnveQ9tEe5oA05QZ9cAdrcGrk1Q7WZ0L3yo6ByWaPvxjmY2qM6P13676zFyJWgirbUMbRydrth9JF8UCxG-OdL0WEKCjdSJLkw5eo3KJObo3wW_sgDpKiwLFAIJ1haKFWRiKDYh8mFHG53HZCI9luBd_AL7-0YUNpuArJjxm2IFf6WTB54PxrRr09AiI6J3PEL_S-5sVlOm55wUEmp5UcW_aaIZYYQd5NeioMPpxlk8NyCjuFldnlauaBhsX6mW8Ekci6PbFFjRC1ghCZ6fnNHlQu7lnVxAA4yaN_7Ma4xJxuOMye2q_LeqiYddXlp5eQ&h=UmoAFoU5Y_Ww-8Vw0QXKhg_v-TyJeSFKsc1K4pxREOs + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 727C0E10D52349058E843A7AD7A5E47E Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:40:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"b51314b1-d9a5-11ee-946b-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:18:16.576531+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb"},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709501810,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00007c05-0000-0700-0000-65e4ed720000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:52 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 75C02A948BE94D8AA4BB77F78CDFAEF8 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:40:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"b51314b1-d9a5-11ee-946b-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:18:16.576531+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb"},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709501810,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00007c05-0000-0700-0000-65e4ed720000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1476' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:53 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CC248EFA086A4D12BD0E2EB4B6966631 Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:40:53Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"b51314b1-d9a5-11ee-946b-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:18:16.576531+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb"},"geospatialConfig":{"type":"Geography"},"_rid":"m91ZAMNkSC0=","_ts":1709501810,"_self":"dbs/m91ZAA==/colls/m91ZAMNkSC0=/","_etag":"\"00007c05-0000-0700-0000-65e4ed720000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:53 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C667353609374FC9AA064187CA0E98E7 Ref B: BL2AA2010205037 Ref C: 2024-03-03T21:40:54Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore_nt.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore_nt.yaml index d06ea162bb5..eea51f61de0 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore_nt.yaml +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_prov_container_restore_nt.yaml @@ -18,7 +18,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001","name":"cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_normal_database_prov_container_restore_nt","date":"2024-03-03T03:39:32Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001","name":"cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_normal_database_prov_container_restore_nt","date":"2024-03-03T21:40:56Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 03:39:35 GMT + - Sun, 03 Mar 2024 21:40:57 GMT expires: - '-1' pragma: @@ -39,7 +39,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B56B5D9F934547CD903FCE6CCDD0A0A7 Ref B: BL2AA2030101025 Ref C: 2024-03-03T03:39:35Z' + - 'Ref A: 6A8206EE469C4271A28FA85BE6E04030 Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:40:58Z' status: code: 200 message: OK @@ -71,14 +71,14 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004","name":"ntbrcli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T03:39:40.3505512Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a67d43a3-fe63-489c-9ab6-a33d637098d0","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:41:02.7212991Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"80da0b02-adc9-4364-8977-358cf987a2c6","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"ntbrcli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"ntbrcli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"ntbrcli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T03:39:40.3505512Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T03:39:40.3505512Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:39:40.3505512Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:39:40.3505512Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:41:02.7212991Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:41:02.7212991Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:02.7212991Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:41:02.7212991Z"}}},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fda4467d-c99f-46af-b7ef-5aa5a958457e?api-version=2024-02-15-preview&t=638450988642252313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QiplTuxxry25nNAeGpYhloCYRKDCJoei-S8SjnKFsSC9gCRWiD4ysCeh1YRm6DDCoFGz8mI2I1_7C6RE2dvF6pdqF0cVFCrWePg3z-O1AG6Kuz5WF7FGZasFK0ADWR3W_zLhotknIn-wzPJbPvwI1jHnpuYhP7GCCdvwtCANoidXFyrcXWZlM80rqpT0db4jWBD98KUcm7hThExZlzUwlOqtVclpyGzgqktzbr-tBL1Q1gPEaURHCwEkBxn5-aZ0NGrD7BQdjxz3pyS9wMzqucTvZJ5YttSj4cH5uE8c2v3IqI5SO0VbTLa_LkBfiJrWw5oNIgOz-iqMNUjloczMJA&h=95BrXN1sGJnp0G4BqYJXOUvgzPStvtxoPBhMzpizt9A cache-control: - no-store, no-cache content-length: @@ -86,9 +86,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:39:42 GMT + - Sun, 03 Mar 2024 21:41:03 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/operationResults/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=RuIhyJYEVVE4oxVEP3zGV-TnZEoiGvZ3uGdX9JJDDSRa0KU7c991kCCcwppLd22j0TJilIEgkUmNg-WhU3RwDIEaekFGFjqPC71JayCaiEG5YPZ2AuSpeh15oT_q9smlchxB0g-J88tCO9KEHyluoB1j_Bd8NNRXCyFK4sbE7vXgYoh3ugUS1KBhAQQX8fIq0SRxHbGXORIRIMTHyg8OuZ8gT2ijzSRGd_56YWnrL6CDtQMZl5hB52n87PeUD5CkjzBdbUGOS3Y8GiKwKYaDPWziat20JxAS3fXFkfFUnW1vHk04F0DgwFLoNUZsme-p6ZKnKj8SvX52yLDsa5HQ0Q&h=w7M8GIE1oSriLDLNMQd5KA5AMpqlwDuKuR212Tudbq8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/operationResults/fda4467d-c99f-46af-b7ef-5aa5a958457e?api-version=2024-02-15-preview&t=638450988642252313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U3yA6Y8TWX9tfzoBVQON57zI6GCUFm1yW3YL9jUUttWc5v5j3RxPZzmrXE8S9Aus6n3MT9njqPc6-fiYNkfNjd0JYtR-K7juGoJ7jNRdt02HhgIFNV8Ec7RXKGRF9npnW_uUxhNaIjNEAm71w_JrZPvroVz6pif2t9_73Zm8drPz50_wL7WLJq2BQuDXm56SnOgo8nSavFgqy04HYUCDXPvewU-p5HVIxaW0f6R5TiO7TrzqEqUn6tWXJghc_g3NS1SCvej4c8znzHsGCRztR0FyuwLE0G_1F8M7JAAISbwd6B50NFooxPG8X71wXrkhGCZec1msrEi54NTD-gxk3A&h=YLJ_PWgr_fXdaROddRycGJXOgS_qESBwy-p0CveGpRU pragma: - no-cache strict-transport-security: @@ -102,7 +102,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: A6ACDECDE6C24F6696832EE4C926FF73 Ref B: BL2AA2010204017 Ref C: 2024-03-03T03:39:36Z' + - 'Ref A: 9C5953B632C74E6480B7456F9A25B4CA Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:40:58Z' status: code: 200 message: Ok @@ -122,7 +122,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fda4467d-c99f-46af-b7ef-5aa5a958457e?api-version=2024-02-15-preview&t=638450988642252313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QiplTuxxry25nNAeGpYhloCYRKDCJoei-S8SjnKFsSC9gCRWiD4ysCeh1YRm6DDCoFGz8mI2I1_7C6RE2dvF6pdqF0cVFCrWePg3z-O1AG6Kuz5WF7FGZasFK0ADWR3W_zLhotknIn-wzPJbPvwI1jHnpuYhP7GCCdvwtCANoidXFyrcXWZlM80rqpT0db4jWBD98KUcm7hThExZlzUwlOqtVclpyGzgqktzbr-tBL1Q1gPEaURHCwEkBxn5-aZ0NGrD7BQdjxz3pyS9wMzqucTvZJ5YttSj4cH5uE8c2v3IqI5SO0VbTLa_LkBfiJrWw5oNIgOz-iqMNUjloczMJA&h=95BrXN1sGJnp0G4BqYJXOUvgzPStvtxoPBhMzpizt9A response: body: string: '{"status":"Enqueued"}' @@ -134,7 +134,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:39:42 GMT + - Sun, 03 Mar 2024 21:41:04 GMT pragma: - no-cache strict-transport-security: @@ -146,7 +146,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: AB98FCDF7EF741F08EEBB8603EA1A1C7 Ref B: BL2AA2010205005 Ref C: 2024-03-03T03:39:42Z' + - 'Ref A: 25051554B557438E82FA87F8D3F8A1E4 Ref B: MNZ221060609039 Ref C: 2024-03-03T21:41:04Z' status: code: 200 message: Ok @@ -166,7 +166,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fda4467d-c99f-46af-b7ef-5aa5a958457e?api-version=2024-02-15-preview&t=638450988642252313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QiplTuxxry25nNAeGpYhloCYRKDCJoei-S8SjnKFsSC9gCRWiD4ysCeh1YRm6DDCoFGz8mI2I1_7C6RE2dvF6pdqF0cVFCrWePg3z-O1AG6Kuz5WF7FGZasFK0ADWR3W_zLhotknIn-wzPJbPvwI1jHnpuYhP7GCCdvwtCANoidXFyrcXWZlM80rqpT0db4jWBD98KUcm7hThExZlzUwlOqtVclpyGzgqktzbr-tBL1Q1gPEaURHCwEkBxn5-aZ0NGrD7BQdjxz3pyS9wMzqucTvZJ5YttSj4cH5uE8c2v3IqI5SO0VbTLa_LkBfiJrWw5oNIgOz-iqMNUjloczMJA&h=95BrXN1sGJnp0G4BqYJXOUvgzPStvtxoPBhMzpizt9A response: body: string: '{"status":"Dequeued"}' @@ -178,7 +178,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:40:12 GMT + - Sun, 03 Mar 2024 21:41:34 GMT pragma: - no-cache strict-transport-security: @@ -190,7 +190,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 770B12785E6B4A71A6DCB84B7B45D1BF Ref B: BL2AA2010203051 Ref C: 2024-03-03T03:40:12Z' + - 'Ref A: CD5429B0E27242CA98E0EAE6CF0F77E5 Ref B: BL2AA2010202033 Ref C: 2024-03-03T21:41:34Z' status: code: 200 message: Ok @@ -210,7 +210,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fda4467d-c99f-46af-b7ef-5aa5a958457e?api-version=2024-02-15-preview&t=638450988642252313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QiplTuxxry25nNAeGpYhloCYRKDCJoei-S8SjnKFsSC9gCRWiD4ysCeh1YRm6DDCoFGz8mI2I1_7C6RE2dvF6pdqF0cVFCrWePg3z-O1AG6Kuz5WF7FGZasFK0ADWR3W_zLhotknIn-wzPJbPvwI1jHnpuYhP7GCCdvwtCANoidXFyrcXWZlM80rqpT0db4jWBD98KUcm7hThExZlzUwlOqtVclpyGzgqktzbr-tBL1Q1gPEaURHCwEkBxn5-aZ0NGrD7BQdjxz3pyS9wMzqucTvZJ5YttSj4cH5uE8c2v3IqI5SO0VbTLa_LkBfiJrWw5oNIgOz-iqMNUjloczMJA&h=95BrXN1sGJnp0G4BqYJXOUvgzPStvtxoPBhMzpizt9A response: body: string: '{"status":"Dequeued"}' @@ -222,7 +222,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:40:42 GMT + - Sun, 03 Mar 2024 21:42:04 GMT pragma: - no-cache strict-transport-security: @@ -234,7 +234,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 971DE1D849F34AEC88AC6969DE3D392E Ref B: BL2AA2010201029 Ref C: 2024-03-03T03:40:42Z' + - 'Ref A: 6C3E148363B74C0F899EE719EAE7D1B3 Ref B: MNZ221060609053 Ref C: 2024-03-03T21:42:04Z' status: code: 200 message: Ok @@ -254,7 +254,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fda4467d-c99f-46af-b7ef-5aa5a958457e?api-version=2024-02-15-preview&t=638450988642252313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QiplTuxxry25nNAeGpYhloCYRKDCJoei-S8SjnKFsSC9gCRWiD4ysCeh1YRm6DDCoFGz8mI2I1_7C6RE2dvF6pdqF0cVFCrWePg3z-O1AG6Kuz5WF7FGZasFK0ADWR3W_zLhotknIn-wzPJbPvwI1jHnpuYhP7GCCdvwtCANoidXFyrcXWZlM80rqpT0db4jWBD98KUcm7hThExZlzUwlOqtVclpyGzgqktzbr-tBL1Q1gPEaURHCwEkBxn5-aZ0NGrD7BQdjxz3pyS9wMzqucTvZJ5YttSj4cH5uE8c2v3IqI5SO0VbTLa_LkBfiJrWw5oNIgOz-iqMNUjloczMJA&h=95BrXN1sGJnp0G4BqYJXOUvgzPStvtxoPBhMzpizt9A response: body: string: '{"status":"Dequeued"}' @@ -266,7 +266,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:41:13 GMT + - Sun, 03 Mar 2024 21:42:34 GMT pragma: - no-cache strict-transport-security: @@ -278,7 +278,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 78D542F7F4D24C07B2AD5C406324E06C Ref B: MNZ221060610023 Ref C: 2024-03-03T03:41:13Z' + - 'Ref A: 98AB28A177E0460999E785CED67D3F0E Ref B: BL2AA2030101007 Ref C: 2024-03-03T21:42:35Z' status: code: 200 message: Ok @@ -298,7 +298,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fda4467d-c99f-46af-b7ef-5aa5a958457e?api-version=2024-02-15-preview&t=638450988642252313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QiplTuxxry25nNAeGpYhloCYRKDCJoei-S8SjnKFsSC9gCRWiD4ysCeh1YRm6DDCoFGz8mI2I1_7C6RE2dvF6pdqF0cVFCrWePg3z-O1AG6Kuz5WF7FGZasFK0ADWR3W_zLhotknIn-wzPJbPvwI1jHnpuYhP7GCCdvwtCANoidXFyrcXWZlM80rqpT0db4jWBD98KUcm7hThExZlzUwlOqtVclpyGzgqktzbr-tBL1Q1gPEaURHCwEkBxn5-aZ0NGrD7BQdjxz3pyS9wMzqucTvZJ5YttSj4cH5uE8c2v3IqI5SO0VbTLa_LkBfiJrWw5oNIgOz-iqMNUjloczMJA&h=95BrXN1sGJnp0G4BqYJXOUvgzPStvtxoPBhMzpizt9A response: body: string: '{"status":"Dequeued"}' @@ -310,7 +310,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:41:43 GMT + - Sun, 03 Mar 2024 21:43:04 GMT pragma: - no-cache strict-transport-security: @@ -322,7 +322,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 8298EC7BAF9E445895C52257D2750819 Ref B: MNZ221060609053 Ref C: 2024-03-03T03:41:43Z' + - 'Ref A: 5BA0C664A8224289B817E7ECBC24C30C Ref B: BL2AA2030104045 Ref C: 2024-03-03T21:43:05Z' status: code: 200 message: Ok @@ -342,7 +342,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f3be90b-9931-4347-8f48-6ee3ec03cc81?api-version=2024-02-15-preview&t=638450339821520900&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pxeMXnDGDnzeEbDouoptc9jsyie_aY1A-u4WG9D80sCsgAOJ3rASM58Gb3YdlRRpEJ-bU4mnfWxj4o2HGYLZ50aDPw0PQ2cQfZd3z1yGDAqP3jOsKy1R-lBqrDm0ej70RROeMlydGXQxjuZROT7OS4sDp4zWrp45rpNeysaQqaJZGJ5FQ0FtSYrJszKyPoQ0mjjabD_jFdfnCntJ8bmxsHjNdxcdBgmY5enkpsQd6QLmgHL_CiS58uUGxozA4WckOEnURU43x-NsyUdTdO6raxTdJ3n5lQBvtd3N8dX309NBDgWyOMTU-N5uV4Wgxu7Xqt6s_RE91M1K2aiNLfw91A&h=sAEJX5zoYYaPJpYSuDeEuniW19Eq1jxgEi0v-JGEy4s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fda4467d-c99f-46af-b7ef-5aa5a958457e?api-version=2024-02-15-preview&t=638450988642252313&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QiplTuxxry25nNAeGpYhloCYRKDCJoei-S8SjnKFsSC9gCRWiD4ysCeh1YRm6DDCoFGz8mI2I1_7C6RE2dvF6pdqF0cVFCrWePg3z-O1AG6Kuz5WF7FGZasFK0ADWR3W_zLhotknIn-wzPJbPvwI1jHnpuYhP7GCCdvwtCANoidXFyrcXWZlM80rqpT0db4jWBD98KUcm7hThExZlzUwlOqtVclpyGzgqktzbr-tBL1Q1gPEaURHCwEkBxn5-aZ0NGrD7BQdjxz3pyS9wMzqucTvZJ5YttSj4cH5uE8c2v3IqI5SO0VbTLa_LkBfiJrWw5oNIgOz-iqMNUjloczMJA&h=95BrXN1sGJnp0G4BqYJXOUvgzPStvtxoPBhMzpizt9A response: body: string: '{"status":"Succeeded"}' @@ -354,7 +354,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:12 GMT + - Sun, 03 Mar 2024 21:43:35 GMT pragma: - no-cache strict-transport-security: @@ -366,7 +366,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: C3F506D331984F02A87E32A416EDB406 Ref B: BL2AA2030101045 Ref C: 2024-03-03T03:42:13Z' + - 'Ref A: 3290EE15F3D448E4B163D9DF095E8B36 Ref B: MNZ221060610017 Ref C: 2024-03-03T21:43:35Z' status: code: 200 message: Ok @@ -390,11 +390,11 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004","name":"ntbrcli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T03:41:34.7458793Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://ntbrcli000004.documents.azure.com:443/","sqlEndpoint":"https://ntbrcli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a67d43a3-fe63-489c-9ab6-a33d637098d0","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:42:59.9757359Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://ntbrcli000004.documents.azure.com:443/","sqlEndpoint":"https://ntbrcli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"80da0b02-adc9-4364-8977-358cf987a2c6","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"ntbrcli000004-westus","locationName":"West US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"ntbrcli000004-westus","locationName":"West US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"ntbrcli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:42:59.9757359Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:42:59.9757359Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:42:59.9757359Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:42:59.9757359Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache @@ -403,7 +403,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:13 GMT + - Sun, 03 Mar 2024 21:43:35 GMT pragma: - no-cache strict-transport-security: @@ -415,7 +415,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: E557E781448B4433B764946EC26A23F5 Ref B: BL2AA2010201009 Ref C: 2024-03-03T03:42:13Z' + - 'Ref A: B9DC0C2002BB4B848F127FDD84C2DC63 Ref B: MNZ221060608039 Ref C: 2024-03-03T21:43:35Z' status: code: 200 message: Ok @@ -439,11 +439,11 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004","name":"ntbrcli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T03:41:34.7458793Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://ntbrcli000004.documents.azure.com:443/","sqlEndpoint":"https://ntbrcli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a67d43a3-fe63-489c-9ab6-a33d637098d0","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:42:59.9757359Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://ntbrcli000004.documents.azure.com:443/","sqlEndpoint":"https://ntbrcli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"80da0b02-adc9-4364-8977-358cf987a2c6","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"ntbrcli000004-westus","locationName":"West US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"ntbrcli000004-westus","locationName":"West US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"ntbrcli000004-westus","locationName":"West US","documentEndpoint":"https://ntbrcli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"ntbrcli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T03:41:34.7458793Z"}}},"identity":{"type":"None"}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:42:59.9757359Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:42:59.9757359Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:42:59.9757359Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:42:59.9757359Z"}}},"identity":{"type":"None"}}' headers: cache-control: - no-store, no-cache @@ -452,7 +452,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:14 GMT + - Sun, 03 Mar 2024 21:43:35 GMT pragma: - no-cache strict-transport-security: @@ -464,7 +464,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 32796D6473114F0FB4A91540BE63DD30 Ref B: BL2AA2030102033 Ref C: 2024-03-03T03:42:14Z' + - 'Ref A: ECA2369E04464FCD8C2CB24828D2EAF4 Ref B: MNZ221060608021 Ref C: 2024-03-03T21:43:35Z' status: code: 200 message: Ok @@ -495,7 +495,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b9911c-d2ff-4edb-a2f8-cabf4019cad0?api-version=2023-11-15&t=638450341350858353&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=q18wRzERn6-OYLs74MbWs4aF3E3vk8UY1cCakZTNdSIbhlOAX3qe3_3XKxDdJKIj1GhrlZevPGtvFXdX0cJ9yWbkk8hULeBh9LEo3kkh_mpty9WutsdaQ5h_hUvXb9YiiwlhvclhM7Eq7gyC2ZHBHicAQ0bZVEC-BbTtDvb8ah-LSgW1xazNFbPgSfWbyXb-BiXzptBT8UiAmeTnHy3jDd1g8tRaXPocwjakRQNbVETWIfQZ6HN-AjGKN-cotlRvYfzQvVAxrUUSj6tqXVS74jPy323kufTB-pj9OMRdplnt-PkV28lk_ysHW0lKi93hov1CyK3iRpAeQ-RNm7_GDg&h=HUfNeEdky5V5Cy11b8f-fzrhPXb3kLUH8StZOdmdwKs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2d3b3474-4c40-437f-b945-00bf6e729b67?api-version=2023-11-15&t=638450990167926447&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Q2dfVJwZuCHxHYOa5EppYjtTfe6nY-hYuJ2VGzRKR8g6-meO8rQQZw2Glv6A86dT1OshIro06KiWTDZocBTrjX-cg0jWHl5d-Md8Oi80a3MdiAV2kotwf7ULk6_gr7IwVKYvzEinGkrF2cYlffzQSDMcp7VQf-W28eYleXRffJlBfyR5xtgoBGvLJBa4LjA5rKJcol7tJj01Y1kHpBpE_9nvdhIyqz6Yz78sj7-77u9Bac6Ge0hHicz0E_rzAarjBkzXhloC506qRr0ac8I44lbcUrGdqqpSjoe2L28m7DK5xN21iLbJpNAnkkX-e0a_3hmFuDXlVE30Rb_lxsYJKw&h=ezOsrl7WY4LS0ytHAf4JAW_XVSX9P4meDDpvSmY5A8U cache-control: - no-store, no-cache content-length: @@ -503,9 +503,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:14 GMT + - Sun, 03 Mar 2024 21:43:36 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/f7b9911c-d2ff-4edb-a2f8-cabf4019cad0?api-version=2023-11-15&t=638450341351014647&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=AC8_KVT2RqYRqNw2IdBeiYDhzX_TbBjMuYFDiSuHxraoY9NJk7BPs3goNZuYAyc1W_f2zCnOOs8CNUkHPtPlwEGImEQw-uOcxwKQ7Et4z38BZKfWlkdzbfQEI9SG5D8BdQMjmqQfszVnCPykzDjI0MTEdMh1HAdTY3p7mdO6f7av5wNp_xAfR8SqrgFWjKvJA_c_xmPLMqwqtYicDaOgFURhlwHVrMHYVsxF_xkkjXFY0cLsDSdHfhnD8qMn0PK-T8ogG7rOHugstm0D2npoFFJDO58L6k0CnGdDD9DyLmplIwGCn-h_lOtnhet3nB4936rVGR6LSmQkS0HJ-bQJ1A&h=ylgAlrm7yVkjv_w5Mrav-xHkql2b_2fjDgurpwoNnjE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/2d3b3474-4c40-437f-b945-00bf6e729b67?api-version=2023-11-15&t=638450990168082662&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pNIbBrt2e4tx9zGIPMtVsTL-U0AIBrwjHlpgWoPfARUrsSPOumaew86JyWkGcKQ5l0m1YCCxWCavwT8efoqN0P7cZsFRcIAlY3bx6uqCx8bHr0TEyBgvz8-uf2UKKODEDE4oDWn-AypfqaKyXd4zmjVF-jF8d1b40p64JzhQpjfcMT3qXHEcQhcozFsbZNBJtjZnFKN85PMI3xjjV4kfY9tU32V4IYaDUE_AOPblql28b9Nj2qmbTbw3CoGGoYcQky0kaEvALCtBMujGrAG2DA2Eg05ZAERtqZzv4OWwdpWcbuKKydh-FbaTLAJj8-2l2LKAMCpkGZ-fnSSAyN6oyQ&h=AFLt-m4MdIIUv9rv8dLdhhKbwdC53jw1YgyBH24Tt1I pragma: - no-cache strict-transport-security: @@ -519,7 +519,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 902BF772B96E417E9925B9BF44DEABD0 Ref B: BL2AA2010204035 Ref C: 2024-03-03T03:42:14Z' + - 'Ref A: 7F64221A337C404795902032D176057F Ref B: MNZ221060608009 Ref C: 2024-03-03T21:43:36Z' status: code: 202 message: Accepted @@ -539,7 +539,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b9911c-d2ff-4edb-a2f8-cabf4019cad0?api-version=2023-11-15&t=638450341350858353&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=q18wRzERn6-OYLs74MbWs4aF3E3vk8UY1cCakZTNdSIbhlOAX3qe3_3XKxDdJKIj1GhrlZevPGtvFXdX0cJ9yWbkk8hULeBh9LEo3kkh_mpty9WutsdaQ5h_hUvXb9YiiwlhvclhM7Eq7gyC2ZHBHicAQ0bZVEC-BbTtDvb8ah-LSgW1xazNFbPgSfWbyXb-BiXzptBT8UiAmeTnHy3jDd1g8tRaXPocwjakRQNbVETWIfQZ6HN-AjGKN-cotlRvYfzQvVAxrUUSj6tqXVS74jPy323kufTB-pj9OMRdplnt-PkV28lk_ysHW0lKi93hov1CyK3iRpAeQ-RNm7_GDg&h=HUfNeEdky5V5Cy11b8f-fzrhPXb3kLUH8StZOdmdwKs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2d3b3474-4c40-437f-b945-00bf6e729b67?api-version=2023-11-15&t=638450990167926447&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Q2dfVJwZuCHxHYOa5EppYjtTfe6nY-hYuJ2VGzRKR8g6-meO8rQQZw2Glv6A86dT1OshIro06KiWTDZocBTrjX-cg0jWHl5d-Md8Oi80a3MdiAV2kotwf7ULk6_gr7IwVKYvzEinGkrF2cYlffzQSDMcp7VQf-W28eYleXRffJlBfyR5xtgoBGvLJBa4LjA5rKJcol7tJj01Y1kHpBpE_9nvdhIyqz6Yz78sj7-77u9Bac6Ge0hHicz0E_rzAarjBkzXhloC506qRr0ac8I44lbcUrGdqqpSjoe2L28m7DK5xN21iLbJpNAnkkX-e0a_3hmFuDXlVE30Rb_lxsYJKw&h=ezOsrl7WY4LS0ytHAf4JAW_XVSX9P4meDDpvSmY5A8U response: body: string: '{"status":"Enqueued"}' @@ -551,7 +551,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:15 GMT + - Sun, 03 Mar 2024 21:43:36 GMT pragma: - no-cache strict-transport-security: @@ -563,7 +563,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 1BEEEF53F7FA4D609806762818438336 Ref B: BL2AA2030101053 Ref C: 2024-03-03T03:42:15Z' + - 'Ref A: 6722BC1C954A4FCBB6E9C3AB41E597B2 Ref B: MNZ221060608011 Ref C: 2024-03-03T21:43:36Z' status: code: 200 message: Ok @@ -583,7 +583,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b9911c-d2ff-4edb-a2f8-cabf4019cad0?api-version=2023-11-15&t=638450341350858353&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=q18wRzERn6-OYLs74MbWs4aF3E3vk8UY1cCakZTNdSIbhlOAX3qe3_3XKxDdJKIj1GhrlZevPGtvFXdX0cJ9yWbkk8hULeBh9LEo3kkh_mpty9WutsdaQ5h_hUvXb9YiiwlhvclhM7Eq7gyC2ZHBHicAQ0bZVEC-BbTtDvb8ah-LSgW1xazNFbPgSfWbyXb-BiXzptBT8UiAmeTnHy3jDd1g8tRaXPocwjakRQNbVETWIfQZ6HN-AjGKN-cotlRvYfzQvVAxrUUSj6tqXVS74jPy323kufTB-pj9OMRdplnt-PkV28lk_ysHW0lKi93hov1CyK3iRpAeQ-RNm7_GDg&h=HUfNeEdky5V5Cy11b8f-fzrhPXb3kLUH8StZOdmdwKs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2d3b3474-4c40-437f-b945-00bf6e729b67?api-version=2023-11-15&t=638450990167926447&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Q2dfVJwZuCHxHYOa5EppYjtTfe6nY-hYuJ2VGzRKR8g6-meO8rQQZw2Glv6A86dT1OshIro06KiWTDZocBTrjX-cg0jWHl5d-Md8Oi80a3MdiAV2kotwf7ULk6_gr7IwVKYvzEinGkrF2cYlffzQSDMcp7VQf-W28eYleXRffJlBfyR5xtgoBGvLJBa4LjA5rKJcol7tJj01Y1kHpBpE_9nvdhIyqz6Yz78sj7-77u9Bac6Ge0hHicz0E_rzAarjBkzXhloC506qRr0ac8I44lbcUrGdqqpSjoe2L28m7DK5xN21iLbJpNAnkkX-e0a_3hmFuDXlVE30Rb_lxsYJKw&h=ezOsrl7WY4LS0ytHAf4JAW_XVSX9P4meDDpvSmY5A8U response: body: string: '{"status":"Succeeded"}' @@ -595,7 +595,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:45 GMT + - Sun, 03 Mar 2024 21:44:06 GMT pragma: - no-cache strict-transport-security: @@ -607,7 +607,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: B9DAD85BF5BE4608BA7E44CA2DCC8259 Ref B: BL2AA2010201047 Ref C: 2024-03-03T03:42:45Z' + - 'Ref A: 8E4917D15E3647D1A25EDAE56D7BAD31 Ref B: MNZ221060608037 Ref C: 2024-03-03T21:44:07Z' status: code: 200 message: Ok @@ -630,7 +630,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}' headers: cache-control: - no-store, no-cache @@ -639,7 +639,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:45 GMT + - Sun, 03 Mar 2024 21:44:07 GMT pragma: - no-cache strict-transport-security: @@ -651,7 +651,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: DBB2048A14E04AAF9E4EE158BE32E9B1 Ref B: BL2AA2030104039 Ref C: 2024-03-03T03:42:45Z' + - 'Ref A: BBB7EB24954C4E2ABB3E577925AD1BC0 Ref B: MNZ221060610031 Ref C: 2024-03-03T21:44:07Z' status: code: 200 message: Ok @@ -686,7 +686,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b08b044c-a7e0-4f5f-a3f2-9e9d3134b0c3?api-version=2024-02-15-preview&t=638450341670806092&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=df1XzpRD9bDG3dOELe3S2gkp8UTQAtiwnYjoyWEPe-hwkRKsGM1sNLrF40jfItjA2QMRkdv6H8DVYGNnMo_XvyIqNAwEYMsDcdGqjKIBDJS-ytHeWA_EuionpRoOLeUCB18X5umwtwkowS1z9g4cd8qDwbrwcoc4fiyHGRYYrix5H6O-hFeQPF3QSY6ItY_jlNnO5dF7eM6dilS0XNPQu8W1BYSvaviosy40Lcjq1_Z84Z-dMZi5wPT4eEh2cdfjvXENoT--hLaqkoQlgHQ-b1x7qeSzEyNpuuYIadjYL2T-hQyA13uqpjCkWNs3utGrVjvNMf-0yLE_CtrfO87hxg&h=2yKcPFNHW6BDS7g5j1bgOMUZddtvV55M0sU-49UD6YI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3d44ac1c-1803-4e99-b4be-c1cb87605379?api-version=2024-02-15-preview&t=638450990489987049&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZtUa3-u2zhhAbDLJ-9CNudFh-GPgCLZt8_NZHYokhBpu2nm15aYuVEzO9jhWHIsR0EavLJjWdor2SAvZHackHfBJR0VuDOsM7POqTr8DGUUC1ZYpn6kUYWKr6i2U-qptVyTPME8f5nKaHLGDzWAOYd9gj3zsH780D1NIDGN32TOZfL8yt3KR1vtNWk_3r8ACreMzj1kk5UMEbJiH3ceF9Ebg_RBxoT_TD5ERNmYFPLqHNrHXbh-KVo6pq2YD8G66ii2liN-kLAHJ8IhbBkpAnUl8FclWJlBHjaLXoAOVaJGvDMLBZ0zqM9x6DPEWmP6c41yhjZT-vOdy9j_u6NYL1Q&h=evZ6muxWF3NDmuM9jgkb1k8kf-uTy-LZi5h9Y32zCRw cache-control: - no-store, no-cache content-length: @@ -694,9 +694,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:46 GMT + - Sun, 03 Mar 2024 21:44:08 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/b08b044c-a7e0-4f5f-a3f2-9e9d3134b0c3?api-version=2024-02-15-preview&t=638450341670962339&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=kijDX4IV7be_mFgcrNvmRlDRqWFq4nBQdZcAunxhdOS-MjMl_zap4ir_I8OTgYgLHyud5Dk7S6ddyT3rQk-4CTiljQzYCEWT5owSe6mKBI_rAyAK4yX0cJbwVV7Y85OTOlV48cf9J7jXc9LAqT4UuSLpvPrEsJxMHYgWpumZX9Oep6a0WBbADqA6tN5GWHvc03ARiaMP2JwE-AziBMFYGnllC-OI3zzjq3nvfE6nRi-B6D_QorbPKlvwZxdPzisMBCqqSzpoR1oSfZ3lM46FiRF0v-PojKu-fE_x7J0nFI4uM4z-cVLQ7otJE3T_4HA0RTe4XPELxGrXz9-raF0Jyg&h=EpAfudQTo5jg12JP7GBH9az-mMea2fpE9sLqGjk-e-E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/3d44ac1c-1803-4e99-b4be-c1cb87605379?api-version=2024-02-15-preview&t=638450990490143303&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jbfThLkZitcJ7mj7ezyzXjqL5TxA_D9IM7v_qLGXwKrPaNZE_uXQEovwExcBJ6cZbkvmTi_FFtqAZ5xV2g6lxOc1c0Hz4N42cSVz31RdJMM_dBttMl5pdmFn8uLlsqwgpw7tfqd1neNta1_6Jg151h0UCe_i03iwU81TVnWhG6etij2tJcqFtjhS8LlBRqBdP9FYw_b7Kmzk-yMsaSfkPK5anuVOPBKSBzKPuN7rtsBovVuJEfRL4AYOoPrxK102UXlInFbu03d2RqZlHmC-yhsWiZFcTzDTh-3s0jeLT-HA_q54Zyxn2q49EqO18Z71gNsQiXGPnMmqFe3sQIAz5g&h=xzvAOrU-i_PxSZ4yaWi5er4bfgb_NDeHdlF8zESntx8 pragma: - no-cache strict-transport-security: @@ -710,7 +710,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 0D64167DDB434615855D4A43DEEE2B45 Ref B: BL2AA2010201035 Ref C: 2024-03-03T03:42:46Z' + - 'Ref A: ACA335A3C06545008548B8E494918FF1 Ref B: MNZ221060610027 Ref C: 2024-03-03T21:44:08Z' status: code: 202 message: Accepted @@ -730,7 +730,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b08b044c-a7e0-4f5f-a3f2-9e9d3134b0c3?api-version=2024-02-15-preview&t=638450341670806092&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=df1XzpRD9bDG3dOELe3S2gkp8UTQAtiwnYjoyWEPe-hwkRKsGM1sNLrF40jfItjA2QMRkdv6H8DVYGNnMo_XvyIqNAwEYMsDcdGqjKIBDJS-ytHeWA_EuionpRoOLeUCB18X5umwtwkowS1z9g4cd8qDwbrwcoc4fiyHGRYYrix5H6O-hFeQPF3QSY6ItY_jlNnO5dF7eM6dilS0XNPQu8W1BYSvaviosy40Lcjq1_Z84Z-dMZi5wPT4eEh2cdfjvXENoT--hLaqkoQlgHQ-b1x7qeSzEyNpuuYIadjYL2T-hQyA13uqpjCkWNs3utGrVjvNMf-0yLE_CtrfO87hxg&h=2yKcPFNHW6BDS7g5j1bgOMUZddtvV55M0sU-49UD6YI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3d44ac1c-1803-4e99-b4be-c1cb87605379?api-version=2024-02-15-preview&t=638450990489987049&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZtUa3-u2zhhAbDLJ-9CNudFh-GPgCLZt8_NZHYokhBpu2nm15aYuVEzO9jhWHIsR0EavLJjWdor2SAvZHackHfBJR0VuDOsM7POqTr8DGUUC1ZYpn6kUYWKr6i2U-qptVyTPME8f5nKaHLGDzWAOYd9gj3zsH780D1NIDGN32TOZfL8yt3KR1vtNWk_3r8ACreMzj1kk5UMEbJiH3ceF9Ebg_RBxoT_TD5ERNmYFPLqHNrHXbh-KVo6pq2YD8G66ii2liN-kLAHJ8IhbBkpAnUl8FclWJlBHjaLXoAOVaJGvDMLBZ0zqM9x6DPEWmP6c41yhjZT-vOdy9j_u6NYL1Q&h=evZ6muxWF3NDmuM9jgkb1k8kf-uTy-LZi5h9Y32zCRw response: body: string: '{"status":"Enqueued"}' @@ -742,7 +742,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:42:46 GMT + - Sun, 03 Mar 2024 21:44:08 GMT pragma: - no-cache strict-transport-security: @@ -754,7 +754,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 1E8C8399209949399D71318EB3E515A1 Ref B: BL2AA2030101051 Ref C: 2024-03-03T03:42:47Z' + - 'Ref A: 8A5CA1DA5D844B6C9B20800777E48DF6 Ref B: MNZ221060608039 Ref C: 2024-03-03T21:44:09Z' status: code: 200 message: Ok @@ -774,7 +774,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b08b044c-a7e0-4f5f-a3f2-9e9d3134b0c3?api-version=2024-02-15-preview&t=638450341670806092&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=df1XzpRD9bDG3dOELe3S2gkp8UTQAtiwnYjoyWEPe-hwkRKsGM1sNLrF40jfItjA2QMRkdv6H8DVYGNnMo_XvyIqNAwEYMsDcdGqjKIBDJS-ytHeWA_EuionpRoOLeUCB18X5umwtwkowS1z9g4cd8qDwbrwcoc4fiyHGRYYrix5H6O-hFeQPF3QSY6ItY_jlNnO5dF7eM6dilS0XNPQu8W1BYSvaviosy40Lcjq1_Z84Z-dMZi5wPT4eEh2cdfjvXENoT--hLaqkoQlgHQ-b1x7qeSzEyNpuuYIadjYL2T-hQyA13uqpjCkWNs3utGrVjvNMf-0yLE_CtrfO87hxg&h=2yKcPFNHW6BDS7g5j1bgOMUZddtvV55M0sU-49UD6YI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3d44ac1c-1803-4e99-b4be-c1cb87605379?api-version=2024-02-15-preview&t=638450990489987049&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZtUa3-u2zhhAbDLJ-9CNudFh-GPgCLZt8_NZHYokhBpu2nm15aYuVEzO9jhWHIsR0EavLJjWdor2SAvZHackHfBJR0VuDOsM7POqTr8DGUUC1ZYpn6kUYWKr6i2U-qptVyTPME8f5nKaHLGDzWAOYd9gj3zsH780D1NIDGN32TOZfL8yt3KR1vtNWk_3r8ACreMzj1kk5UMEbJiH3ceF9Ebg_RBxoT_TD5ERNmYFPLqHNrHXbh-KVo6pq2YD8G66ii2liN-kLAHJ8IhbBkpAnUl8FclWJlBHjaLXoAOVaJGvDMLBZ0zqM9x6DPEWmP6c41yhjZT-vOdy9j_u6NYL1Q&h=evZ6muxWF3NDmuM9jgkb1k8kf-uTy-LZi5h9Y32zCRw response: body: string: '{"status":"Succeeded"}' @@ -786,7 +786,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:43:17 GMT + - Sun, 03 Mar 2024 21:44:39 GMT pragma: - no-cache strict-transport-security: @@ -798,7 +798,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: E3A3A821BDFF4C7BB265C8FBE7B8916E Ref B: MNZ221060609037 Ref C: 2024-03-03T03:43:17Z' + - 'Ref A: 73EEEB7E11A24FDB84D8FD890531567A Ref B: MNZ221060608023 Ref C: 2024-03-03T21:44:39Z' status: code: 200 message: Ok @@ -821,7 +821,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709437372,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709502254,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache @@ -830,7 +830,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:43:17 GMT + - Sun, 03 Mar 2024 21:44:39 GMT pragma: - no-cache strict-transport-security: @@ -842,7 +842,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: B75929194204483F8F11C56B80A55ACB Ref B: MNZ221060609011 Ref C: 2024-03-03T03:43:17Z' + - 'Ref A: 7FB82372821545BFAFCB7A5D2EAF63D3 Ref B: MNZ221060609017 Ref C: 2024-03-03T21:44:39Z' status: code: 200 message: Ok @@ -865,7 +865,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709437372,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709502254,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' headers: cache-control: - no-store, no-cache @@ -874,7 +874,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:43:18 GMT + - Sun, 03 Mar 2024 21:44:40 GMT pragma: - no-cache strict-transport-security: @@ -886,7 +886,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 23E82D4185FA4B93A044BEC09DEE24DB Ref B: MNZ221060610031 Ref C: 2024-03-03T03:43:18Z' + - 'Ref A: CB3ED2CBE507475A81D4EB492F9361D5 Ref B: MNZ221060610053 Ref C: 2024-03-03T21:44:40Z' status: code: 200 message: Ok @@ -914,7 +914,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/977fe24e-c3d0-4fa9-9898-2eed160623a3?api-version=2023-11-15&t=638450344996693336&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9MXleGFR4gR3YSg48l2pC0GgBw2RDb04AQeRwGw6NlZVe2VrLLggERiIACUXqXs764G2WFQ_B2VrOwgMx_pbW-hr9uVLhPvvpM2wlKCIZ7zqc_S1jGqgmLA_Kzhhmr4kAZHhcuXyCg4KJEXwAy20uBaLmdxhTdqm0Jb0pyvfyiGdFZyDyze1iKgbu4odnsSIt9O4AnkqXXC3r0h1JqKxz5WO_gj7ScWnD38b2eZ_8DPvUz-_lCqHfbzaGdcW10icZa1qTLxLkJKMyp295g877rXHWMSL7VwAJ1EMYrfdaV-8hmEjPed2v28WR_SMQm3boR3MXJNyGSTrVjY45yV3Q&h=42JprI25TNBcIMkrJblmI09R_04T1eb5_-LGBdXaHIg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/158aa6a6-284d-4565-920c-162e8288e040?api-version=2023-11-15&t=638450993815152504&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YDWekslVX6SuGTz-z1SmsEcTTgE7f59VSz7Ast-yg8wetjKask2biGXInNJnqedk4WDyyHBBqiPwEENxsMCkJqyqhzFPiUPjiY67bM1OzW1rN1W_MFwJOF5MABcRqYaYG_u-GW8NETUwQV-FREsD3UGbJHuU93ULUPspa4Dr8QXHSMVUUggBfKQFPMazbzEBxOGI8-d0poPGvdHyXtLJqqreSyq6WixMNR4lt-3qzjaAKt56DumyxxhyZy3KQem5wVnWo8lq6n3p9PnAMRWhjbDuzr8E6j_tYQ7p4hPEwy9DQRvpEP2OyfkqQqc9NTmrG0qjtlOC6stsOzYCCvnXtg&h=5eHAy-tyMLl_xygqC60snlFt8FtNJDdOVCRf64lMXvE cache-control: - no-store, no-cache content-length: @@ -922,9 +922,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:48:19 GMT + - Sun, 03 Mar 2024 21:49:41 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/977fe24e-c3d0-4fa9-9898-2eed160623a3?api-version=2023-11-15&t=638450344996693336&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=X-X5O6Rk5Zrr3M6KbxYlxq0imTPuNSnFPSM4BqfuD5WCbUDaancsW8aqvzpALJ3YQULjdZjwRJfgH655VOB0TS8lwWm4WhAxL_U3BwkNbtWC2MsVOU70xJe_QwJFEWopweqankAkrOyx_vT42VPlDOxBxiV3Mg02NRx-RovkKvmPltopNSZvxNZl9o9vYtE7YWOWq3yAX-z3rPjxCSvdTVQjKNEexVtciBbwYOOy2RMVgwOOdw0Q1ZPfgPaeE-uPo6xuiWaIh-TM2DG37SSJwrvz_Dniex3TG0X0qiqJZm5gW6QyWEwYLb-JPvDez-vMTe7OrZVZmGmDDj4ilIpsig&h=xk3kDJTV-ERxaiMKtUlEnm8asorpHnxaBEb0wTNdy_g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/158aa6a6-284d-4565-920c-162e8288e040?api-version=2023-11-15&t=638450993815308784&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=W-H0YO3f8JbqyLE7SDiDU2CocaAGzKsafhG5AgkgX5_AePG04ggixGwbCEXGXbAY6_KYBjktddG5W3rWzoc7JPvAsYh2l1MYdmIV_SzjBUy2Ovs7mmkhLWT5R1kuGNuEFFKUEkiRCVo9Lf5O2W9b2PQ9bb-CI-SvUGO4t4AQ0kHxzvKJbvYchI3rw1O2TGzMaTLp-7O09NAGgt-fdWwj2od7X6q5h9WD6Twa92kPJPjsUqUY93EDyDD5Lz5IlsO6mXizL4h5cLRmnO-7PUXwHtk1BXUEISWJzlcLwM1sFABIOOdwMq5TRA1oanaJN2UeRHiXQM_iBP_sqNKuW3Kkrw&h=2YPJs0lkUUGdEKFkkRdPUbg816tVHdOEqLMgBAFXRgY pragma: - no-cache strict-transport-security: @@ -938,7 +938,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: 6B27BCDCEA0E4CCCADB4CADD514AFF9D Ref B: MNZ221060610023 Ref C: 2024-03-03T03:48:18Z' + - 'Ref A: B89FFE891C4D47F393F45C123F81EEB8 Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:49:41Z' status: code: 202 message: Accepted @@ -958,7 +958,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/977fe24e-c3d0-4fa9-9898-2eed160623a3?api-version=2023-11-15&t=638450344996693336&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9MXleGFR4gR3YSg48l2pC0GgBw2RDb04AQeRwGw6NlZVe2VrLLggERiIACUXqXs764G2WFQ_B2VrOwgMx_pbW-hr9uVLhPvvpM2wlKCIZ7zqc_S1jGqgmLA_Kzhhmr4kAZHhcuXyCg4KJEXwAy20uBaLmdxhTdqm0Jb0pyvfyiGdFZyDyze1iKgbu4odnsSIt9O4AnkqXXC3r0h1JqKxz5WO_gj7ScWnD38b2eZ_8DPvUz-_lCqHfbzaGdcW10icZa1qTLxLkJKMyp295g877rXHWMSL7VwAJ1EMYrfdaV-8hmEjPed2v28WR_SMQm3boR3MXJNyGSTrVjY45yV3Q&h=42JprI25TNBcIMkrJblmI09R_04T1eb5_-LGBdXaHIg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/158aa6a6-284d-4565-920c-162e8288e040?api-version=2023-11-15&t=638450993815152504&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YDWekslVX6SuGTz-z1SmsEcTTgE7f59VSz7Ast-yg8wetjKask2biGXInNJnqedk4WDyyHBBqiPwEENxsMCkJqyqhzFPiUPjiY67bM1OzW1rN1W_MFwJOF5MABcRqYaYG_u-GW8NETUwQV-FREsD3UGbJHuU93ULUPspa4Dr8QXHSMVUUggBfKQFPMazbzEBxOGI8-d0poPGvdHyXtLJqqreSyq6WixMNR4lt-3qzjaAKt56DumyxxhyZy3KQem5wVnWo8lq6n3p9PnAMRWhjbDuzr8E6j_tYQ7p4hPEwy9DQRvpEP2OyfkqQqc9NTmrG0qjtlOC6stsOzYCCvnXtg&h=5eHAy-tyMLl_xygqC60snlFt8FtNJDdOVCRf64lMXvE response: body: string: '{"status":"Enqueued"}' @@ -970,7 +970,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:48:19 GMT + - Sun, 03 Mar 2024 21:49:41 GMT pragma: - no-cache strict-transport-security: @@ -982,7 +982,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: D71306787CAA4ACCA7CEB4CD88F12401 Ref B: MNZ221060609053 Ref C: 2024-03-03T03:48:19Z' + - 'Ref A: 346466532D3A4F728967F185F4C9C4B9 Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:49:41Z' status: code: 200 message: Ok @@ -1002,7 +1002,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/977fe24e-c3d0-4fa9-9898-2eed160623a3?api-version=2023-11-15&t=638450344996693336&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9MXleGFR4gR3YSg48l2pC0GgBw2RDb04AQeRwGw6NlZVe2VrLLggERiIACUXqXs764G2WFQ_B2VrOwgMx_pbW-hr9uVLhPvvpM2wlKCIZ7zqc_S1jGqgmLA_Kzhhmr4kAZHhcuXyCg4KJEXwAy20uBaLmdxhTdqm0Jb0pyvfyiGdFZyDyze1iKgbu4odnsSIt9O4AnkqXXC3r0h1JqKxz5WO_gj7ScWnD38b2eZ_8DPvUz-_lCqHfbzaGdcW10icZa1qTLxLkJKMyp295g877rXHWMSL7VwAJ1EMYrfdaV-8hmEjPed2v28WR_SMQm3boR3MXJNyGSTrVjY45yV3Q&h=42JprI25TNBcIMkrJblmI09R_04T1eb5_-LGBdXaHIg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/158aa6a6-284d-4565-920c-162e8288e040?api-version=2023-11-15&t=638450993815152504&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YDWekslVX6SuGTz-z1SmsEcTTgE7f59VSz7Ast-yg8wetjKask2biGXInNJnqedk4WDyyHBBqiPwEENxsMCkJqyqhzFPiUPjiY67bM1OzW1rN1W_MFwJOF5MABcRqYaYG_u-GW8NETUwQV-FREsD3UGbJHuU93ULUPspa4Dr8QXHSMVUUggBfKQFPMazbzEBxOGI8-d0poPGvdHyXtLJqqreSyq6WixMNR4lt-3qzjaAKt56DumyxxhyZy3KQem5wVnWo8lq6n3p9PnAMRWhjbDuzr8E6j_tYQ7p4hPEwy9DQRvpEP2OyfkqQqc9NTmrG0qjtlOC6stsOzYCCvnXtg&h=5eHAy-tyMLl_xygqC60snlFt8FtNJDdOVCRf64lMXvE response: body: string: '{"status":"Succeeded"}' @@ -1014,7 +1014,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:48:49 GMT + - Sun, 03 Mar 2024 21:50:10 GMT pragma: - no-cache strict-transport-security: @@ -1026,7 +1026,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: F709A42D4ECB4293A396D464C7927A64 Ref B: MNZ221060608049 Ref C: 2024-03-03T03:48:49Z' + - 'Ref A: F20CA30020AF4BB98B38FAE4D2F25946 Ref B: BL2AA2030104025 Ref C: 2024-03-03T21:50:11Z' status: code: 200 message: Ok @@ -1058,7 +1058,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:48:50 GMT + - Sun, 03 Mar 2024 21:50:11 GMT pragma: - no-cache strict-transport-security: @@ -1070,7 +1070,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: F84F9611B2DD4FF3A254E1186F480CAB Ref B: MNZ221060610021 Ref C: 2024-03-03T03:48:50Z' + - 'Ref A: 877486C1F7D14964B388257E9FA8B1AD Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:50:12Z' status: code: 200 message: Ok @@ -1094,9 +1094,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -1118,87 +1118,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:50:12Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:50: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"}]}},{"name":"e84733a9-ee18-456c-b12b-1d37e542608b","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:50:12Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -1213,104 +1211,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -1319,60 +1317,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -1381,19 +1379,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -1401,224 +1399,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:50:14Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:50:14Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -1649,238 +1655,248 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","oldestRestorableTime":"2024-03-03T21:21:48+00:00","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","oldestRestorableTime":"2024-03-03T21:21:29+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -1895,292 +1911,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:50:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -2188,256 +2204,335 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:48:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T21:50:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:50:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:50:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:50:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:50:13Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:48:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:50:13Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:50:12Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:50:12Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:50:12Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:50:12Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:50:12Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:48:51Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:50:12Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -2449,11 +2544,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429531' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 03:48:55 GMT + - Sun, 03 Mar 2024 21:50:17 GMT expires: - '-1' pragma: @@ -2506,7 +2601,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: 2073F987368448DF94BA68467698161B Ref B: MNZ221060609037 Ref C: 2024-03-03T03:48:50Z' + - 'Ref A: B6CD536AFB3F42319972221D7B970A95 Ref B: BL2AA2010205007 Ref C: 2024-03-03T21:50:12Z' status: code: 200 message: OK @@ -2526,10 +2621,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}}]}' headers: cache-control: - no-store, no-cache @@ -2538,7 +2633,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:48:56 GMT + - Sun, 03 Mar 2024 21:50:19 GMT pragma: - no-cache strict-transport-security: @@ -2550,7 +2645,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 1478CEB161764110B1EBD289C71A506A Ref B: MNZ221060609011 Ref C: 2024-03-03T03:48:56Z' + - 'Ref A: 404DDBCBBBAF430D805AAEF458F714F6 Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:50:18Z' status: code: 200 message: Ok @@ -2570,10 +2665,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=uHUNAA%3D%3D response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/e1ab0a0f-10db-4ac6-b637-4b38603f8534","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"e1ab0a0f-10db-4ac6-b637-4b38603f8534","properties":{"resource":{"_rid":"L-YcTwAAAA==","eventTimestamp":"2024-03-03T21:49:46Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502254}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/19efe544-d19c-4acb-8610-4bcbae2beb43","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"19efe544-d19c-4acb-8610-4bcbae2beb43","properties":{"resource":{"_rid":"jQxpgAAAAA==","eventTimestamp":"2024-03-03T21:44:14Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}}]}' headers: cache-control: - no-store, no-cache @@ -2582,7 +2677,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:48:57 GMT + - Sun, 03 Mar 2024 21:50:20 GMT pragma: - no-cache strict-transport-security: @@ -2594,7 +2689,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 3B642BF0823E439DAA68DF07A4EBB554 Ref B: MNZ221060610031 Ref C: 2024-03-03T03:48:57Z' + - 'Ref A: DC75914231624ECBA82BE3FB79901EA7 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:50:19Z' status: code: 200 message: Ok @@ -2626,7 +2721,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:48:58 GMT + - Sun, 03 Mar 2024 21:50:21 GMT pragma: - no-cache strict-transport-security: @@ -2638,7 +2733,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: DE313DDE18574384B44783C4CAB7DE27 Ref B: MNZ221060609037 Ref C: 2024-03-03T03:48:58Z' + - 'Ref A: 1963E3F9624B463482D21B76521733AE Ref B: BL2AA2010204049 Ref C: 2024-03-03T21:50:21Z' status: code: 200 message: Ok @@ -2662,9 +2757,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -2686,87 +2781,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:50:22Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:50:21Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:50:21Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:50:21Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:50:21Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:50:21Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:50:21Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -2781,104 +2874,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -2887,60 +2980,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -2949,19 +3042,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -2969,224 +3062,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:50:21Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:50:23Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:49:00Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -3217,238 +3318,248 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","oldestRestorableTime":"2024-03-03T21:21:48+00:00","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","oldestRestorableTime":"2024-03-03T21:21:29+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -3463,292 +3574,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:49:01Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -3756,256 +3867,335 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:49:02Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T21:50:25Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:50:22Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:50:22Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:50:22Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:50:22Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:50:23Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:50:22Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:48:59Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:50:22Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -4017,11 +4207,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429531' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 03:49:03 GMT + - Sun, 03 Mar 2024 21:50:27 GMT expires: - '-1' pragma: @@ -4074,7 +4264,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: AB52847B164B41D4AA2D2E8FFB617DA0 Ref B: MNZ221060608035 Ref C: 2024-03-03T03:48:58Z' + - 'Ref A: D4E153C0713D4A28BA6B314AF601C6AF Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:50:21Z' status: code: 200 message: OK @@ -4094,10 +4284,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}}]}' headers: cache-control: - no-store, no-cache @@ -4106,7 +4296,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:49:04 GMT + - Sun, 03 Mar 2024 21:50:27 GMT pragma: - no-cache strict-transport-security: @@ -4118,7 +4308,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 5D89BFF3C94341D2B23D1820B3462D47 Ref B: MNZ221060609039 Ref C: 2024-03-03T03:49:04Z' + - 'Ref A: 9E6D20111FD140B6A0F6DDD25CF74FA8 Ref B: MNZ221060610023 Ref C: 2024-03-03T21:50:27Z' status: code: 200 message: Ok @@ -4138,10 +4328,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=uHUNAA%3D%3D response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/e1ab0a0f-10db-4ac6-b637-4b38603f8534","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"e1ab0a0f-10db-4ac6-b637-4b38603f8534","properties":{"resource":{"_rid":"L-YcTwAAAA==","eventTimestamp":"2024-03-03T21:49:46Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502254}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/19efe544-d19c-4acb-8610-4bcbae2beb43","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"19efe544-d19c-4acb-8610-4bcbae2beb43","properties":{"resource":{"_rid":"jQxpgAAAAA==","eventTimestamp":"2024-03-03T21:44:14Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}}]}' headers: cache-control: - no-store, no-cache @@ -4150,7 +4340,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:49:05 GMT + - Sun, 03 Mar 2024 21:50:29 GMT pragma: - no-cache strict-transport-security: @@ -4162,14 +4352,14 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: E8C93E917E684038B10D2B381E76F9F2 Ref B: MNZ221060609007 Ref C: 2024-03-03T03:49:05Z' + - 'Ref A: 2ED8E54755F14F95B8E656088A6F89EB Ref B: MNZ221060609037 Ref C: 2024-03-03T21:50:28Z' status: code: 200 message: Ok - request: body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", - "restoreTimestampInUtc": "2024-03-03T03:48:23.000Z"}, "createMode": "Restore"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6", + "restoreTimestampInUtc": "2024-03-03T21:49:45.000Z"}, "createMode": "Restore"}, "options": {}}}' headers: Accept: @@ -4195,7 +4385,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM cache-control: - no-store, no-cache content-length: @@ -4203,9 +4393,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:49:07 GMT + - Sun, 03 Mar 2024 21:50:30 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZamIBrXKDDO2tus4xr7dQWhzgrmRIolpSA5FMuv0wP8ypwjy_RqdjD2LfMLGk3_OroaloB-RCCfuxqnL-KzMELt0xNB4M9jhU1NPByESXR2xTwMkGAiHpBU_ZTZZs1WsJaWyEwJG-wgPn_tw9jSXsXn-WuOz_7YQXiYkZSKDahAgODiCCwIljV30lGUQzBTYQbJjmleFI1lhF6VTYcjOmK23M31ThRiq7OcxyrGs0xlhsmhjsP5915kd4iAlE6w95ETD55qr0QYtpAITKvBPreknhBOva6W-OrfIDE9uG8P2RGQYmMGuGmZvSQnE7kYAwQWXeGnww0mIJHa4xvoNUA&h=RYdSO0ju0NBVv23I_xtWXv1L-Gq_LdCdaUOZ-yQlCB8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj4Yyq_jqmpgTfFM-XQhOdF0hZe90QXZT0g2W4DyNZkwgblq5BYrl_skRHJMRwDHxQL3XBcaI9-0Ed30FiwmQg6nCOz-k6kSD7mxq8rWo0fiSaiRoWlvupgn3ZY0_g3ptH1P1QEx9mWjD1mkfzxq4ivG2U4cTMFh4AG7hBxFrhZ9xzhRIxfc1yyNckPp8S1ZK8EkiDDpGX-kCdZsuyRvy_iqg3TJkkiM1gIDQ6ebIlsM3QqSQg-twekaTSt_n-ulkcxGij9Qz07JIzjLq5B5oLqCOcRSlh-WpEzRdKLSglQw_j_l0bTUVdOfFbnTcX2fz5F2vmtJ6YRk8XfS_iK8xA&h=fwVa8vquxD1FL54Ik-Gn8nFmdpPyq4DALss7wd1P8R0 pragma: - no-cache strict-transport-security: @@ -4219,7 +4409,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 021CC4B2C1594BC5B5961927CFE26BA0 Ref B: MNZ221060610017 Ref C: 2024-03-03T03:49:06Z' + - 'Ref A: CD65F54D71A84530A184BF0E975259E8 Ref B: MNZ221060609039 Ref C: 2024-03-03T21:50:29Z' status: code: 202 message: Accepted @@ -4239,7 +4429,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Enqueued"}' @@ -4251,7 +4441,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:49:07 GMT + - Sun, 03 Mar 2024 21:50:30 GMT pragma: - no-cache strict-transport-security: @@ -4263,7 +4453,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 4EAE01F0CD7C46ACBE080C3B8246972B Ref B: MNZ221060610011 Ref C: 2024-03-03T03:49:07Z' + - 'Ref A: 3AEC56498DE1454598BD80842566A085 Ref B: MNZ221060609007 Ref C: 2024-03-03T21:50:31Z' status: code: 200 message: Ok @@ -4283,7 +4473,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4295,7 +4485,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:49:36 GMT + - Sun, 03 Mar 2024 21:51:00 GMT pragma: - no-cache strict-transport-security: @@ -4307,7 +4497,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: F7D0760B0BC44E18AEC237634DB40070 Ref B: MNZ221060609049 Ref C: 2024-03-03T03:49:37Z' + - 'Ref A: 214AFABCF7D545DA88AB38DD70B18E56 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:51:01Z' status: code: 200 message: Ok @@ -4327,7 +4517,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4339,7 +4529,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:50:07 GMT + - Sun, 03 Mar 2024 21:51:31 GMT pragma: - no-cache strict-transport-security: @@ -4351,7 +4541,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 26CD31D6314D429A9A65F328C84FA8D6 Ref B: MNZ221060608039 Ref C: 2024-03-03T03:50:07Z' + - 'Ref A: D3918BB0928D407DB9614F1F47E6615B Ref B: MNZ221060608035 Ref C: 2024-03-03T21:51:31Z' status: code: 200 message: Ok @@ -4371,7 +4561,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4383,7 +4573,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:50:38 GMT + - Sun, 03 Mar 2024 21:52:01 GMT pragma: - no-cache strict-transport-security: @@ -4395,7 +4585,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: CF77CA9A36AE490380B509E29459AE09 Ref B: BL2AA2030104039 Ref C: 2024-03-03T03:50:38Z' + - 'Ref A: 52A9A8EDC57D44B0A8A0D84B256F76E3 Ref B: MNZ221060610027 Ref C: 2024-03-03T21:52:01Z' status: code: 200 message: Ok @@ -4415,7 +4605,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4427,7 +4617,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:51:07 GMT + - Sun, 03 Mar 2024 21:52:31 GMT pragma: - no-cache strict-transport-security: @@ -4439,7 +4629,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: BAEB2A631EDC4FDDA027890855C1CD37 Ref B: BL2AA2030101025 Ref C: 2024-03-03T03:51:08Z' + - 'Ref A: 23335F605D7D4AFE9F27BCD500AE1F98 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:52:31Z' status: code: 200 message: Ok @@ -4459,7 +4649,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4471,7 +4661,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:51:38 GMT + - Sun, 03 Mar 2024 21:53:02 GMT pragma: - no-cache strict-transport-security: @@ -4483,7 +4673,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: A22AD0F8741E4205828EE9BF48F8B3AD Ref B: BL2AA2010204017 Ref C: 2024-03-03T03:51:38Z' + - 'Ref A: A07D38D870C04AFE9369E6686E44E106 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:53:02Z' status: code: 200 message: Ok @@ -4503,7 +4693,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4515,7 +4705,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:52:08 GMT + - Sun, 03 Mar 2024 21:53:31 GMT pragma: - no-cache strict-transport-security: @@ -4527,7 +4717,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 64B6C647F703496CB3A795433943809B Ref B: BL2AA2030101045 Ref C: 2024-03-03T03:52:08Z' + - 'Ref A: 9C626B9B0BF24885B633E3CBE93B47A7 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:53:32Z' status: code: 200 message: Ok @@ -4547,7 +4737,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4559,7 +4749,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:52:38 GMT + - Sun, 03 Mar 2024 21:54:02 GMT pragma: - no-cache strict-transport-security: @@ -4571,7 +4761,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: E89EE7EAB42A466484CCA83F088ADE3D Ref B: MNZ221060609037 Ref C: 2024-03-03T03:52:39Z' + - 'Ref A: EDEE5364A3E34818B474E4BDC35FC477 Ref B: BL2AA2010203023 Ref C: 2024-03-03T21:54:02Z' status: code: 200 message: Ok @@ -4591,7 +4781,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4603,7 +4793,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:53:09 GMT + - Sun, 03 Mar 2024 21:54:32 GMT pragma: - no-cache strict-transport-security: @@ -4615,7 +4805,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 6B2AE4B4087646EA8849BCA21A2914C4 Ref B: MNZ221060609035 Ref C: 2024-03-03T03:53:09Z' + - 'Ref A: B44D2BE9C2774C69958515CD538967BC Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:54:32Z' status: code: 200 message: Ok @@ -4635,7 +4825,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4647,7 +4837,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:53:39 GMT + - Sun, 03 Mar 2024 21:55:02 GMT pragma: - no-cache strict-transport-security: @@ -4659,7 +4849,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 66781A1C48AD45F290623A5DAB8DDF70 Ref B: MNZ221060609009 Ref C: 2024-03-03T03:53:39Z' + - 'Ref A: 77C6517E341C4213800A186A31EA8CB7 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:55:03Z' status: code: 200 message: Ok @@ -4679,7 +4869,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4691,7 +4881,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:54:09 GMT + - Sun, 03 Mar 2024 21:55:33 GMT pragma: - no-cache strict-transport-security: @@ -4703,7 +4893,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 73F360264C8A44DBB6AF63FEDBF5A0AD Ref B: BL2AA2010201009 Ref C: 2024-03-03T03:54:09Z' + - 'Ref A: 35E2206F6D7B4B4B9A514F686D0DC1B6 Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:55:33Z' status: code: 200 message: Ok @@ -4723,7 +4913,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4735,7 +4925,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:54:39 GMT + - Sun, 03 Mar 2024 21:56:03 GMT pragma: - no-cache strict-transport-security: @@ -4747,7 +4937,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: E054B641F7A3403185825BC0CBFFD093 Ref B: MNZ221060610023 Ref C: 2024-03-03T03:54:39Z' + - 'Ref A: 284838B5982B4F66A5CE2942B469DC3E Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:56:03Z' status: code: 200 message: Ok @@ -4767,7 +4957,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4779,7 +4969,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:55:09 GMT + - Sun, 03 Mar 2024 21:56:33 GMT pragma: - no-cache strict-transport-security: @@ -4791,7 +4981,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 24D8EE807F48490496052B68EA71424C Ref B: MNZ221060609053 Ref C: 2024-03-03T03:55:09Z' + - 'Ref A: 77E25C646C9149CA948C35ABEBBF191C Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:56:33Z' status: code: 200 message: Ok @@ -4811,7 +5001,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Dequeued"}' @@ -4823,7 +5013,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:55:39 GMT + - Sun, 03 Mar 2024 21:57:03 GMT pragma: - no-cache strict-transport-security: @@ -4835,7 +5025,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: B351E94BDBE84D16AA3E2A927E5D56A0 Ref B: MNZ221060609037 Ref C: 2024-03-03T03:55:40Z' + - 'Ref A: AB806E134FA64872949D039395996CF2 Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:57:04Z' status: code: 200 message: Ok @@ -4855,7 +5045,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25214ff4-00bb-4fce-82f5-22cebce1786b?api-version=2024-02-15-preview&t=638450345474348428&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r22Rk_aHF9Me8uqAjBxk2B5pNkPsQvYE61svw-5vbpqOJgBvttJX7XsIaPXTp4btwO05vQkAD2rp9Pbb3wYkxmf7s55b8KIb2AcZz58SX2FeGxnLTU-yeAvf7q3lmy6tIkyoW7RvCLPxnGQkdmd5ZIC8wvLAFFqA_uRyeLp-3SH8enuLlZJ5myBpgMZTsRnJUTQetl53hrjLwfqPy3zDTLy0LXxPH3moar0KhV1H7bWSl7B0wHUfJUJzArN7C1b7zNu47fMdU4yl9sxOqr18d6hRaEuirqMha88gUI9MP-TodaqE06BcKeqwxAYNbKvWlV-OLDtf-GlkGuXuDG85Pw&h=xYKuCZ8Gvb5MXXpJcSg5ZNRqo57cppAPb5GehSV4oCA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77ad3a15-9997-48ca-9bd8-3bae8af7c771?api-version=2024-02-15-preview&t=638450994309749205&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pX5MriQwQSfbT5zqLUQzNtZC3J5nimL7y7ugyuWWYBgwUaQ9tYt3bCJ3wg0fbB0XR1P6pouZLdq-rQhxOzOjqc5nRz4iOOP7jaK7iRRkQDC_Lcr_v3MTzqloquNigdsH1x49FWFd8kEdfMNpTosP10UvJOu_TYS7SX_wDL9Q-G9oXr7CyxqKp6e3L9nxSekSV5Z9O7VNO5Lmmat_eriuOdfxukzd_ItFqAUnwn261QSkMp91VCtXYGESHsFSMNivJsiZOqyvkMs7LTSuXTEHqsPa2qKyw3eAGiOVX-hk7FhRfaDIAjsiXw29cDzPp3sE-KQexJ1rFe1vcZp9JZxo-g&h=T2LSI0VFmRw7ul9ndD3PRx1VFXIqzLMGSzg-qHUMIdM response: body: string: '{"status":"Succeeded"}' @@ -4867,7 +5057,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:10 GMT + - Sun, 03 Mar 2024 21:57:33 GMT pragma: - no-cache strict-transport-security: @@ -4879,7 +5069,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 4CE02E7FEE2C4ACBBC9DC06654D0A10B Ref B: MNZ221060609011 Ref C: 2024-03-03T03:56:10Z' + - 'Ref A: 2E4A97C4460D4068BF77DD1AC573DE36 Ref B: BL2AA2030101007 Ref C: 2024-03-03T21:57:34Z' status: code: 200 message: Ok @@ -4902,7 +5092,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709437933,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"08918ec7-d9a8-11ee-a311-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:49:45+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709502811,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00002904-0000-0700-0000-65e4f15b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache @@ -4911,7 +5101,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:10 GMT + - Sun, 03 Mar 2024 21:57:34 GMT pragma: - no-cache strict-transport-security: @@ -4923,7 +5113,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: DFC084FEED4D409A98FCC801DE92A821 Ref B: MNZ221060610031 Ref C: 2024-03-03T03:56:10Z' + - 'Ref A: B3CE23D3EC4A4622A49FDFD2BDBCF36D Ref B: BL2AA2010202035 Ref C: 2024-03-03T21:57:34Z' status: code: 200 message: Ok @@ -4946,7 +5136,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709437933,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"08918ec7-d9a8-11ee-a311-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:49:45+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709502811,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00002904-0000-0700-0000-65e4f15b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' headers: cache-control: - no-store, no-cache @@ -4955,7 +5145,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:11 GMT + - Sun, 03 Mar 2024 21:57:35 GMT pragma: - no-cache strict-transport-security: @@ -4967,7 +5157,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 2C9BD181787C4822B15D3B788E7C64A3 Ref B: MNZ221060608049 Ref C: 2024-03-03T03:56:11Z' + - 'Ref A: 95EB87EF299040BCA729ADE7357034B0 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:57:34Z' status: code: 200 message: Ok @@ -4995,7 +5185,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f631d92-d69a-42bc-8a8d-a089923718fc?api-version=2023-11-15&t=638450349728387260&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r88nXIkv3HOLWeHQYF9GAINZTdrJSsbEKWK-6F99lNzERT5093y0XEySQ_4XyoIJiOlG-v85hy3QB98yGPTDPXHK25pcytdGFLthMEuVlfNlNp65AgW21YoA-fJmUymgePT8VeKn3fzI56e1zsOYkPmRZWYHP7VbmwmT73VOuFWxrtwqLOlcNdesBS_lAjHdOhWTQyjlnabA8EWK-9Q1tcnpWvW1T3fOjQwHatBHdmBhJiB9zonoJO13T-uyfpL3aI9Xmtx2G0BA8o9WBxuEF6RwoPcTcQUUB8voInF45qi1eUOWCJAUy6WzSnD5KfRw_HydNfpqrZPnQB-e250AGg&h=yLMH-Tc-j3uheJlpH0h80rT5fwcCWrnFD-vLjRUe28A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f7000d5-0c05-4137-b90e-5a7d3e9608b6?api-version=2023-11-15&t=638450998560325218&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KK1-43Crfl4dLuByqZ--vbcKfcYgfpGJeAsXTpW0nkq8n4-P6KaiiYQ0SD4CrtrCbtFBV5p07m5uHhQMk-Mf3cd4yfOYXolJzosiyzF_jxQd-d_D4lmLv8E-fs-gpnPCKb39vRnvwk_BatuDkjn0YOHpKutpUpxKM_J-LYGcAshKD-EmEXufvZPV4QFiAGsstkoEYoptXgZ7HgXVs14E5RU3rCoheNwmPxytrSObuSj8ltnrjlubbIqIVDWSvJ4SuO_CV2Ygwg8T-RYonV1s92LDnQqQCBYpYpPk6XRVdPArfW6YCj1xXxxpAfaAyrT_BugCqg1NQSbj9kV_bEjceQ&h=mPhUygwJWxnHEhYaMPeCGr-REsUVtILX8cjhEPvwmIs cache-control: - no-store, no-cache content-length: @@ -5003,9 +5193,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:12 GMT + - Sun, 03 Mar 2024 21:57:35 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/9f631d92-d69a-42bc-8a8d-a089923718fc?api-version=2023-11-15&t=638450349728387260&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Ne8UTKv52HWGyf6m22n0Z866NanSaNQA_xcDY9y2ZU6Bb_uVCdpyCyYm3wbsJ-Fnlz6m4S6Hruuywdb41fp6vb9ZLzPPJmMCArdVphojPATACBgI-iJzCpDsOIjaqdoNpyLayu3h5dMu3-0r57K9Kk3hv_WHTf6dI9Vd9P_H8WT1mbLIkGyEgy9k8mcCEih4rYJIP02g9Af_PuMAfjAE4SKreNFr5Ypgtp3SmlJxSI0YXOna2680QmxpBi4Dod0WowU4b2NVAPK44xQVIqjclDm9jO3VNFTtb9OzlHb9fpUNk-Rul5hb9LR-s108ObTKt3LNYXMED4GViMNlb7bbNQ&h=H35XkqNYYb1fgZByYh3d9St1ocCdpHlQk_lWM9Ddlec + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/4f7000d5-0c05-4137-b90e-5a7d3e9608b6?api-version=2023-11-15&t=638450998560325218&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Us3PAeddfjCxePyTdjM8IcZ8QoDiTG9euJbjEDVU0IcByamTdU3_Y6XfxZU3RIUnh8H5gCLBMlQC7m-llAesBcofj5XZX_iu1uYOOW9a98EsJnolikLzMrDsZ0wFSJ3Q6MRxguYLT8Qv0rs73nPjGS5I7d206khtCf08MMrXJIsyoAoIU7UM0e67Cehx98lr71Cr50bjsqkz5ViiYQ6_Cuy9YyyUGBD3ze1vsoUmu241-IPSD2m0hzgKwy24tLCiqFTzjBG-B4lLPwOv8Wkq9j32FiVNsfgzu8RraHv_9OLDLGGIoIBLgL-3CVgsdmFScrO8CF9G1cgTTeefVvTjYw&h=YhOPmBmZ8feOQXGWtUPrp9cUYgynQ1Lb5_UL66JBWXM pragma: - no-cache strict-transport-security: @@ -5019,7 +5209,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: EA638DEA00CA474D91ABAA5A3FE0B86A Ref B: MNZ221060610021 Ref C: 2024-03-03T03:56:11Z' + - 'Ref A: 7F03C6614261439793D962EB863022E6 Ref B: BL2AA2030103023 Ref C: 2024-03-03T21:57:35Z' status: code: 202 message: Accepted @@ -5039,7 +5229,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f631d92-d69a-42bc-8a8d-a089923718fc?api-version=2023-11-15&t=638450349728387260&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r88nXIkv3HOLWeHQYF9GAINZTdrJSsbEKWK-6F99lNzERT5093y0XEySQ_4XyoIJiOlG-v85hy3QB98yGPTDPXHK25pcytdGFLthMEuVlfNlNp65AgW21YoA-fJmUymgePT8VeKn3fzI56e1zsOYkPmRZWYHP7VbmwmT73VOuFWxrtwqLOlcNdesBS_lAjHdOhWTQyjlnabA8EWK-9Q1tcnpWvW1T3fOjQwHatBHdmBhJiB9zonoJO13T-uyfpL3aI9Xmtx2G0BA8o9WBxuEF6RwoPcTcQUUB8voInF45qi1eUOWCJAUy6WzSnD5KfRw_HydNfpqrZPnQB-e250AGg&h=yLMH-Tc-j3uheJlpH0h80rT5fwcCWrnFD-vLjRUe28A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f7000d5-0c05-4137-b90e-5a7d3e9608b6?api-version=2023-11-15&t=638450998560325218&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KK1-43Crfl4dLuByqZ--vbcKfcYgfpGJeAsXTpW0nkq8n4-P6KaiiYQ0SD4CrtrCbtFBV5p07m5uHhQMk-Mf3cd4yfOYXolJzosiyzF_jxQd-d_D4lmLv8E-fs-gpnPCKb39vRnvwk_BatuDkjn0YOHpKutpUpxKM_J-LYGcAshKD-EmEXufvZPV4QFiAGsstkoEYoptXgZ7HgXVs14E5RU3rCoheNwmPxytrSObuSj8ltnrjlubbIqIVDWSvJ4SuO_CV2Ygwg8T-RYonV1s92LDnQqQCBYpYpPk6XRVdPArfW6YCj1xXxxpAfaAyrT_BugCqg1NQSbj9kV_bEjceQ&h=mPhUygwJWxnHEhYaMPeCGr-REsUVtILX8cjhEPvwmIs response: body: string: '{"status":"Enqueued"}' @@ -5051,7 +5241,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:12 GMT + - Sun, 03 Mar 2024 21:57:35 GMT pragma: - no-cache strict-transport-security: @@ -5063,7 +5253,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: B11F4D748F8C4691AE2E33C539EC47B9 Ref B: MNZ221060609037 Ref C: 2024-03-03T03:56:12Z' + - 'Ref A: 790DC1E564A24DFE8FABD2B0BBB3E3CE Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:57:36Z' status: code: 200 message: Ok @@ -5083,7 +5273,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f631d92-d69a-42bc-8a8d-a089923718fc?api-version=2023-11-15&t=638450349728387260&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=r88nXIkv3HOLWeHQYF9GAINZTdrJSsbEKWK-6F99lNzERT5093y0XEySQ_4XyoIJiOlG-v85hy3QB98yGPTDPXHK25pcytdGFLthMEuVlfNlNp65AgW21YoA-fJmUymgePT8VeKn3fzI56e1zsOYkPmRZWYHP7VbmwmT73VOuFWxrtwqLOlcNdesBS_lAjHdOhWTQyjlnabA8EWK-9Q1tcnpWvW1T3fOjQwHatBHdmBhJiB9zonoJO13T-uyfpL3aI9Xmtx2G0BA8o9WBxuEF6RwoPcTcQUUB8voInF45qi1eUOWCJAUy6WzSnD5KfRw_HydNfpqrZPnQB-e250AGg&h=yLMH-Tc-j3uheJlpH0h80rT5fwcCWrnFD-vLjRUe28A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f7000d5-0c05-4137-b90e-5a7d3e9608b6?api-version=2023-11-15&t=638450998560325218&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=KK1-43Crfl4dLuByqZ--vbcKfcYgfpGJeAsXTpW0nkq8n4-P6KaiiYQ0SD4CrtrCbtFBV5p07m5uHhQMk-Mf3cd4yfOYXolJzosiyzF_jxQd-d_D4lmLv8E-fs-gpnPCKb39vRnvwk_BatuDkjn0YOHpKutpUpxKM_J-LYGcAshKD-EmEXufvZPV4QFiAGsstkoEYoptXgZ7HgXVs14E5RU3rCoheNwmPxytrSObuSj8ltnrjlubbIqIVDWSvJ4SuO_CV2Ygwg8T-RYonV1s92LDnQqQCBYpYpPk6XRVdPArfW6YCj1xXxxpAfaAyrT_BugCqg1NQSbj9kV_bEjceQ&h=mPhUygwJWxnHEhYaMPeCGr-REsUVtILX8cjhEPvwmIs response: body: string: '{"status":"Succeeded"}' @@ -5095,7 +5285,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:42 GMT + - Sun, 03 Mar 2024 21:58:06 GMT pragma: - no-cache strict-transport-security: @@ -5107,7 +5297,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 2ED20AFC05404AE8A3328EFA35395511 Ref B: MNZ221060608035 Ref C: 2024-03-03T03:56:43Z' + - 'Ref A: 2BACE2E881BC4A009C74C4BCD8718FA7 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:58:06Z' status: code: 200 message: Ok @@ -5139,7 +5329,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:44 GMT + - Sun, 03 Mar 2024 21:58:06 GMT pragma: - no-cache strict-transport-security: @@ -5151,7 +5341,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 0494DD5AE5C34F289994DED0AFA9723F Ref B: MNZ221060609039 Ref C: 2024-03-03T03:56:43Z' + - 'Ref A: FF90E4699EF74B2E962DF9092E364A3B Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:58:06Z' status: code: 200 message: Ok @@ -5175,9 +5365,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -5199,87 +5389,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -5294,104 +5482,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -5400,60 +5588,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -5462,19 +5650,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -5482,224 +5670,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:58:08Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:56:46Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -5730,238 +5926,243 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -5976,292 +6177,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -6269,256 +6470,339 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:56:47Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T21:58:10Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:58:07Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:58:07Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:58:07Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:56:45Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:58:08Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:58:07Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:56:44Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:58:07Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -6530,11 +6814,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429494' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 03:56:48 GMT + - Sun, 03 Mar 2024 21:58:12 GMT expires: - '-1' pragma: @@ -6587,7 +6871,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: C51386BA293C4D2495166CA11A990319 Ref B: MNZ221060609007 Ref C: 2024-03-03T03:56:44Z' + - 'Ref A: D5761532D04A4DBB89A6603CD7E1E0F7 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:58:07Z' status: code: 200 message: OK @@ -6607,10 +6891,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/51564674-adcf-4ae9-9043-c983cd48cf9f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"51564674-adcf-4ae9-9043-c983cd48cf9f","properties":{"resource":{"_rid":"DorQxAAAAA==","eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}}]}' headers: cache-control: - no-store, no-cache @@ -6619,7 +6903,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:50 GMT + - Sun, 03 Mar 2024 21:58:13 GMT pragma: - no-cache strict-transport-security: @@ -6631,7 +6915,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: A0FBBD5C76F74FE3820FE85817520824 Ref B: MNZ221060610017 Ref C: 2024-03-03T03:56:49Z' + - 'Ref A: 9D1410C2877C4069BACBD67B8A066809 Ref B: MNZ221060610019 Ref C: 2024-03-03T21:58:12Z' status: code: 200 message: Ok @@ -6655,9 +6939,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -6679,87 +6963,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -6774,104 +7056,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -6880,60 +7162,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -6942,19 +7224,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -6962,224 +7244,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:58:15Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -7210,238 +7500,243 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -7456,292 +7751,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -7749,256 +8044,339 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:56:54Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T21:58:17Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:58:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:58:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:58:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:58: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"}]}},{"name":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:56:52Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:58:15Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:58:14Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:56:51Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:58:14Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -8010,11 +8388,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429494' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 03:56:55 GMT + - Sun, 03 Mar 2024 21:58:18 GMT expires: - '-1' pragma: @@ -8067,7 +8445,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: C2F65206B6EB483A9563AF15FACCCD40 Ref B: MNZ221060610011 Ref C: 2024-03-03T03:56:51Z' + - 'Ref A: D4B82F35840442BF8C8E3C76EB6A0AA8 Ref B: MNZ221060609037 Ref C: 2024-03-03T21:58:14Z' status: code: 200 message: OK @@ -8087,10 +8465,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/51564674-adcf-4ae9-9043-c983cd48cf9f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"51564674-adcf-4ae9-9043-c983cd48cf9f","properties":{"resource":{"_rid":"DorQxAAAAA==","eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}}]}' headers: cache-control: - no-store, no-cache @@ -8099,7 +8477,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:57 GMT + - Sun, 03 Mar 2024 21:58:20 GMT pragma: - no-cache strict-transport-security: @@ -8111,14 +8489,14 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 2A905EA70C434DE9980522C5232216F5 Ref B: MNZ221060609049 Ref C: 2024-03-03T03:56:56Z' + - 'Ref A: 17B2BEF8B38E4785B77A494538485775 Ref B: MNZ221060609007 Ref C: 2024-03-03T21:58:19Z' status: code: 200 message: Ok - request: body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", - "restoreTimestampInUtc": "2024-03-03T03:56:17.000Z"}, "createMode": "Restore"}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6", + "restoreTimestampInUtc": "2024-03-03T21:57:40.000Z"}, "createMode": "Restore"}}}' headers: Accept: - application/json @@ -8143,7 +8521,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/119d0c1c-a1b7-4a5b-8067-e8e4dc4ca6fa?api-version=2024-02-15-preview&t=638450999022229785&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qyLK-HnddambyWeRtIRI4QUMLvQpP3bj_BS0Slb2EpFe1uUOQCosmg_cuFZSa26FPSDm8eVjvn6HObRf_U7I7WPlTfIHfiznDETCo731RBO_qg1gXOU7iE9DpAv9plCk3J96kX5WLBkdox8996Kimp7C_DAbFtC9Q1PTPuE5HzGmhKaRtnVQ9bQr5AsKgHcxGUTOsKh2rS3Td7D6MBu1k5ewjjPXLm78yLlEwV5oARsiZSzaKiTKxVfdXpOYqfuuKeASfbtLQku01Tng_WEvX2Se-xVUQfSUcPrJF_vOcYdIClNDd5hExrcTfzSJOLJtY_bScyk14aTFfOgpCJMK-Q&h=L9qv9TKieei7KXDNGWBmDcMsknSvpgJibVrOObyy6B4 cache-control: - no-store, no-cache content-length: @@ -8151,9 +8529,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:58 GMT + - Sun, 03 Mar 2024 21:58:21 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190917976&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=L48Xtjzn_t-eSSA3nUJnF1633glrpCwwjbJ05eGSNCvYkqGLikeX5Ca0EhJqjTCsIwdHsnuNgyKU1sVf0jWX1NKvzRFVoxy-pLNyQ66QkO7XQaK9ZoPhyG4gW9b4cxbTZYP_rud1BsDHVjmTWrAliSBz3z3TNMP8BsCS21-vZ9-TnEcLneubL4pTVda74XSBq3LvlLCQLSevQIcWS5XcBpxzYHo-2ZyR3L7MY7PULz719OcWvLtCW5rKGDn4cT2mn2StfD1ub6ykMfjk1W97Wi3Ht3YDEqXtDEolXWVL8sEpVNJ_LTea4scMO0aVClJBRyKgorAjv6d8kDwrWJrqpg&h=XStyaujra_PDL9q3b9Lls9Wa22DPGKsdzGMvgzuORVk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/119d0c1c-a1b7-4a5b-8067-e8e4dc4ca6fa?api-version=2024-02-15-preview&t=638450999022387282&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FGvTzwDaZXKOscB3oMAIJlNPR1V_K9iXH7elX20aOZXatJPqEzwUFMuPibMG0Ro7ywtIMj0-7FXpauUIyFxJE8-LUTxyaLK5gjDYLr-xvhzXoqjK3AyORK2_b2CkTIrs5NLwg3OeQdWBqYK6SJ06c2fH7yp4Erlc-lcz8MJqR4CMAGb38JzU5UmK4oaS7txvyjXnfacrgkIqLUZ-NtYxwUwav-NlUdEpY99QSL_PvAxckvTEsK06-XSibL1a5AdhP3fZH1fItuI-JDZi4dH1oLcFhF0OSPiIDyaCGNoFfcKBzC4QKOPYkVapSg_QChqTLVPSNwjTRlpiK8cRlJMs0g&h=aqLCnILThGnYJ09yoJp85ewMI8e0YQ_vk_iX-sNeT3s pragma: - no-cache strict-transport-security: @@ -8167,7 +8545,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: B31BEF91E878429F9F629749993611EC Ref B: MNZ221060608039 Ref C: 2024-03-03T03:56:58Z' + - 'Ref A: 4E65F9758BF24A5491F34D0E46F6BF93 Ref B: MNZ221060609039 Ref C: 2024-03-03T21:58:21Z' status: code: 202 message: Accepted @@ -8187,7 +8565,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/119d0c1c-a1b7-4a5b-8067-e8e4dc4ca6fa?api-version=2024-02-15-preview&t=638450999022229785&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qyLK-HnddambyWeRtIRI4QUMLvQpP3bj_BS0Slb2EpFe1uUOQCosmg_cuFZSa26FPSDm8eVjvn6HObRf_U7I7WPlTfIHfiznDETCo731RBO_qg1gXOU7iE9DpAv9plCk3J96kX5WLBkdox8996Kimp7C_DAbFtC9Q1PTPuE5HzGmhKaRtnVQ9bQr5AsKgHcxGUTOsKh2rS3Td7D6MBu1k5ewjjPXLm78yLlEwV5oARsiZSzaKiTKxVfdXpOYqfuuKeASfbtLQku01Tng_WEvX2Se-xVUQfSUcPrJF_vOcYdIClNDd5hExrcTfzSJOLJtY_bScyk14aTFfOgpCJMK-Q&h=L9qv9TKieei7KXDNGWBmDcMsknSvpgJibVrOObyy6B4 response: body: string: '{"status":"Enqueued"}' @@ -8199,7 +8577,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:56:58 GMT + - Sun, 03 Mar 2024 21:58:22 GMT pragma: - no-cache strict-transport-security: @@ -8211,7 +8589,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 6C7C58E92AEE422F9D149401A63AAAD7 Ref B: MNZ221060610051 Ref C: 2024-03-03T03:56:59Z' + - 'Ref A: F5024E7B11CF41A28753D8DACDABD2AD Ref B: MNZ221060610051 Ref C: 2024-03-03T21:58:22Z' status: code: 200 message: Ok @@ -8231,7 +8609,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/119d0c1c-a1b7-4a5b-8067-e8e4dc4ca6fa?api-version=2024-02-15-preview&t=638450999022229785&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qyLK-HnddambyWeRtIRI4QUMLvQpP3bj_BS0Slb2EpFe1uUOQCosmg_cuFZSa26FPSDm8eVjvn6HObRf_U7I7WPlTfIHfiznDETCo731RBO_qg1gXOU7iE9DpAv9plCk3J96kX5WLBkdox8996Kimp7C_DAbFtC9Q1PTPuE5HzGmhKaRtnVQ9bQr5AsKgHcxGUTOsKh2rS3Td7D6MBu1k5ewjjPXLm78yLlEwV5oARsiZSzaKiTKxVfdXpOYqfuuKeASfbtLQku01Tng_WEvX2Se-xVUQfSUcPrJF_vOcYdIClNDd5hExrcTfzSJOLJtY_bScyk14aTFfOgpCJMK-Q&h=L9qv9TKieei7KXDNGWBmDcMsknSvpgJibVrOObyy6B4 response: body: string: '{"status":"Dequeued"}' @@ -8243,7 +8621,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:57:29 GMT + - Sun, 03 Mar 2024 21:58:52 GMT pragma: - no-cache strict-transport-security: @@ -8255,7 +8633,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 3F7D369461104A70B918FD07F5160DB7 Ref B: MNZ221060608049 Ref C: 2024-03-03T03:57:29Z' + - 'Ref A: 6C33F1BBD52C496EBBD8AD814419A220 Ref B: MNZ221060608039 Ref C: 2024-03-03T21:58:52Z' status: code: 200 message: Ok @@ -8275,7 +8653,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/119d0c1c-a1b7-4a5b-8067-e8e4dc4ca6fa?api-version=2024-02-15-preview&t=638450999022229785&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qyLK-HnddambyWeRtIRI4QUMLvQpP3bj_BS0Slb2EpFe1uUOQCosmg_cuFZSa26FPSDm8eVjvn6HObRf_U7I7WPlTfIHfiznDETCo731RBO_qg1gXOU7iE9DpAv9plCk3J96kX5WLBkdox8996Kimp7C_DAbFtC9Q1PTPuE5HzGmhKaRtnVQ9bQr5AsKgHcxGUTOsKh2rS3Td7D6MBu1k5ewjjPXLm78yLlEwV5oARsiZSzaKiTKxVfdXpOYqfuuKeASfbtLQku01Tng_WEvX2Se-xVUQfSUcPrJF_vOcYdIClNDd5hExrcTfzSJOLJtY_bScyk14aTFfOgpCJMK-Q&h=L9qv9TKieei7KXDNGWBmDcMsknSvpgJibVrOObyy6B4 response: body: string: '{"status":"Dequeued"}' @@ -8287,7 +8665,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:57:58 GMT + - Sun, 03 Mar 2024 21:59:22 GMT pragma: - no-cache strict-transport-security: @@ -8299,7 +8677,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: DF99A49A75B34D6EB927AC9932C84F83 Ref B: MNZ221060608021 Ref C: 2024-03-03T03:57:59Z' + - 'Ref A: 50395EDD0C5449F49100E9028C08F405 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:59:22Z' status: code: 200 message: Ok @@ -8319,7 +8697,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/119d0c1c-a1b7-4a5b-8067-e8e4dc4ca6fa?api-version=2024-02-15-preview&t=638450999022229785&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qyLK-HnddambyWeRtIRI4QUMLvQpP3bj_BS0Slb2EpFe1uUOQCosmg_cuFZSa26FPSDm8eVjvn6HObRf_U7I7WPlTfIHfiznDETCo731RBO_qg1gXOU7iE9DpAv9plCk3J96kX5WLBkdox8996Kimp7C_DAbFtC9Q1PTPuE5HzGmhKaRtnVQ9bQr5AsKgHcxGUTOsKh2rS3Td7D6MBu1k5ewjjPXLm78yLlEwV5oARsiZSzaKiTKxVfdXpOYqfuuKeASfbtLQku01Tng_WEvX2Se-xVUQfSUcPrJF_vOcYdIClNDd5hExrcTfzSJOLJtY_bScyk14aTFfOgpCJMK-Q&h=L9qv9TKieei7KXDNGWBmDcMsknSvpgJibVrOObyy6B4 response: body: string: '{"status":"Dequeued"}' @@ -8331,7 +8709,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:58:29 GMT + - Sun, 03 Mar 2024 21:59:52 GMT pragma: - no-cache strict-transport-security: @@ -8343,7 +8721,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: C6E704B1408C416AABFD790D6BC3EBAA Ref B: MNZ221060609037 Ref C: 2024-03-03T03:58:29Z' + - 'Ref A: 8F4A0A718E8448B6B7FB6ED3DFAFE6F3 Ref B: MNZ221060608011 Ref C: 2024-03-03T21:59:53Z' status: code: 200 message: Ok @@ -8363,7 +8741,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/963e2399-e498-47a8-b032-07bbfd61b649?api-version=2024-02-15-preview&t=638450350190761716&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=D2wYv3UQPNgwHg8_KGb_dhmtXkI2E1xotCE7iPkGaxy6QVf9fJDbALWp9ii4ZfcIBhXu8i5Xyf9AeDulvf--tcztOmKd0Pecja4OBotj9ZA_GiHCxwtJdenReI1e5pzww8H3bDWEI1rEdshd-I2AeAd3LM9c_vnn8e7lR2b0uw7DAHMbvG2M8LM8NSm38vULx3yUnsktWEkWIds3uBCt1gZR4V5Nx40Y3B-tcpLxBhZDM-Cg0-YBLzHS4kAWsuKL3RYzH4717Zx6cUK6NNYZDPHzutHg2W2UF3RjKJIuOX4B24DLEJN4jpPdF2_0Sqi3gPWfMDWm38kQPCL0X0yEOg&h=SZ_LMan6mV7Ja_slW4ANaMh_z4XtN9Fp2PsLA39dWMY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/119d0c1c-a1b7-4a5b-8067-e8e4dc4ca6fa?api-version=2024-02-15-preview&t=638450999022229785&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qyLK-HnddambyWeRtIRI4QUMLvQpP3bj_BS0Slb2EpFe1uUOQCosmg_cuFZSa26FPSDm8eVjvn6HObRf_U7I7WPlTfIHfiznDETCo731RBO_qg1gXOU7iE9DpAv9plCk3J96kX5WLBkdox8996Kimp7C_DAbFtC9Q1PTPuE5HzGmhKaRtnVQ9bQr5AsKgHcxGUTOsKh2rS3Td7D6MBu1k5ewjjPXLm78yLlEwV5oARsiZSzaKiTKxVfdXpOYqfuuKeASfbtLQku01Tng_WEvX2Se-xVUQfSUcPrJF_vOcYdIClNDd5hExrcTfzSJOLJtY_bScyk14aTFfOgpCJMK-Q&h=L9qv9TKieei7KXDNGWBmDcMsknSvpgJibVrOObyy6B4 response: body: string: '{"status":"Succeeded"}' @@ -8375,7 +8753,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:58:59 GMT + - Sun, 03 Mar 2024 22:00:23 GMT pragma: - no-cache strict-transport-security: @@ -8387,7 +8765,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 1D37D29DC72C48698D1507785E077CD0 Ref B: MNZ221060609035 Ref C: 2024-03-03T03:58:59Z' + - 'Ref A: A69BB5D5CC86448994799C6C5EDA61BA Ref B: MNZ221060609027 Ref C: 2024-03-03T22:00:23Z' status: code: 200 message: Ok @@ -8410,7 +8788,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00003004-0000-0700-0000-65e4f2a50000\"","_colls":"colls/","_users":"users/","_ts":1709503141}}}' headers: cache-control: - no-store, no-cache @@ -8419,7 +8797,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:58:59 GMT + - Sun, 03 Mar 2024 22:00:23 GMT pragma: - no-cache strict-transport-security: @@ -8431,7 +8809,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: AC02633304B14694A90B6D035EEA2AB2 Ref B: MNZ221060608009 Ref C: 2024-03-03T03:59:00Z' + - 'Ref A: CA3A814FAD9A465AB3528E0ADB648991 Ref B: MNZ221060610045 Ref C: 2024-03-03T22:00:23Z' status: code: 200 message: Ok @@ -8454,7 +8832,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00003004-0000-0700-0000-65e4f2a50000\"","_colls":"colls/","_users":"users/","_ts":1709503141}}}' headers: cache-control: - no-store, no-cache @@ -8463,7 +8841,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:59:00 GMT + - Sun, 03 Mar 2024 22:00:24 GMT pragma: - no-cache strict-transport-security: @@ -8475,7 +8853,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 33C43FD0E65F40E996F7281DF84CEE0C Ref B: MNZ221060610047 Ref C: 2024-03-03T03:59:01Z' + - 'Ref A: A3615B323C56428C955C1E8376C879D3 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:00:24Z' status: code: 200 message: Ok @@ -8507,7 +8885,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:59:01 GMT + - Sun, 03 Mar 2024 22:00:24 GMT pragma: - no-cache strict-transport-security: @@ -8519,7 +8897,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 6137F354AB9E4158A9AB3D18DF8807CF Ref B: MNZ221060608039 Ref C: 2024-03-03T03:59:01Z' + - 'Ref A: D17A1ACF936A48A088CA9EE80A72A7A5 Ref B: MNZ221060610011 Ref C: 2024-03-03T22:00:24Z' status: code: 200 message: Ok @@ -8543,9 +8921,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -8567,87 +8945,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -8662,104 +9038,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -8768,60 +9144,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -8830,19 +9206,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -8850,224 +9226,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-03T21:59:31Z","oldestRestorableTime":"2024-02-25T21:59:31Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T22:00:27Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T22:00:27Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -9098,238 +9482,243 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -9344,292 +9733,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -9637,256 +10026,340 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T03:59:05Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z","deletionTime":"2024-03-03T21:51:02Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T22:00:28Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T22:00:25Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T22:00:25Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T22:00:25Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T03:59:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T22:00:26Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T22:00:25Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T03:59:02Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T22:00:25Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -9898,11 +10371,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429673' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 03:59:06 GMT + - Sun, 03 Mar 2024 22:00:30 GMT expires: - '-1' pragma: @@ -9955,7 +10428,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: 8BF391C18C76458B98B3B2947341AD3E Ref B: MNZ221060609029 Ref C: 2024-03-03T03:59:02Z' + - 'Ref A: 91404BCA1BB34DC7BACFD998E93BD4C6 Ref B: MNZ221060610025 Ref C: 2024-03-03T22:00:25Z' status: code: 200 message: OK @@ -9975,11 +10448,11 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database - already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","properties":{"resource":{"_rid":"FMsMBwAAAA==","eventTimestamp":"2024-03-03T21:59:01Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/51564674-adcf-4ae9-9043-c983cd48cf9f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"51564674-adcf-4ae9-9043-c983cd48cf9f","properties":{"resource":{"_rid":"DorQxAAAAA==","eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}}]}' headers: cache-control: - no-store, no-cache @@ -9988,7 +10461,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:59:08 GMT + - Sun, 03 Mar 2024 22:00:32 GMT pragma: - no-cache strict-transport-security: @@ -10000,7 +10473,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 3F26C45050FC4FADAF284B41289974D5 Ref B: BL2AA2030101025 Ref C: 2024-03-03T03:59:07Z' + - 'Ref A: 4B21D3DA854B48179FE2191809652EE5 Ref B: MNZ221060608023 Ref C: 2024-03-03T22:00:31Z' status: code: 200 message: Ok @@ -10020,10 +10493,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=uHUNAA%3D%3D response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/d2cdb731-0d0a-435d-88aa-a99bb0777f95","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"d2cdb731-0d0a-435d-88aa-a99bb0777f95","properties":{"resource":{"_rid":"prmnZQAAAA==","eventTimestamp":"2024-03-03T03:54:30Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/CWYYAOyc-Tk=:1709438178","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"CWYYAOyc-Tk=:1709438178","properties":{"resource":{"eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/3ca4b7fd-60d7-4901-a26b-c75fa04b0b14","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"3ca4b7fd-60d7-4901-a26b-c75fa04b0b14","properties":{"resource":{"_rid":"xrMAHwAAAA==","eventTimestamp":"2024-03-03T21:55:47Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"08918ec7-d9a8-11ee-a311-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:49:45+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00002904-0000-0700-0000-65e4f15b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502811}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/e1ab0a0f-10db-4ac6-b637-4b38603f8534","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"e1ab0a0f-10db-4ac6-b637-4b38603f8534","properties":{"resource":{"_rid":"L-YcTwAAAA==","eventTimestamp":"2024-03-03T21:49:46Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502254}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/19efe544-d19c-4acb-8610-4bcbae2beb43","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"19efe544-d19c-4acb-8610-4bcbae2beb43","properties":{"resource":{"_rid":"jQxpgAAAAA==","eventTimestamp":"2024-03-03T21:44:14Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/uHUNAKPPXL8=:1709503061","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"uHUNAKPPXL8=:1709503061","properties":{"resource":{"eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"08918ec7-d9a8-11ee-a311-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:49:45+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00002904-0000-0700-0000-65e4f15b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502811}}}}]}' headers: cache-control: - no-store, no-cache @@ -10032,7 +10505,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:59:09 GMT + - Sun, 03 Mar 2024 22:00:33 GMT pragma: - no-cache strict-transport-security: @@ -10044,14 +10517,14 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 24CFE425809B4BD28D814B003C2DE82D Ref B: BL2AA2010204017 Ref C: 2024-03-03T03:59:08Z' + - 'Ref A: E23E81DF0FED4206B27D30AFE03A8024 Ref B: MNZ221060610037 Ref C: 2024-03-03T22:00:32Z' status: code: 200 message: Ok - request: body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", - "restoreTimestampInUtc": "2024-03-03T03:56:17.000Z"}, "createMode": "Restore"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6", + "restoreTimestampInUtc": "2024-03-03T21:57:40.000Z"}, "createMode": "Restore"}, "options": {}}}' headers: Accept: @@ -10077,7 +10550,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc cache-control: - no-store, no-cache content-length: @@ -10085,9 +10558,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:59:11 GMT + - Sun, 03 Mar 2024 22:00:34 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517178294&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=d4hLCOsszZ4FXTh78sFP5Vji6htzqIWxZVBWsmDh7hatJzCcPz-dz2sa6T4EbtWif1g_-K3rhVGc2C3qBChuwTvkDe_iZ5671Q2jjs00SoTIycrIvCQTVIXJSwuJjV94_x30QMD-mB0tY0g0MGSyLC15UXZnIpjukXc8kCbc75q-tqoV8sjeAFBwKYF-GlWTp42BYq6sY31ZmOXIe7b1YwCPtv_ZzPfHbkK1KHlm3fg_rArcoU4Ofezg5bFJ2Ma0wbbbQ-J_F3DDaiN2T0sUM2EtMSqkfuDFPhc3kg6Z9JU3MP_w9rOu87T9_4hhMG063lDu9cppeGSOHJ6WcaJyUQ&h=azeMyqz2Hi5xPvO5o3vCiVwE0UXaq9uDp_dsCWqJEug + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345857867&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CTslEu1wtmLCQfbO2gNGlmQ-H75t_YJq_JGlU86TMVgTnZCWK8Ssa2wqxohkCwgcup15kFhkJHBBxjDrORVMcTgivZCmzKWLGTcKr5luZI8Z-7el1y7MG3qKAXNGBYuOWP-UlHolQx36pr7zeiafHK7M2U1Bn3APsR6k7fhtMuPE2dHlhJjx0Quk5koZT5WU2cM-2GdJUFMhVJe3GVYeP0OSNhnKJ-4R28pZiiv7jkLop85GCqaYcCUnYiMKUEzhu-irryD0T7OYbkOrMopexFh0IpJM237pz7se4sOOBksZpeToOc1Nwfy4M2q8U1gaXUmtBPWsZkIc6w7qT3_7VA&h=qVVRSumIUwMuuXJYNapgwTsiBWR6EpuND6zX6IcX2wo pragma: - no-cache strict-transport-security: @@ -10101,7 +10574,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: F97DD62C8D9D4519A2922580EA9CEE91 Ref B: BL2AA2030104039 Ref C: 2024-03-03T03:59:10Z' + - 'Ref A: 90A24D38A298455DBD03FE64242B1A31 Ref B: MNZ221060609037 Ref C: 2024-03-03T22:00:33Z' status: code: 202 message: Accepted @@ -10121,7 +10594,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Enqueued"}' @@ -10133,7 +10606,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:59:11 GMT + - Sun, 03 Mar 2024 22:00:34 GMT pragma: - no-cache strict-transport-security: @@ -10145,7 +10618,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 55C49BC5B89F4AB7A9D1C61323F91AC3 Ref B: BL2AA2010203037 Ref C: 2024-03-03T03:59:11Z' + - 'Ref A: BEEE60EA20D544D9AB64843600589CE3 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:00:34Z' status: code: 200 message: Ok @@ -10165,7 +10638,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10177,7 +10650,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 03:59:41 GMT + - Sun, 03 Mar 2024 22:01:04 GMT pragma: - no-cache strict-transport-security: @@ -10189,7 +10662,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: D17C96C56F474C018724730B6C758909 Ref B: MNZ221060609009 Ref C: 2024-03-03T03:59:42Z' + - 'Ref A: E3B26A66619746668C5729857F3389CB Ref B: MNZ221060610047 Ref C: 2024-03-03T22:01:04Z' status: code: 200 message: Ok @@ -10209,7 +10682,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10221,7 +10694,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:00:11 GMT + - Sun, 03 Mar 2024 22:01:35 GMT pragma: - no-cache strict-transport-security: @@ -10233,7 +10706,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: DD9EBFFB1A3344248FF86BF64FF0406F Ref B: BL2AA2030102023 Ref C: 2024-03-03T04:00:12Z' + - 'Ref A: 185D60AEB7E34ADE939EB1EC9EDA9B54 Ref B: MNZ221060609025 Ref C: 2024-03-03T22:01:35Z' status: code: 200 message: Ok @@ -10253,7 +10726,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10265,7 +10738,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:00:42 GMT + - Sun, 03 Mar 2024 22:02:04 GMT pragma: - no-cache strict-transport-security: @@ -10277,7 +10750,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: DAB8858D50844BC6B07CB32DE0C86007 Ref B: BL2AA2030101045 Ref C: 2024-03-03T04:00:42Z' + - 'Ref A: 01CC2F44988E463AADBA1150F235999E Ref B: MNZ221060609045 Ref C: 2024-03-03T22:02:05Z' status: code: 200 message: Ok @@ -10297,7 +10770,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10309,7 +10782,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:01:12 GMT + - Sun, 03 Mar 2024 22:02:35 GMT pragma: - no-cache strict-transport-security: @@ -10321,7 +10794,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 2A9C9C02987B4387876248B7F3B09375 Ref B: MNZ221060609053 Ref C: 2024-03-03T04:01:12Z' + - 'Ref A: F4D06C6BC7784E4699A65A01988D3890 Ref B: MNZ221060608035 Ref C: 2024-03-03T22:02:35Z' status: code: 200 message: Ok @@ -10341,7 +10814,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10353,7 +10826,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:01:42 GMT + - Sun, 03 Mar 2024 22:03:05 GMT pragma: - no-cache strict-transport-security: @@ -10365,7 +10838,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: EB4A25C05AF94FD0A4B639366CC16DB8 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:01:42Z' + - 'Ref A: 88B68A4CE7F8459A9790272DA20C2A8E Ref B: MNZ221060609037 Ref C: 2024-03-03T22:03:05Z' status: code: 200 message: Ok @@ -10385,7 +10858,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10397,7 +10870,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:02:12 GMT + - Sun, 03 Mar 2024 22:03:35 GMT pragma: - no-cache strict-transport-security: @@ -10409,7 +10882,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 43E6A4FFAFC846F0B598F077D5FEBCB6 Ref B: BL2AA2010205005 Ref C: 2024-03-03T04:02:13Z' + - 'Ref A: 3EF6858A2B3D4B24915145B7C578A44E Ref B: MNZ221060608021 Ref C: 2024-03-03T22:03:35Z' status: code: 200 message: Ok @@ -10429,7 +10902,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10441,7 +10914,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:02:43 GMT + - Sun, 03 Mar 2024 22:04:06 GMT pragma: - no-cache strict-transport-security: @@ -10453,7 +10926,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 454EE0AE20B9454EB3AAAE45593D09DC Ref B: MNZ221060610023 Ref C: 2024-03-03T04:02:43Z' + - 'Ref A: C8AC5936902A476FBD90638DDFAA3100 Ref B: MNZ221060609037 Ref C: 2024-03-03T22:04:06Z' status: code: 200 message: Ok @@ -10473,7 +10946,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10485,7 +10958,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:03:13 GMT + - Sun, 03 Mar 2024 22:04:36 GMT pragma: - no-cache strict-transport-security: @@ -10497,7 +10970,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 14453AC805754E6789B38FC7F3B90355 Ref B: BL2AA2010201035 Ref C: 2024-03-03T04:03:13Z' + - 'Ref A: CD990FC51BEC41D6B981090F8EAD6BE9 Ref B: MNZ221060609039 Ref C: 2024-03-03T22:04:36Z' status: code: 200 message: Ok @@ -10517,7 +10990,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10529,7 +11002,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:03:43 GMT + - Sun, 03 Mar 2024 22:05:06 GMT pragma: - no-cache strict-transport-security: @@ -10541,7 +11014,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 8F9FCA023DE54A5AA77273BC8C5F2E68 Ref B: MNZ221060609011 Ref C: 2024-03-03T04:03:43Z' + - 'Ref A: EDC5A3647AFC4868ACF2E2402FB39DDC Ref B: MNZ221060609035 Ref C: 2024-03-03T22:05:06Z' status: code: 200 message: Ok @@ -10561,7 +11034,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10573,7 +11046,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:04:13 GMT + - Sun, 03 Mar 2024 22:05:36 GMT pragma: - no-cache strict-transport-security: @@ -10585,7 +11058,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 1DB3724D4B56406CB2A9252D1D3FE854 Ref B: MNZ221060610031 Ref C: 2024-03-03T04:04:13Z' + - 'Ref A: A0D6447AA58843F38D1031FBCEBA954F Ref B: MNZ221060609011 Ref C: 2024-03-03T22:05:36Z' status: code: 200 message: Ok @@ -10605,7 +11078,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10617,7 +11090,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:04:43 GMT + - Sun, 03 Mar 2024 22:06:06 GMT pragma: - no-cache strict-transport-security: @@ -10629,7 +11102,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 2E5F8FBC37E14254B31C733B12F1F074 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:04:44Z' + - 'Ref A: FC5618A201DF4EEAB939B6926C42DDB4 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:06:07Z' status: code: 200 message: Ok @@ -10649,7 +11122,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10661,7 +11134,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:05:14 GMT + - Sun, 03 Mar 2024 22:06:37 GMT pragma: - no-cache strict-transport-security: @@ -10673,7 +11146,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 5F6B143E2AC84D649F37F6D69265A562 Ref B: MNZ221060609039 Ref C: 2024-03-03T04:05:14Z' + - 'Ref A: DC442CAD46E24E80B8B705EDE545197A Ref B: MNZ221060608011 Ref C: 2024-03-03T22:06:37Z' status: code: 200 message: Ok @@ -10693,7 +11166,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Dequeued"}' @@ -10705,7 +11178,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:05:44 GMT + - Sun, 03 Mar 2024 22:07:07 GMT pragma: - no-cache strict-transport-security: @@ -10717,7 +11190,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 8DAD556F72404600BE6E5E86FFDE2458 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:05:44Z' + - 'Ref A: 0253ADB06E264E54930A781DD94BC31B Ref B: MNZ221060609021 Ref C: 2024-03-03T22:07:07Z' status: code: 200 message: Ok @@ -10737,7 +11210,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10b118a0-7e89-4759-859f-ff95f0e737a0?api-version=2024-02-15-preview&t=638450351517022022&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNP9v0f47BbdZNSE_oYFep92Oz54RJxLckJBYjAlsbubrqna3-uEQLhjNqV1CSL9rtqswGJeLX1Z5BKHvGmmd6wSHIMX14ZIYG7oNGz7dj1xhAOFIpcvGdluIpI617WI8VESRznYBuxtFqMP4GcapqQlmZzbquB3ddjCAA8LGcn3Ahsz0egXI1oD8rS8kKLMdmy0IJAs00Nq04-ZVPRfPtfJtlUL172e02w06YN5gTSlipSxHr4r-g0_vkcOqRLtOMyWj74VL_KQIzJJpVUFBFxdHIre7vg5qHGEvjn7SpJYulpYpLSt8upHACHg8UTEBkO83nIkSugMUjkv-td_Rg&h=RJyZFF5dYO5anuCc-PMXAu6leAaur1vYO1krTUaPPSU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83626048-ede8-48e6-912c-70b5dfebb563?api-version=2024-02-15-preview&t=638451000345701663&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tRb63Ba88YeIpj3j7eWdJisFsRqLYx6mhdjbVuxv-yUEhneBwzkJ65q0Cj3AxX0KyQ7K4sCCY93qR166ht2g2vw6jcthPSyf3KpCsAMmZz9BPTRbDHf0MsuRNvc3hcxZfAWzQ7452Of2PzvB80aKnHPcg6fwzYeb5O8OF_54A-skX15ihYfav6g_zBeofBRzsU5HBGlVm4KxUwjFw_o4o6xiX35epzxVkwF6PKiETJxAPO8uquWaHdeDZT9FL_ekh6VmyjteEbhSuj0zcJK8bh9AXAeE-9dIL2ALv2j9txutk5YUT3zJoEvi3Gmx_xkNzL-GwgWauOJcPyhcfeCt7Q&h=7sR-AIqngdCtrjpvy69g_JbDf0U_pPGH4cZhSD3hUsc response: body: string: '{"status":"Succeeded"}' @@ -10749,7 +11222,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:14 GMT + - Sun, 03 Mar 2024 22:07:36 GMT pragma: - no-cache strict-transport-security: @@ -10761,7 +11234,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 44014B3AAF854FF4ABF509250769DBC6 Ref B: MNZ221060608049 Ref C: 2024-03-03T04:06:14Z' + - 'Ref A: A597C410039D4C889997FA2A89723E4B Ref B: MNZ221060610045 Ref C: 2024-03-03T22:07:37Z' status: code: 200 message: Ok @@ -10784,7 +11257,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709438532,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"70308d5f-d9a9-11ee-9eb1-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:57:40+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709503412,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00003604-0000-0700-0000-65e4f3b40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache @@ -10793,7 +11266,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:14 GMT + - Sun, 03 Mar 2024 22:07:38 GMT pragma: - no-cache strict-transport-security: @@ -10805,7 +11278,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 190956CEB6394AC6AA90A134766E9BDD Ref B: MNZ221060610021 Ref C: 2024-03-03T04:06:14Z' + - 'Ref A: ACBD0DCF458644E8B4DB5F8042280A0C Ref B: MNZ221060609027 Ref C: 2024-03-03T22:07:37Z' status: code: 200 message: Ok @@ -10828,7 +11301,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709438532,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"70308d5f-d9a9-11ee-9eb1-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:57:40+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709503412,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00003604-0000-0700-0000-65e4f3b40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' headers: cache-control: - no-store, no-cache @@ -10837,7 +11310,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:14 GMT + - Sun, 03 Mar 2024 22:07:38 GMT pragma: - no-cache strict-transport-security: @@ -10849,7 +11322,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 996AE80C239F4F5A931D1AC387C83DD7 Ref B: MNZ221060608035 Ref C: 2024-03-03T04:06:15Z' + - 'Ref A: 5506E845262847AA8D94AE660C91F27F Ref B: MNZ221060608017 Ref C: 2024-03-03T22:07:39Z' status: code: 200 message: Ok @@ -10873,9 +11346,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -10897,87 +11370,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T22:07:39Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T22:07:39Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -10992,104 +11463,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -11098,60 +11569,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -11160,19 +11631,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -11180,224 +11651,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-03T21:59:31Z","oldestRestorableTime":"2024-02-25T21:59:31Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T22:07:41Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T22:07:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -11428,238 +11907,243 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -11674,292 +12158,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -11967,256 +12451,341 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:06:19Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z","deletionTime":"2024-03-03T21:51:02Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T22:07:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z","deletionTime":"2024-03-03T21:52:50Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T22:07:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T22:07:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T22:07:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:06:17Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T22:07:40Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:06:17Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:06:18Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T22:07:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T22:07:39Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T22:07:39Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T22:07:39Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T22:07:39Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T22:07:39Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:06:16Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T22:07:39Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -12228,11 +12797,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429850' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 04:06:20 GMT + - Sun, 03 Mar 2024 22:07:44 GMT expires: - '-1' pragma: @@ -12285,7 +12854,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: 1480438324AA4904B9642E18BB0C6775 Ref B: MNZ221060609007 Ref C: 2024-03-03T04:06:16Z' + - 'Ref A: 96A6C824034C4BC886825B5B89C9D3D1 Ref B: MNZ221060610021 Ref C: 2024-03-03T22:07:39Z' status: code: 200 message: OK @@ -12305,11 +12874,11 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database - already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","properties":{"resource":{"_rid":"FMsMBwAAAA==","eventTimestamp":"2024-03-03T21:59:01Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/51564674-adcf-4ae9-9043-c983cd48cf9f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"51564674-adcf-4ae9-9043-c983cd48cf9f","properties":{"resource":{"_rid":"DorQxAAAAA==","eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}}]}' headers: cache-control: - no-store, no-cache @@ -12318,7 +12887,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:21 GMT + - Sun, 03 Mar 2024 22:07:46 GMT pragma: - no-cache strict-transport-security: @@ -12330,7 +12899,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 17208645F1014F2B8CBC535A07CF9FC7 Ref B: MNZ221060610017 Ref C: 2024-03-03T04:06:21Z' + - 'Ref A: 5BFBBEFFA03C495CBC63BA5A873BF3FF Ref B: MNZ221060608037 Ref C: 2024-03-03T22:07:45Z' status: code: 200 message: Ok @@ -12350,12 +12919,12 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=uHUNAA%3D%3D response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/036b4198-bc3a-4b1b-b177-7a58be573802","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"036b4198-bc3a-4b1b-b177-7a58be573802","properties":{"resource":{"_rid":"bx2sVgAAAA==","eventTimestamp":"2024-03-03T04:04:28Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709438532}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/d2cdb731-0d0a-435d-88aa-a99bb0777f95","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"d2cdb731-0d0a-435d-88aa-a99bb0777f95","properties":{"resource":{"_rid":"prmnZQAAAA==","eventTimestamp":"2024-03-03T03:54:30Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Collection - already exists. Only deleted resources can be restored within same account.","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/CWYYAOyc-Tk=:1709438178","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"CWYYAOyc-Tk=:1709438178","properties":{"resource":{"eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Collection - already exists. Only deleted resources can be restored within same account.","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/3ca4b7fd-60d7-4901-a26b-c75fa04b0b14","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"3ca4b7fd-60d7-4901-a26b-c75fa04b0b14","properties":{"resource":{"_rid":"xrMAHwAAAA==","eventTimestamp":"2024-03-03T21:55:47Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"08918ec7-d9a8-11ee-a311-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:49:45+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00002904-0000-0700-0000-65e4f15b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502811}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/e1ab0a0f-10db-4ac6-b637-4b38603f8534","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"e1ab0a0f-10db-4ac6-b637-4b38603f8534","properties":{"resource":{"_rid":"L-YcTwAAAA==","eventTimestamp":"2024-03-03T21:49:46Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Collection + already exists. Only deleted resources can be restored within same account.","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502254}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/19efe544-d19c-4acb-8610-4bcbae2beb43","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"19efe544-d19c-4acb-8610-4bcbae2beb43","properties":{"resource":{"_rid":"jQxpgAAAAA==","eventTimestamp":"2024-03-03T21:44:14Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/a21694b2-d325-474c-b418-287b70dbc699","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"a21694b2-d325-474c-b418-287b70dbc699","properties":{"resource":{"_rid":"dxCo4gAAAA==","eventTimestamp":"2024-03-03T22:05:48Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"70308d5f-d9a9-11ee-9eb1-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:57:40+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00003604-0000-0700-0000-65e4f3b40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709503412}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/uHUNAKPPXL8=:1709503061","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"uHUNAKPPXL8=:1709503061","properties":{"resource":{"eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Collection + already exists. Only deleted resources can be restored within same account.","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"08918ec7-d9a8-11ee-a311-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:49:45+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00002904-0000-0700-0000-65e4f15b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502811}}}}]}' headers: cache-control: - no-store, no-cache @@ -12364,7 +12933,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:23 GMT + - Sun, 03 Mar 2024 22:07:47 GMT pragma: - no-cache strict-transport-security: @@ -12376,7 +12945,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: ABEA0A13C09E4138B01A2F75AB40810D Ref B: MNZ221060610011 Ref C: 2024-03-03T04:06:22Z' + - 'Ref A: 984C922C62F4424C962AC37CF71A59C0 Ref B: MNZ221060608049 Ref C: 2024-03-03T22:07:46Z' status: code: 200 message: Ok @@ -12404,7 +12973,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca01e8ad-6a26-4e29-978f-dec60599fdd8?api-version=2023-11-15&t=638450355847259187&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CSih-mY45kMGKaEikE91DqdnNsK0qMpbn4xacgpHZHwot2hyt1R6XclNMkQEO--dFqeOWWKdUE3Ixncpm8hMHHHNiu0Z_WVx2jxKu1X2GRkUe3DOqnLMtXir7Ax8zB2s6SgP4Db_GCsi5ZAogJkQQrNDx-hC5EnoADNv7rUsU3-wzCmFlVbIhtW13iVtSMMVzeKofnqaRpWQn66lXBU--7VYeBoXBvI2d0DnaZ2zNsl4NuRSRg6NGNJFIewGkwe9JxoMigyM-9cFRR6AWciNd7Ta4NKaG13lqzsjEi0LE1Yp18RSB3aHQiA5ZLDqOWBsGdKPcGVSP_9z_-bsEMnJMw&h=wvwGy-qGw39S_BRAkB5nIWTAL0lrhW1aPItT3V1BY-g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23dbdc78-4b13-453a-9118-483ecd67d10a?api-version=2023-11-15&t=638451004683943848&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=nN73lfeOu6l-hlYySU8STI4Rn-haalmDdbkaEQsHD0lMBgCsYOHA0JPE1cAP0Z_qDb2CvW5ES67xGNdMi2itqzdORK8nztWOo34dZ4WCof8fAAjRN8xlZp9eISXACFifxn2-pnwBcs_MCfY2jjZj_qdvuQIMz8XSJ0v6ZpKlreQd7HD4gMI_LmqnM-dL6M7lA0CaUyEBzn9oRYFDHXmlYouT2ytUfyxKnmVJ2l6gpkTk1ea7ITbMXvsnY_wa9znSRj1TIvg9mzGSQ0_cua8_pdlMswpQ_7JjlIgeOv-YQjO_iI3r0lcJWZpFh7pv6CSm9kG4j8Dtdvr9kDgqNpqymg&h=8sa75K8BOt-PQ_dl2z25YmDAUmtjXl8L_UjGDG7MQT0 cache-control: - no-store, no-cache content-length: @@ -12412,9 +12981,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:24 GMT + - Sun, 03 Mar 2024 22:07:47 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/ca01e8ad-6a26-4e29-978f-dec60599fdd8?api-version=2023-11-15&t=638450355847259187&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tPzkIwSerkCsIDO5GtPPFRcVnXzoRe_a7k8Srz9RPW8Z9Z9C7hZ13ryJ5m8z6rdcBv-sUd0Ycyl5k2IHdMwb6kYCNQEFQNW4UM2HytjONB9ykCEg2mqn2srpUIySRA1Hs2y5rmaaDtDLciqrw81MxvWGdh9ocuGdJgYLlclmalqWon8oT5HwPBBKnM208yhfuAZg4KkgQAR3h-XVUG9KW_xc4L64RaZgck405Gsok4qqtwSqdsnLQ2ntX9bShLPHDJTGgMgBPH_Y89PP7G5_9kB_20bJlUmyvX9Wnr2FuXyV4ptA6XXfLaEBBSL5KWT1wvtXE_Ad5w7qU2pJg3EKtQ&h=A0VT_lTd5ElUkZG9C5BLqt012KlkALFo8NMMQZ4KyKc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/23dbdc78-4b13-453a-9118-483ecd67d10a?api-version=2023-11-15&t=638451004683943848&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BC-Djy5sQ1CMezmgt4PyGw2pQNsV3409SV-8ibrtejLUypv66sNO_dEyVlowWL1GGm4Zihnbu-IXvKBxIp7Fg8EXYuwYcGkk0aP2K_faeWb6ZFnFadPXDT_XDoCOie3aakbMvdm85CmI3fgeFH4UibxUkP8pZM5yHhYFq_NZedc8Y_qKQheFAeP0lBrt3ZX-RoHDFXvnh-tDwaEQKnhlhVewLrwpXCRHjJ8pwTjW-_NNKbFhAA9Ndn0PlP71av7l-PnmUdZTDa3zKWhePP8LFd9yR9-pya748CbbwfpLXDSqLiShH7Ut0xY2dR3O2xfX8_9GcbKPKjCuXbHeLxSDJw&h=NdHrj2yUcqTJ2Bh8Ck4j-XMg367cnjelBbPjSAdBaHo pragma: - no-cache strict-transport-security: @@ -12428,7 +12997,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: ABA8BA2AFCD44E56A930A127721FB51B Ref B: MNZ221060610023 Ref C: 2024-03-03T04:06:24Z' + - 'Ref A: 5F34D78B2928419BAAA2324FD6E9CCE8 Ref B: MNZ221060608039 Ref C: 2024-03-03T22:07:47Z' status: code: 202 message: Accepted @@ -12448,7 +13017,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca01e8ad-6a26-4e29-978f-dec60599fdd8?api-version=2023-11-15&t=638450355847259187&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CSih-mY45kMGKaEikE91DqdnNsK0qMpbn4xacgpHZHwot2hyt1R6XclNMkQEO--dFqeOWWKdUE3Ixncpm8hMHHHNiu0Z_WVx2jxKu1X2GRkUe3DOqnLMtXir7Ax8zB2s6SgP4Db_GCsi5ZAogJkQQrNDx-hC5EnoADNv7rUsU3-wzCmFlVbIhtW13iVtSMMVzeKofnqaRpWQn66lXBU--7VYeBoXBvI2d0DnaZ2zNsl4NuRSRg6NGNJFIewGkwe9JxoMigyM-9cFRR6AWciNd7Ta4NKaG13lqzsjEi0LE1Yp18RSB3aHQiA5ZLDqOWBsGdKPcGVSP_9z_-bsEMnJMw&h=wvwGy-qGw39S_BRAkB5nIWTAL0lrhW1aPItT3V1BY-g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23dbdc78-4b13-453a-9118-483ecd67d10a?api-version=2023-11-15&t=638451004683943848&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=nN73lfeOu6l-hlYySU8STI4Rn-haalmDdbkaEQsHD0lMBgCsYOHA0JPE1cAP0Z_qDb2CvW5ES67xGNdMi2itqzdORK8nztWOo34dZ4WCof8fAAjRN8xlZp9eISXACFifxn2-pnwBcs_MCfY2jjZj_qdvuQIMz8XSJ0v6ZpKlreQd7HD4gMI_LmqnM-dL6M7lA0CaUyEBzn9oRYFDHXmlYouT2ytUfyxKnmVJ2l6gpkTk1ea7ITbMXvsnY_wa9znSRj1TIvg9mzGSQ0_cua8_pdlMswpQ_7JjlIgeOv-YQjO_iI3r0lcJWZpFh7pv6CSm9kG4j8Dtdvr9kDgqNpqymg&h=8sa75K8BOt-PQ_dl2z25YmDAUmtjXl8L_UjGDG7MQT0 response: body: string: '{"status":"Enqueued"}' @@ -12460,7 +13029,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:24 GMT + - Sun, 03 Mar 2024 22:07:47 GMT pragma: - no-cache strict-transport-security: @@ -12472,7 +13041,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 631E9F4A58294CAFA7FF428260FEFBF3 Ref B: MNZ221060608039 Ref C: 2024-03-03T04:06:24Z' + - 'Ref A: A1797962989348498676938319D6C751 Ref B: MNZ221060608047 Ref C: 2024-03-03T22:07:48Z' status: code: 200 message: Ok @@ -12492,7 +13061,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca01e8ad-6a26-4e29-978f-dec60599fdd8?api-version=2023-11-15&t=638450355847259187&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CSih-mY45kMGKaEikE91DqdnNsK0qMpbn4xacgpHZHwot2hyt1R6XclNMkQEO--dFqeOWWKdUE3Ixncpm8hMHHHNiu0Z_WVx2jxKu1X2GRkUe3DOqnLMtXir7Ax8zB2s6SgP4Db_GCsi5ZAogJkQQrNDx-hC5EnoADNv7rUsU3-wzCmFlVbIhtW13iVtSMMVzeKofnqaRpWQn66lXBU--7VYeBoXBvI2d0DnaZ2zNsl4NuRSRg6NGNJFIewGkwe9JxoMigyM-9cFRR6AWciNd7Ta4NKaG13lqzsjEi0LE1Yp18RSB3aHQiA5ZLDqOWBsGdKPcGVSP_9z_-bsEMnJMw&h=wvwGy-qGw39S_BRAkB5nIWTAL0lrhW1aPItT3V1BY-g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23dbdc78-4b13-453a-9118-483ecd67d10a?api-version=2023-11-15&t=638451004683943848&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=nN73lfeOu6l-hlYySU8STI4Rn-haalmDdbkaEQsHD0lMBgCsYOHA0JPE1cAP0Z_qDb2CvW5ES67xGNdMi2itqzdORK8nztWOo34dZ4WCof8fAAjRN8xlZp9eISXACFifxn2-pnwBcs_MCfY2jjZj_qdvuQIMz8XSJ0v6ZpKlreQd7HD4gMI_LmqnM-dL6M7lA0CaUyEBzn9oRYFDHXmlYouT2ytUfyxKnmVJ2l6gpkTk1ea7ITbMXvsnY_wa9znSRj1TIvg9mzGSQ0_cua8_pdlMswpQ_7JjlIgeOv-YQjO_iI3r0lcJWZpFh7pv6CSm9kG4j8Dtdvr9kDgqNpqymg&h=8sa75K8BOt-PQ_dl2z25YmDAUmtjXl8L_UjGDG7MQT0 response: body: string: '{"status":"Succeeded"}' @@ -12504,7 +13073,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:54 GMT + - Sun, 03 Mar 2024 22:08:18 GMT pragma: - no-cache strict-transport-security: @@ -12516,7 +13085,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 45A55B918C824AE18152641122610AB5 Ref B: MNZ221060609053 Ref C: 2024-03-03T04:06:54Z' + - 'Ref A: B851E90158884835BF07B819B8088138 Ref B: MNZ221060608035 Ref C: 2024-03-03T22:08:18Z' status: code: 200 message: Ok @@ -12548,7 +13117,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:06:55 GMT + - Sun, 03 Mar 2024 22:08:19 GMT pragma: - no-cache strict-transport-security: @@ -12560,7 +13129,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 4F7806CACFA14F449AE3BB67C0CD6833 Ref B: BL2AA2030104039 Ref C: 2024-03-03T04:06:55Z' + - 'Ref A: BE686F66976A4050B0EE34B828B5C97C Ref B: MNZ221060608037 Ref C: 2024-03-03T22:08:19Z' status: code: 200 message: Ok @@ -12584,9 +13153,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -12608,87 +13177,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -12703,104 +13270,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -12809,60 +13376,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -12871,19 +13438,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -12891,224 +13458,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-03T21:59:31Z","oldestRestorableTime":"2024-02-25T21:59:31Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T22:08:21Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:06:57Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -13139,238 +13714,243 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -13385,292 +13965,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -13678,256 +14258,341 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:06:59Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z","deletionTime":"2024-03-03T21:51:02Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T22:08:23Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z","deletionTime":"2024-03-03T21:52:50Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T22:08:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T22:08:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T22:08:20Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T22:08:21Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T22:08:20Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:06:56Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T22:08:20Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -13939,11 +14604,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429850' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 04:07:01 GMT + - Sun, 03 Mar 2024 22:08:25 GMT expires: - '-1' pragma: @@ -13996,7 +14661,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: FB48B57AA2BA49FBAF5445310C1A6A09 Ref B: BL2AA2030101025 Ref C: 2024-03-03T04:06:56Z' + - 'Ref A: 70FBAC4F253F43D7904EA342B4C37FAF Ref B: MNZ221060610029 Ref C: 2024-03-03T22:08:20Z' status: code: 200 message: OK @@ -14016,10 +14681,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/ee846b4a-fff9-4ac3-bd2c-bd09089679e6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"ee846b4a-fff9-4ac3-bd2c-bd09089679e6","properties":{"resource":{"_rid":"5ORaBAAAAA==","eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","properties":{"resource":{"_rid":"FMsMBwAAAA==","eventTimestamp":"2024-03-03T21:59:01Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/6f522944-e7fe-4d34-9b20-56d5a2081130","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"6f522944-e7fe-4d34-9b20-56d5a2081130","properties":{"resource":{"_rid":"4M4blwAAAA==","eventTimestamp":"2024-03-03T22:07:53Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00003004-0000-0700-0000-65e4f2a50000\"","_colls":"colls/","_users":"users/","_ts":1709503141}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/51564674-adcf-4ae9-9043-c983cd48cf9f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"51564674-adcf-4ae9-9043-c983cd48cf9f","properties":{"resource":{"_rid":"DorQxAAAAA==","eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}}]}' headers: cache-control: - no-store, no-cache @@ -14028,7 +14693,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:07:01 GMT + - Sun, 03 Mar 2024 22:08:26 GMT pragma: - no-cache strict-transport-security: @@ -14040,7 +14705,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 9A1D0DF5649444BBA2BFD20075F136E7 Ref B: BL2AA2010204017 Ref C: 2024-03-03T04:07:01Z' + - 'Ref A: CE22491550E4434389B9369A715A4725 Ref B: MNZ221060610011 Ref C: 2024-03-03T22:08:25Z' status: code: 200 message: Ok @@ -14064,9 +14729,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -14088,87 +14753,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:07:02Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:07:02Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -14183,104 +14846,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -14289,60 +14952,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -14351,19 +15014,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -14371,224 +15034,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-03T21:59:31Z","oldestRestorableTime":"2024-02-25T21:59:31Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T22:08:28Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -14619,238 +15290,243 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -14865,292 +15541,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -15158,256 +15834,341 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:07:05Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z","deletionTime":"2024-03-03T21:51:02Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T22:08:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z","deletionTime":"2024-03-03T21:52:50Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T22:08:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T22:08:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T22:08:27Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:07:04Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T22:08:28Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T22:08:27Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:07:03Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T22:08:27Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -15419,11 +16180,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429850' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 04:07:07 GMT + - Sun, 03 Mar 2024 22:08:32 GMT expires: - '-1' pragma: @@ -15476,7 +16237,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: 460B2D05F7464492BD955628FF0C08CF Ref B: BL2AA2030101045 Ref C: 2024-03-03T04:07:02Z' + - 'Ref A: A33BF423D08547B39365E8D0F73BFEDE Ref B: MNZ221060609051 Ref C: 2024-03-03T22:08:27Z' status: code: 200 message: OK @@ -15496,10 +16257,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/ee846b4a-fff9-4ac3-bd2c-bd09089679e6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"ee846b4a-fff9-4ac3-bd2c-bd09089679e6","properties":{"resource":{"_rid":"5ORaBAAAAA==","eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","properties":{"resource":{"_rid":"FMsMBwAAAA==","eventTimestamp":"2024-03-03T21:59:01Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/6f522944-e7fe-4d34-9b20-56d5a2081130","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"6f522944-e7fe-4d34-9b20-56d5a2081130","properties":{"resource":{"_rid":"4M4blwAAAA==","eventTimestamp":"2024-03-03T22:07:53Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00003004-0000-0700-0000-65e4f2a50000\"","_colls":"colls/","_users":"users/","_ts":1709503141}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/51564674-adcf-4ae9-9043-c983cd48cf9f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"51564674-adcf-4ae9-9043-c983cd48cf9f","properties":{"resource":{"_rid":"DorQxAAAAA==","eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"restorable","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}}]}' headers: cache-control: - no-store, no-cache @@ -15508,7 +16269,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:07:08 GMT + - Sun, 03 Mar 2024 22:08:33 GMT pragma: - no-cache strict-transport-security: @@ -15520,14 +16281,14 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 9CEB50A1BC3E4EA4842BB2506E1E8654 Ref B: BL2AA2030102023 Ref C: 2024-03-03T04:07:08Z' + - 'Ref A: AD4F216607E541CC81C77867A7D271C3 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:08:33Z' status: code: 200 message: Ok - request: body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", - "restoreTimestampInUtc": "2024-03-03T04:06:28.000Z"}, "createMode": "Restore"}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6", + "restoreTimestampInUtc": "2024-03-03T22:07:52.000Z"}, "createMode": "Restore"}}}' headers: Accept: - application/json @@ -15552,7 +16313,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e7f25e2e-76e9-4b80-bed4-4a9536ffbc45?api-version=2024-02-15-preview&t=638451005156040375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qphkt62Td3X6Ty-0A-xcIhpIhh8vocMFqG2ArjN57FNwo3tVLTSqoPT0TTB7C3scsH5xhu9pt0GACWzxTOvf3hMNCYgV75X8NyEG0V-Pjnv8LbI4ycfSadN2Z9vavFq7ICUzDfFFbrewaZA_xGHXWr5IqKLWI3QIe3TeDsyDJLMecq6AUhT3JImfJxq876uUVlbbFQ-6LWbKtMzhv8QOWdW_fTEt4jiUAdMo_iyPLreYhfpITx6mH4Oq1tNa8hWQO3heCJ9kCVGsbmNSS41Iwcuw1zmCGe4q2QH00RVEXq1MSuMVR9Y_a9YJgB9wMMyTy6G9ftR6nM--xGaycGav4w&h=aByc_rlCySMMPANHA-TiqzmsDHhCdvvOJh2g41REhpA cache-control: - no-store, no-cache content-length: @@ -15560,9 +16321,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:07:09 GMT + - Sun, 03 Mar 2024 22:08:35 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301834042&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iTH43p-b14bzLsMaxznV1bmx4hUGODtuO537ctWy_En5H6TD5DSfE_hR3qso2UCroOeETjM_q1gM4V8KpApi6qrZK2S9WlM-rJQmObsBLgLBPuyHGNr18dR4hj6s5929dHzgZQLJIazf8Gl73FAarZrYpuuGnPG6UwqkM99wiIHfCZcSdRWBeebcD--J7FfESWxeo5zKlseHYZOVAeP_2PS9UlrEHPBdPYrePC8cnmpr9ZHoi8XzQRtg5dlcAyolUVtUZm2Ig9u4t4LbgKNo2vHDIh9URn_owcLNG9UXHU0Zghf8aVfbah8qH5s4R72p-n8F1whLuxTK_w3nhWrXrA&h=YvktcO6aBqUmo1HqsHWJ3Ve1lTPIFLRA1lq4_ErY77s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/operationResults/e7f25e2e-76e9-4b80-bed4-4a9536ffbc45?api-version=2024-02-15-preview&t=638451005156196685&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dzW7xPu_lhNxF5oLzpg1tWvr3PV1kH1FF7v1FFd1i5XJk3Z06-an99MhorlKmw5Enw5RErP-jVngk8M4tAqJmcbMRT7ps4AZxwhBmDwwiRUFTwhflbn5iDsJf36Rcn2yhA03FQMpbSRLt1QQMbngB7qynZ9ITLCmIbHsZdzGJmOe0NGhGAgdK_Mj-XkmRWrup2FLf908TxL3BpJTyx0L8tKLyenAC_JjZY8mCby6OZN-373znxofq_Xvqk4SNRnFQg9LmjJ7f_eNSBqXpmMDGFcAHcBwY4XLEan3Mk3437kEtediLFO9OymvFLh254tg1WMRwRcpzGm5g3LGH0vMbQ&h=ilm-sIy1Xcuby7UuW3iLSFsqgJPTLEEZ7dTWcrjwgi8 pragma: - no-cache strict-transport-security: @@ -15574,9 +16335,9 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: D29B3BDAEE3F4B01988ABF633CDCB04A Ref B: BL2AA2010203037 Ref C: 2024-03-03T04:07:09Z' + - 'Ref A: 85CD04BFA90E448F9193BBDA668569F7 Ref B: MNZ221060608035 Ref C: 2024-03-03T22:08:34Z' status: code: 202 message: Accepted @@ -15596,7 +16357,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e7f25e2e-76e9-4b80-bed4-4a9536ffbc45?api-version=2024-02-15-preview&t=638451005156040375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qphkt62Td3X6Ty-0A-xcIhpIhh8vocMFqG2ArjN57FNwo3tVLTSqoPT0TTB7C3scsH5xhu9pt0GACWzxTOvf3hMNCYgV75X8NyEG0V-Pjnv8LbI4ycfSadN2Z9vavFq7ICUzDfFFbrewaZA_xGHXWr5IqKLWI3QIe3TeDsyDJLMecq6AUhT3JImfJxq876uUVlbbFQ-6LWbKtMzhv8QOWdW_fTEt4jiUAdMo_iyPLreYhfpITx6mH4Oq1tNa8hWQO3heCJ9kCVGsbmNSS41Iwcuw1zmCGe4q2QH00RVEXq1MSuMVR9Y_a9YJgB9wMMyTy6G9ftR6nM--xGaycGav4w&h=aByc_rlCySMMPANHA-TiqzmsDHhCdvvOJh2g41REhpA response: body: string: '{"status":"Enqueued"}' @@ -15608,7 +16369,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:07:10 GMT + - Sun, 03 Mar 2024 22:08:35 GMT pragma: - no-cache strict-transport-security: @@ -15620,7 +16381,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 36D6FFB781B14A0F98F04DD3ABEA0266 Ref B: BL2AA2010204035 Ref C: 2024-03-03T04:07:10Z' + - 'Ref A: F41C331E2BAE46979A6E96B57988BF88 Ref B: MNZ221060610021 Ref C: 2024-03-03T22:08:35Z' status: code: 200 message: Ok @@ -15640,7 +16401,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e7f25e2e-76e9-4b80-bed4-4a9536ffbc45?api-version=2024-02-15-preview&t=638451005156040375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qphkt62Td3X6Ty-0A-xcIhpIhh8vocMFqG2ArjN57FNwo3tVLTSqoPT0TTB7C3scsH5xhu9pt0GACWzxTOvf3hMNCYgV75X8NyEG0V-Pjnv8LbI4ycfSadN2Z9vavFq7ICUzDfFFbrewaZA_xGHXWr5IqKLWI3QIe3TeDsyDJLMecq6AUhT3JImfJxq876uUVlbbFQ-6LWbKtMzhv8QOWdW_fTEt4jiUAdMo_iyPLreYhfpITx6mH4Oq1tNa8hWQO3heCJ9kCVGsbmNSS41Iwcuw1zmCGe4q2QH00RVEXq1MSuMVR9Y_a9YJgB9wMMyTy6G9ftR6nM--xGaycGav4w&h=aByc_rlCySMMPANHA-TiqzmsDHhCdvvOJh2g41REhpA response: body: string: '{"status":"Dequeued"}' @@ -15652,7 +16413,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:07:40 GMT + - Sun, 03 Mar 2024 22:09:05 GMT pragma: - no-cache strict-transport-security: @@ -15664,7 +16425,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 4ADD8F43134C4920907F8608EBFEFCEB Ref B: MNZ221060609037 Ref C: 2024-03-03T04:07:40Z' + - 'Ref A: 27BC548F6BBE4C93A1CD5725D7406C73 Ref B: MNZ221060609037 Ref C: 2024-03-03T22:09:05Z' status: code: 200 message: Ok @@ -15684,7 +16445,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e7f25e2e-76e9-4b80-bed4-4a9536ffbc45?api-version=2024-02-15-preview&t=638451005156040375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qphkt62Td3X6Ty-0A-xcIhpIhh8vocMFqG2ArjN57FNwo3tVLTSqoPT0TTB7C3scsH5xhu9pt0GACWzxTOvf3hMNCYgV75X8NyEG0V-Pjnv8LbI4ycfSadN2Z9vavFq7ICUzDfFFbrewaZA_xGHXWr5IqKLWI3QIe3TeDsyDJLMecq6AUhT3JImfJxq876uUVlbbFQ-6LWbKtMzhv8QOWdW_fTEt4jiUAdMo_iyPLreYhfpITx6mH4Oq1tNa8hWQO3heCJ9kCVGsbmNSS41Iwcuw1zmCGe4q2QH00RVEXq1MSuMVR9Y_a9YJgB9wMMyTy6G9ftR6nM--xGaycGav4w&h=aByc_rlCySMMPANHA-TiqzmsDHhCdvvOJh2g41REhpA response: body: string: '{"status":"Dequeued"}' @@ -15696,7 +16457,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:08:10 GMT + - Sun, 03 Mar 2024 22:09:35 GMT pragma: - no-cache strict-transport-security: @@ -15708,7 +16469,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 422AF7D900324387A8839F0CEA9EAF3E Ref B: MNZ221060609009 Ref C: 2024-03-03T04:08:10Z' + - 'Ref A: B87B35D3E2934296AA2F20CDE172D662 Ref B: MNZ221060610019 Ref C: 2024-03-03T22:09:36Z' status: code: 200 message: Ok @@ -15728,7 +16489,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e7f25e2e-76e9-4b80-bed4-4a9536ffbc45?api-version=2024-02-15-preview&t=638451005156040375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qphkt62Td3X6Ty-0A-xcIhpIhh8vocMFqG2ArjN57FNwo3tVLTSqoPT0TTB7C3scsH5xhu9pt0GACWzxTOvf3hMNCYgV75X8NyEG0V-Pjnv8LbI4ycfSadN2Z9vavFq7ICUzDfFFbrewaZA_xGHXWr5IqKLWI3QIe3TeDsyDJLMecq6AUhT3JImfJxq876uUVlbbFQ-6LWbKtMzhv8QOWdW_fTEt4jiUAdMo_iyPLreYhfpITx6mH4Oq1tNa8hWQO3heCJ9kCVGsbmNSS41Iwcuw1zmCGe4q2QH00RVEXq1MSuMVR9Y_a9YJgB9wMMyTy6G9ftR6nM--xGaycGav4w&h=aByc_rlCySMMPANHA-TiqzmsDHhCdvvOJh2g41REhpA response: body: string: '{"status":"Dequeued"}' @@ -15740,7 +16501,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:08:40 GMT + - Sun, 03 Mar 2024 22:10:05 GMT pragma: - no-cache strict-transport-security: @@ -15752,7 +16513,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 4A52C701FC434BCA9B6669B2BF874508 Ref B: MNZ221060610023 Ref C: 2024-03-03T04:08:40Z' + - 'Ref A: BE3289C2F33843849DC4272E9C58BC2F Ref B: MNZ221060609053 Ref C: 2024-03-03T22:10:06Z' status: code: 200 message: Ok @@ -15772,7 +16533,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45f79fb2-0816-4bd5-b224-4a8590a59be0?api-version=2024-02-15-preview&t=638450356301677817&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XEwdw9Ebi4zlMzlwmyfOt7xnv99yJ94RDprBNvUOJFZ3wIQGAgIl5V1voX_g77g2KgXjRpJpdibPdvUgkHiniUXBPlQmDZ-SS_ZYTFcPzrCKnkdcjgFYyIWx3G02sm5npIJqoIIYk4Gv7Bj4U9UlwSlEQ_OYDayukDKSbV8nhd37oFkyl8-29Yi6oun44WKjud-oS_mCAS-SgT3nZZwxF8105Dr5_SrgPzza3OSsjPBdqPhJSLlIcYOGs53ogBO6vlLC-3k-8SMki3SdUoCOdqbTA5-Vgiv6kViTV-FERYmjWzP2Ur_ip7Kx96BK4TZce9QRKzhlcbeXIdvI3XDMVw&h=NTn5peasU358n5sDTLPZJ2ccrSe5rpWEbwR2vTcgtfA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e7f25e2e-76e9-4b80-bed4-4a9536ffbc45?api-version=2024-02-15-preview&t=638451005156040375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qphkt62Td3X6Ty-0A-xcIhpIhh8vocMFqG2ArjN57FNwo3tVLTSqoPT0TTB7C3scsH5xhu9pt0GACWzxTOvf3hMNCYgV75X8NyEG0V-Pjnv8LbI4ycfSadN2Z9vavFq7ICUzDfFFbrewaZA_xGHXWr5IqKLWI3QIe3TeDsyDJLMecq6AUhT3JImfJxq876uUVlbbFQ-6LWbKtMzhv8QOWdW_fTEt4jiUAdMo_iyPLreYhfpITx6mH4Oq1tNa8hWQO3heCJ9kCVGsbmNSS41Iwcuw1zmCGe4q2QH00RVEXq1MSuMVR9Y_a9YJgB9wMMyTy6G9ftR6nM--xGaycGav4w&h=aByc_rlCySMMPANHA-TiqzmsDHhCdvvOJh2g41REhpA response: body: string: '{"status":"Succeeded"}' @@ -15784,7 +16545,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:10 GMT + - Sun, 03 Mar 2024 22:10:36 GMT pragma: - no-cache strict-transport-security: @@ -15796,7 +16557,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: E71596A6C2FF45AAB91AB429ABD6DD82 Ref B: MNZ221060609035 Ref C: 2024-03-03T04:09:11Z' + - 'Ref A: 67A6397CCCB849B9801AEDC4DFDF5DEB Ref B: MNZ221060609037 Ref C: 2024-03-03T22:10:36Z' status: code: 200 message: Ok @@ -15819,7 +16580,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000bb03-0000-0700-0000-65e3f7950000\"","_colls":"colls/","_users":"users/","_ts":1709438869}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00003e04-0000-0700-0000-65e4f50a0000\"","_colls":"colls/","_users":"users/","_ts":1709503754}}}' headers: cache-control: - no-store, no-cache @@ -15828,7 +16589,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:11 GMT + - Sun, 03 Mar 2024 22:10:37 GMT pragma: - no-cache strict-transport-security: @@ -15840,7 +16601,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: C4A520F2B55E48CBBFE4074F008AAC0B Ref B: MNZ221060610051 Ref C: 2024-03-03T04:09:11Z' + - 'Ref A: 02FEE31B53444F56B73772D927AEB364 Ref B: MNZ221060609039 Ref C: 2024-03-03T22:10:36Z' status: code: 200 message: Ok @@ -15863,7 +16624,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002?api-version=2023-11-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000bb03-0000-0700-0000-65e3f7950000\"","_colls":"colls/","_users":"users/","_ts":1709438869}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00003e04-0000-0700-0000-65e4f50a0000\"","_colls":"colls/","_users":"users/","_ts":1709503754}}}' headers: cache-control: - no-store, no-cache @@ -15872,7 +16633,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:11 GMT + - Sun, 03 Mar 2024 22:10:38 GMT pragma: - no-cache strict-transport-security: @@ -15884,7 +16645,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: DE80D50469C748A3AD93379D5630F8C4 Ref B: MNZ221060608049 Ref C: 2024-03-03T04:09:12Z' + - 'Ref A: 583FA739DF0341049F4925FCCC8A8E4B Ref B: MNZ221060609007 Ref C: 2024-03-03T22:10:38Z' status: code: 200 message: Ok @@ -15908,9 +16669,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -15932,87 +16693,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T22:10:38Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:09:12Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T22:10:38Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:09:12Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -16027,104 +16786,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -16133,60 +16892,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -16195,19 +16954,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -16215,224 +16974,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-03T21:59:31Z","oldestRestorableTime":"2024-02-25T21:59:31Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T22:10:39Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T22:10:40Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:09:14Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -16463,238 +17230,241 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T22:10:41Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -16709,292 +17479,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -17002,256 +17772,342 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:09:15Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z","deletionTime":"2024-03-03T21:51:02Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z","deletionTime":"2024-03-03T21:52:50Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","deletionTime":"2024-03-03T22:08:57Z","oldestRestorableTime":"2024-02-02T22:10:42Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T22:10:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T22:10:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T22:10:39Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T22:10:39Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T22:10:39Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T22:10:39Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T22:10:39Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T22:10:40Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T22:10:38Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T22:10:38Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T22:10:38Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T22:10:38Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T22:10:38Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:09:13Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T22:10:38Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -17263,11 +18119,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429749' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 04:09:17 GMT + - Sun, 03 Mar 2024 22:10:43 GMT expires: - '-1' pragma: @@ -17320,7 +18176,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: 99CD01123B6B4B18B65C1C11251D63A2 Ref B: MNZ221060608021 Ref C: 2024-03-03T04:09:12Z' + - 'Ref A: A26651AD42B047969B5961869C5C6999 Ref B: MNZ221060610017 Ref C: 2024-03-03T22:10:38Z' status: code: 200 message: OK @@ -17340,12 +18196,12 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/ee846b4a-fff9-4ac3-bd2c-bd09089679e6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"ee846b4a-fff9-4ac3-bd2c-bd09089679e6","properties":{"resource":{"_rid":"5ORaBAAAAA==","eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database - already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/9e7e07b5-2fed-4547-9f97-8995e6ab9d5c","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"9e7e07b5-2fed-4547-9f97-8995e6ab9d5c","properties":{"resource":{"_rid":"RDjkfwAAAA==","eventTimestamp":"2024-03-03T04:07:49Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database - already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","properties":{"resource":{"_rid":"FMsMBwAAAA==","eventTimestamp":"2024-03-03T21:59:01Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/6f522944-e7fe-4d34-9b20-56d5a2081130","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"6f522944-e7fe-4d34-9b20-56d5a2081130","properties":{"resource":{"_rid":"4M4blwAAAA==","eventTimestamp":"2024-03-03T22:07:53Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00003004-0000-0700-0000-65e4f2a50000\"","_colls":"colls/","_users":"users/","_ts":1709503141}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/fbc29564-feb1-447a-8143-397d90a103ce","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"fbc29564-feb1-447a-8143-397d90a103ce","properties":{"resource":{"_rid":"jMqengAAAA==","eventTimestamp":"2024-03-03T22:09:14Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/51564674-adcf-4ae9-9043-c983cd48cf9f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"51564674-adcf-4ae9-9043-c983cd48cf9f","properties":{"resource":{"_rid":"DorQxAAAAA==","eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}}]}' headers: cache-control: - no-store, no-cache @@ -17354,7 +18210,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:18 GMT + - Sun, 03 Mar 2024 22:10:44 GMT pragma: - no-cache strict-transport-security: @@ -17366,7 +18222,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: B8FD945283C0421CBE71CF931F542F83 Ref B: BL2AA2010205005 Ref C: 2024-03-03T04:09:17Z' + - 'Ref A: 3620ECE4CE254742A43628FA219D45B2 Ref B: MNZ221060610011 Ref C: 2024-03-03T22:10:44Z' status: code: 200 message: Ok @@ -17390,9 +18246,9 @@ interactions: response: body: string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West @@ -17414,87 +18270,85 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, - Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, - Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, - Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, - Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West - Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T22:10:45Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North - Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T22:10:45Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, - Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West - US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East @@ -17509,104 +18363,104 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, - Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, - Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, - Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, - Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, - Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, - Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, - Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, - Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, - Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East @@ -17615,60 +18469,60 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, - Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, - Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, - Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, - Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, - Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East @@ -17677,19 +18531,19 @@ interactions: US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East @@ -17697,224 +18551,232 @@ interactions: US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, - Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, - Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, - Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, - Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, - Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, - Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East - US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, - Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, - Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, - Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, - Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, - Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, - Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East - US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West - Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-03T21:59:31Z","oldestRestorableTime":"2024-02-25T21:59:31Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, - Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"North + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T22:10:47Z","restorableLocations":[{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-05T19:15:55+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T01:45:49+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, - Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T02:12:24+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:23:30+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, - Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:27:30+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2023-04-06T18:34:51+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"South + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"South Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T22:10:47Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central @@ -17945,238 +18807,241 @@ interactions: US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","oldestRestorableTime":"2024-03-03T03:41:35Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcli000004","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, - Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, - Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, - Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T22:10:48Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, - Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, - Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, - Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, - Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West @@ -18191,292 +19056,292 @@ interactions: US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, - Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, - Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, - Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, - Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"Central US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West @@ -18484,256 +19349,342 @@ interactions: Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, - Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, - Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, - Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"East US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, - Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T04:09:22Z","restorableLocations":[{"locationName":"West - US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z","deletionTime":"2024-03-03T21:42:21Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:42:22Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","deletionTime":"2024-03-03T21:51:02Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z","deletionTime":"2024-03-03T21:51:02Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","deletionTime":"2024-03-03T21:52:50Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z","deletionTime":"2024-03-03T21:52:50Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","deletionTime":"2024-03-03T22:08:57Z","oldestRestorableTime":"2024-02-02T22:10:49Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T22:10:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T22:10:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T22:10:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"Southeast + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T22:10:46Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, - Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, - Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East - US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, - Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, - Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T04:09:20Z","restorableLocations":[{"locationName":"East + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T22:10:46Z","restorableLocations":[{"locationName":"East US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T22:10:45Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, - Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T22:10:45Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T22:10:45Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, - Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T22:10:45Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T22:10:45Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West - US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T04:09:19Z","restorableLocations":[{"locationName":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T22:10:45Z","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West @@ -18745,11 +19696,11 @@ interactions: cache-control: - no-cache content-length: - - '400295' + - '429749' content-type: - application/json; charset=utf-8 date: - - Sun, 03 Mar 2024 04:09:23 GMT + - Sun, 03 Mar 2024 22:10:50 GMT expires: - '-1' pragma: @@ -18802,7 +19753,7 @@ interactions: - '' - '' x-msedge-ref: - - 'Ref A: 131FCFA9DDD647EDB523F2C93DC18B96 Ref B: BL2AA2030104053 Ref C: 2024-03-03T04:09:19Z' + - 'Ref A: 66B6B52DFFE5418097131773203BA525 Ref B: MNZ221060608039 Ref C: 2024-03-03T22:10:45Z' status: code: 200 message: OK @@ -18822,12 +19773,12 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases?api-version=2023-11-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/ee846b4a-fff9-4ac3-bd2c-bd09089679e6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"ee846b4a-fff9-4ac3-bd2c-bd09089679e6","properties":{"resource":{"_rid":"5ORaBAAAAA==","eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database - already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"0000ae03-0000-0700-0000-65e3f5320000\"","_colls":"colls/","_users":"users/","_ts":1709438258}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/bd35b359-172d-47c3-a576-c6b7e6425936","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"bd35b359-172d-47c3-a576-c6b7e6425936","properties":{"resource":{"_rid":"en6LJgAAAA==","eventTimestamp":"2024-03-03T03:42:20Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/9e7e07b5-2fed-4547-9f97-8995e6ab9d5c","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"9e7e07b5-2fed-4547-9f97-8995e6ab9d5c","properties":{"resource":{"_rid":"RDjkfwAAAA==","eventTimestamp":"2024-03-03T04:07:49Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/856c240f-cac5-48d5-9b6d-69c694db48a6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"856c240f-cac5-48d5-9b6d-69c694db48a6","properties":{"resource":{"_rid":"jDiGkQAAAA==","eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database - already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/","_ts":1709437340}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlDatabases/2d7c621b-f180-47c5-b763-5a8aa94bdb84","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d7c621b-f180-47c5-b763-5a8aa94bdb84","properties":{"resource":{"_rid":"8uYT4AAAAA==","eventTimestamp":"2024-03-03T03:57:38Z","ownerId":"cli000002","ownerResourceId":"CWYYAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"CWYYAA==","_self":"dbs/CWYYAA==/","_etag":"\"00009803-0000-0700-0000-65e3f19c0000\"","_colls":"colls/","_users":"users/"}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"2d41c55d-0ab1-43fc-8f0e-8a6fbafc7797","properties":{"resource":{"_rid":"FMsMBwAAAA==","eventTimestamp":"2024-03-03T21:59:01Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/a0712b69-5e2a-4576-a6ed-bc3bb014b54f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"a0712b69-5e2a-4576-a6ed-bc3bb014b54f","properties":{"resource":{"_rid":"AUxQSgAAAA==","eventTimestamp":"2024-03-03T21:43:42Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Create","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/6f522944-e7fe-4d34-9b20-56d5a2081130","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"6f522944-e7fe-4d34-9b20-56d5a2081130","properties":{"resource":{"_rid":"4M4blwAAAA==","eventTimestamp":"2024-03-03T22:07:53Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00003004-0000-0700-0000-65e4f2a50000\"","_colls":"colls/","_users":"users/","_ts":1709503141}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/fbc29564-feb1-447a-8143-397d90a103ce","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"fbc29564-feb1-447a-8143-397d90a103ce","properties":{"resource":{"_rid":"jMqengAAAA==","eventTimestamp":"2024-03-03T22:09:14Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Recreate","canUndelete":"invalid","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlDatabases/51564674-adcf-4ae9-9043-c983cd48cf9f","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases","name":"51564674-adcf-4ae9-9043-c983cd48cf9f","properties":{"resource":{"_rid":"DorQxAAAAA==","eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000002","ownerResourceId":"uHUNAA==","operationType":"Delete","canUndelete":"notRestorable","canUndeleteReason":"Database + already exists. Only deleted resources can be restored within same account.","database":{"id":"cli000002","_rid":"uHUNAA==","_self":"dbs/uHUNAA==/","_etag":"\"00001a04-0000-0700-0000-65e4ef0e0000\"","_colls":"colls/","_users":"users/","_ts":1709502222}}}}]}' headers: cache-control: - no-store, no-cache @@ -18836,7 +19787,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:24 GMT + - Sun, 03 Mar 2024 22:10:52 GMT pragma: - no-cache strict-transport-security: @@ -18848,7 +19799,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 1F1096006E0D403FA82672E0F79F4B94 Ref B: BL2AA2010201047 Ref C: 2024-03-03T04:09:24Z' + - 'Ref A: A622899AE31747C6864FE81FF2A40A2D Ref B: MNZ221060609035 Ref C: 2024-03-03T22:10:51Z' status: code: 200 message: Ok @@ -18868,10 +19819,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=CWYYAA%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=uHUNAA%3D%3D response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"5e98abdc-57b2-4f5d-aeb0-3c45ea56b896","properties":{"resource":{"_rid":"K8G0PwAAAA==","eventTimestamp":"2024-03-03T03:42:52Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/036b4198-bc3a-4b1b-b177-7a58be573802","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"036b4198-bc3a-4b1b-b177-7a58be573802","properties":{"resource":{"_rid":"bx2sVgAAAA==","eventTimestamp":"2024-03-03T04:04:28Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709438532}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/d2cdb731-0d0a-435d-88aa-a99bb0777f95","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"d2cdb731-0d0a-435d-88aa-a99bb0777f95","properties":{"resource":{"_rid":"prmnZQAAAA==","eventTimestamp":"2024-03-03T03:54:30Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/64d9f4b5-b522-4437-b92b-f0993c1854d6","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"64d9f4b5-b522-4437-b92b-f0993c1854d6","properties":{"resource":{"_rid":"rhplxwAAAA==","eventTimestamp":"2024-03-03T03:48:24Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"00009b03-0000-0700-0000-65e3f1bc0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437372}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/CWYYAOyc-Tk=:1709438178","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"CWYYAOyc-Tk=:1709438178","properties":{"resource":{"eventTimestamp":"2024-03-03T03:56:18Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"f750b0d6-d910-11ee-83a0-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:48:23+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000a703-0000-0700-0000-65e3f3ed0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709437933}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0/restorableSqlContainers/CWYYAOyc-Tk=:1709438789","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"CWYYAOyc-Tk=:1709438789","properties":{"resource":{"eventTimestamp":"2024-03-03T04:06:29Z","ownerId":"cli000003","ownerResourceId":"CWYYAOyc-Tk=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"5ee8b65d-d912-11ee-b22d-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T03:56:17+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"CWYYAOyc-Tk=","_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000b403-0000-0700-0000-65e3f6440000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709438532}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/3ca4b7fd-60d7-4901-a26b-c75fa04b0b14","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"3ca4b7fd-60d7-4901-a26b-c75fa04b0b14","properties":{"resource":{"_rid":"xrMAHwAAAA==","eventTimestamp":"2024-03-03T21:55:47Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"08918ec7-d9a8-11ee-a311-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:49:45+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00002904-0000-0700-0000-65e4f15b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502811}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/e1ab0a0f-10db-4ac6-b637-4b38603f8534","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"e1ab0a0f-10db-4ac6-b637-4b38603f8534","properties":{"resource":{"_rid":"L-YcTwAAAA==","eventTimestamp":"2024-03-03T21:49:46Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502254}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/19efe544-d19c-4acb-8610-4bcbae2beb43","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"19efe544-d19c-4acb-8610-4bcbae2beb43","properties":{"resource":{"_rid":"jQxpgAAAAA==","eventTimestamp":"2024-03-03T21:44:14Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Create","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00001d04-0000-0700-0000-65e4ef2e0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/a21694b2-d325-474c-b418-287b70dbc699","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"a21694b2-d325-474c-b418-287b70dbc699","properties":{"resource":{"_rid":"dxCo4gAAAA==","eventTimestamp":"2024-03-03T22:05:48Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Recreate","canUndelete":"invalid","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"70308d5f-d9a9-11ee-9eb1-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:57:40+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00003604-0000-0700-0000-65e4f3b40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709503412}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/uHUNAKPPXL8=:1709503061","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"uHUNAKPPXL8=:1709503061","properties":{"resource":{"eventTimestamp":"2024-03-03T21:57:41Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"08918ec7-d9a8-11ee-a311-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:49:45+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00002904-0000-0700-0000-65e4f15b0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709502811}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6/restorableSqlContainers/uHUNAKPPXL8=:1709503673","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers","name":"uHUNAKPPXL8=:1709503673","properties":{"resource":{"eventTimestamp":"2024-03-03T22:07:53Z","ownerId":"cli000003","ownerResourceId":"uHUNAKPPXL8=","operationType":"Delete","canUndelete":"restorable","container":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"supportSpatialLegacyCoordinates":false,"usePolygonsSmallerThanAHemisphere":false,"includedPaths":[{"path":"/*"},{"path":"/\"_ts\"/?"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}],"internalProperties":{"alwaysGenerateUniqueKeyTermsForUndefined":true}},"internalIndexingProperties":{"enableIndexingFullFidelity":true,"logicalIndexVersion":2,"indexEncodingOptions":65567},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"70308d5f-d9a9-11ee-9eb1-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:57:40+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"allowMaterializedViews":false,"geospatialConfig":{"type":"Geography"},"typeSystemPolicy":{"typeSystem":"CosmosCore"},"uniqueIndexNameEncodingMode":2,"maxContentLengthInKB":2048,"maxNameLength":1024,"_idxpolicyver":2,"computedProperties":[],"_rid":"uHUNAKPPXL8=","_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00003604-0000-0700-0000-65e4f3b40000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","_ts":1709503412}}}}]}' headers: cache-control: - no-store, no-cache @@ -18880,7 +19831,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:26 GMT + - Sun, 03 Mar 2024 22:10:53 GMT pragma: - no-cache strict-transport-security: @@ -18892,14 +19843,14 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 84C1821C8A8142AEB22AD0FCCE5E097C Ref B: BL2AA2030104039 Ref C: 2024-03-03T04:09:25Z' + - 'Ref A: 4CF16686BB5A4F8F867AF6F41CF3BBA8 Ref B: MNZ221060609009 Ref C: 2024-03-03T22:10:52Z' status: code: 200 message: Ok - request: body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": - "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0", - "restoreTimestampInUtc": "2024-03-03T04:06:28.000Z"}, "createMode": "Restore"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6", + "restoreTimestampInUtc": "2024-03-03T22:07:52.000Z"}, "createMode": "Restore"}, "options": {}}}' headers: Accept: @@ -18925,7 +19876,7 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI cache-control: - no-store, no-cache content-length: @@ -18933,9 +19884,9 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:27 GMT + - Sun, 03 Mar 2024 22:10:54 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679844754&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=evm5VyPfsDBX9Dj7Kg3t6LagSSZoDsZave-8QNqlOoAEqEDIBQ1s61WLuiOiOMH7i2NtR3lpUUT3EE21qc0ztLxvAWD22BOcfFWdpbOqwIlfXV-tNe9nz0FmAfOL9YtCmYAi2HXl3mXaYzIid2SHxlJsV4qVId4EqclylxbcIwKQyYwoJQlDtFLqncGIRc265W-wC-xP03ZVmhGt6_LoRd1s2DNwzaf31JcaiLFL4nwwRi_VfBG2uXUnkcMzTdMxsHfbV8oBnR0s6nNr9AX1Cu2euCZ4oRZOaXnJ4icMvKbUYNHPOIWv1Boc3b2uHBPKCUTIK6SMlVVMIkt9Mv5jUQ&h=SVcBx594QJp8lP9415mFCRm7ZrdWEnYk3PVVa-001l8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MZyFpO3649OG849tHXbfDhMvQeuwuuXbgHsgES2gSTid0L5bWS-ESgzitM2pNgI6LWmo2di9nBeN7VzE-b3e-pOI3kNDyo6HxpuhitDdQXNubz-v2nbx1KhIH_dEPtusetERM8gyeZv-dRLaLYcUrX_fffdFCaXtmKH3D1oqt_GDlZ4_r1T8L0njfWffhtHKkdYl0mhyJZXk7JO0ouzz6Z3aggxDVltedIOZqi0B28uONDfEFXZpDMd33lpbNi2h_WUoiNAhMeG_hAtkfJr0iuavquEXidjP80n-vtntbmW2Bb6EfwKaQP7WAH9Pzt9w3QmcY9BRMiRst7d2_jzd8A&h=M8EJUItmbYyXRfe-x4mzoFQFkQnqqacdIF_UxN7bqQA pragma: - no-cache strict-transport-security: @@ -18947,9 +19898,9 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: F260E3AB7AFC4914AC7A4B63C1801D17 Ref B: BL2AA2010201035 Ref C: 2024-03-03T04:09:26Z' + - 'Ref A: B7335CF5A50F42FDA8947C47647CEBD1 Ref B: MNZ221060610051 Ref C: 2024-03-03T22:10:53Z' status: code: 202 message: Accepted @@ -18969,7 +19920,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Enqueued"}' @@ -18981,7 +19932,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:28 GMT + - Sun, 03 Mar 2024 22:10:54 GMT pragma: - no-cache strict-transport-security: @@ -18993,7 +19944,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 4766E3505AA34D2B841DA47B42634A98 Ref B: BL2AA2030101051 Ref C: 2024-03-03T04:09:28Z' + - 'Ref A: 343F048A0B064132921AA818B684977A Ref B: MNZ221060608021 Ref C: 2024-03-03T22:10:55Z' status: code: 200 message: Ok @@ -19013,7 +19964,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19025,7 +19976,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:09:57 GMT + - Sun, 03 Mar 2024 22:11:25 GMT pragma: - no-cache strict-transport-security: @@ -19037,7 +19988,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: E9CC440ED021421189AEF5383976D51B Ref B: BL2AA2010201035 Ref C: 2024-03-03T04:09:58Z' + - 'Ref A: 899572193EAE43AB970675E6AD9B4121 Ref B: MNZ221060609037 Ref C: 2024-03-03T22:11:25Z' status: code: 200 message: Ok @@ -19057,7 +20008,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19069,7 +20020,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:10:28 GMT + - Sun, 03 Mar 2024 22:11:55 GMT pragma: - no-cache strict-transport-security: @@ -19081,7 +20032,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: DCE946012FCC449CABDCCC602DFE50C0 Ref B: MNZ221060609011 Ref C: 2024-03-03T04:10:28Z' + - 'Ref A: 8CE89DCB21C848ACA75D97D51DDA2B11 Ref B: MNZ221060609049 Ref C: 2024-03-03T22:11:55Z' status: code: 200 message: Ok @@ -19101,7 +20052,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19113,7 +20064,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:10:58 GMT + - Sun, 03 Mar 2024 22:12:25 GMT pragma: - no-cache strict-transport-security: @@ -19125,7 +20076,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 8C0C4567F81A4C5EB727BAD8B2FF9C71 Ref B: MNZ221060610031 Ref C: 2024-03-03T04:10:58Z' + - 'Ref A: C15838A6D8954110A2C3812657F8EAE3 Ref B: MNZ221060609011 Ref C: 2024-03-03T22:12:25Z' status: code: 200 message: Ok @@ -19145,7 +20096,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19157,7 +20108,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:11:28 GMT + - Sun, 03 Mar 2024 22:12:55 GMT pragma: - no-cache strict-transport-security: @@ -19169,7 +20120,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 1002AC4046134367BE27A0F51797036D Ref B: MNZ221060609037 Ref C: 2024-03-03T04:11:29Z' + - 'Ref A: 03475DABD7164DFC826F90CCB6680128 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:12:56Z' status: code: 200 message: Ok @@ -19189,7 +20140,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19201,7 +20152,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:11:59 GMT + - Sun, 03 Mar 2024 22:13:26 GMT pragma: - no-cache strict-transport-security: @@ -19213,7 +20164,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: D8DF2CA7F8F6452D8507F3FFF5652271 Ref B: MNZ221060608035 Ref C: 2024-03-03T04:11:59Z' + - 'Ref A: B905C0CED09B443C8F45CF5F15DFE6F7 Ref B: MNZ221060608049 Ref C: 2024-03-03T22:13:26Z' status: code: 200 message: Ok @@ -19233,7 +20184,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19245,7 +20196,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:12:29 GMT + - Sun, 03 Mar 2024 22:13:55 GMT pragma: - no-cache strict-transport-security: @@ -19257,7 +20208,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: A15E474B86D642F5BE3A081812BC97F1 Ref B: MNZ221060609053 Ref C: 2024-03-03T04:12:29Z' + - 'Ref A: 02451F9261D14EA7B91AEB5122525E99 Ref B: MNZ221060610021 Ref C: 2024-03-03T22:13:56Z' status: code: 200 message: Ok @@ -19277,7 +20228,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19289,7 +20240,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:12:59 GMT + - Sun, 03 Mar 2024 22:14:26 GMT pragma: - no-cache strict-transport-security: @@ -19301,7 +20252,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 8CA315E1FA2B49B4AEC702BAA3DF0E2E Ref B: MNZ221060609039 Ref C: 2024-03-03T04:12:59Z' + - 'Ref A: 5ED11EB659AC44FFA66C899A162A415A Ref B: MNZ221060610047 Ref C: 2024-03-03T22:14:26Z' status: code: 200 message: Ok @@ -19321,7 +20272,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19333,7 +20284,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:13:30 GMT + - Sun, 03 Mar 2024 22:14:57 GMT pragma: - no-cache strict-transport-security: @@ -19345,7 +20296,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 6A80EA9A5E1A4912AF80178F409EDD79 Ref B: BL2AA2030104039 Ref C: 2024-03-03T04:13:30Z' + - 'Ref A: A7B9F5D04260458D9BED6CC7AEBB842F Ref B: MNZ221060608017 Ref C: 2024-03-03T22:14:57Z' status: code: 200 message: Ok @@ -19365,7 +20316,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19377,7 +20328,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:14:00 GMT + - Sun, 03 Mar 2024 22:15:27 GMT pragma: - no-cache strict-transport-security: @@ -19389,7 +20340,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 620DB52ED9AE49F1BFE4577632912818 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:14:01Z' + - 'Ref A: 66002EC6C057448FAF94F281D91A4792 Ref B: MNZ221060608011 Ref C: 2024-03-03T22:15:27Z' status: code: 200 message: Ok @@ -19409,7 +20360,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19421,7 +20372,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:14:31 GMT + - Sun, 03 Mar 2024 22:15:57 GMT pragma: - no-cache strict-transport-security: @@ -19433,7 +20384,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 57B0D46C138A4D83BB9DD89EFA5319BE Ref B: MNZ221060610023 Ref C: 2024-03-03T04:14:31Z' + - 'Ref A: 3F94F290E09F44ED81BB34F2422FCFDC Ref B: MNZ221060609027 Ref C: 2024-03-03T22:15:57Z' status: code: 200 message: Ok @@ -19453,7 +20404,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19465,7 +20416,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:15:01 GMT + - Sun, 03 Mar 2024 22:16:27 GMT pragma: - no-cache strict-transport-security: @@ -19477,7 +20428,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 524AF6B72303450F9F59FB21C7F118B5 Ref B: MNZ221060609037 Ref C: 2024-03-03T04:15:01Z' + - 'Ref A: 25F376DC492B445BAF3F7D759CB5E377 Ref B: MNZ221060609035 Ref C: 2024-03-03T22:16:28Z' status: code: 200 message: Ok @@ -19497,7 +20448,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19509,7 +20460,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:15:31 GMT + - Sun, 03 Mar 2024 22:16:57 GMT pragma: - no-cache strict-transport-security: @@ -19521,7 +20472,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 85F7F333339842FF8C1674AB91EAA01C Ref B: MNZ221060608049 Ref C: 2024-03-03T04:15:32Z' + - 'Ref A: FAADA96ECB1047C3912C2338081B87E4 Ref B: MNZ221060609037 Ref C: 2024-03-03T22:16:58Z' status: code: 200 message: Ok @@ -19541,7 +20492,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Dequeued"}' @@ -19553,7 +20504,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:16:01 GMT + - Sun, 03 Mar 2024 22:17:28 GMT pragma: - no-cache strict-transport-security: @@ -19565,7 +20516,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: C7B9E0B3C905449B9A0499886DC3C6A9 Ref B: BL2AA2030101025 Ref C: 2024-03-03T04:16:02Z' + - 'Ref A: DFD685936D2C4D5EAA2960A3C2BF2FD0 Ref B: MNZ221060610017 Ref C: 2024-03-03T22:17:28Z' status: code: 200 message: Ok @@ -19585,7 +20536,7 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1099bbd5-2e7b-4330-be0b-b6db29c4d475?api-version=2024-02-15-preview&t=638450357679688598&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=f4sGiG1cP-Nhar5lLo3wVbhSu6egvqfgF-H-q_T4ZdKT4zHHG5RDGOAyhx2byImjuUZzi-hM0VShVzSFXyDUyVYIjGWExGWSkOWKArkUh5iUN_DQEqDX3ghZM-kJ49A4FMtSTehD03f28teMWTpJ8EeALAYxlpdINRjQU6-LhO3wDN_Wjvmd7ZUclN0YhLX18ygzr-nV-PXyPaECO9xt9x3hQ75P2kSWp2rD0aURuDT51fjTl7eVYO-czIOQAGeAJ_lSr-oZkgSVgMJUMpqSimUaqo4cKoWC_X8yM8NUvRLUWBlb0yIc6QnMb-U6-bbbLSmhXd8fTQzpG3LMHKMtLw&h=IrY5aCFvxfN4RlxWEHrN8VyI9eyYVzPs2p7JgtPH5Dg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8b8afff-c74e-4b70-aac1-ad4c12d63ca1?api-version=2024-02-15-preview&t=638451006549760297&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fj1kHz9UrZ7iEXqa-Q7fNgJJ0VM4Dcnjrvuz178YsAo4R_eQy5cqodmj11DwpRKzTPMZlOPodMQkGVb30mdVbQoAZ7oJEKUmQzlfAfeaxWrB9authKBIB9HWvIewBD_dcbzqZUVq3UKxheK8FWMouwQLMeKu_Qfu02p7_Bj8VRMpeauyvRXDONQJ4eCphD1P8rtZzppr5gVFttG7pFSiLdXkFE24PAqUPs8aA0d8hBYFP4fc66wSzCuf4RkfgPkVkmsWYk8ctgdVv4gVDl7IinKB2uwSVj1ch3bvu7EiM1jn4HmAL5qjVBln5I3nWf7XQj3rErzvnfCjZQNQw1JbBw&h=X66JCAP-EDhL2M8TDDb8EDWZgpA5vCI6c5qnu0rFEcI response: body: string: '{"status":"Succeeded"}' @@ -19597,7 +20548,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:16:31 GMT + - Sun, 03 Mar 2024 22:17:58 GMT pragma: - no-cache strict-transport-security: @@ -19609,7 +20560,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 445A365F0B284A2A8EC8D36788A12291 Ref B: MNZ221060609011 Ref C: 2024-03-03T04:16:32Z' + - 'Ref A: 42C63B9EC2374AB79A6ABCDF77DA68A8 Ref B: MNZ221060609011 Ref C: 2024-03-03T22:17:58Z' status: code: 200 message: Ok @@ -19632,7 +20583,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"ce8ea308-d913-11ee-9dc3-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T04:06:28+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709439146,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000c103-0000-0700-0000-65e3f8aa0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"e1ef531d-d9aa-11ee-9fb1-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T22:07:52+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709504039,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00004404-0000-0700-0000-65e4f6270000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache @@ -19641,7 +20592,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:16:32 GMT + - Sun, 03 Mar 2024 22:17:58 GMT pragma: - no-cache strict-transport-security: @@ -19653,7 +20604,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: 5C13D358664C4978B2016336555A14A4 Ref B: MNZ221060610021 Ref C: 2024-03-03T04:16:32Z' + - 'Ref A: 12C6AFEC488E4A83829C5D358B3AF41E Ref B: MNZ221060609049 Ref C: 2024-03-03T22:17:59Z' status: code: 200 message: Ok @@ -19676,7 +20627,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"ce8ea308-d913-11ee-9dc3-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T04:06:28+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709439146,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000c103-0000-0700-0000-65e3f8aa0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"e1ef531d-d9aa-11ee-9fb1-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T22:07:52+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709504039,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00004404-0000-0700-0000-65e4f6270000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' headers: cache-control: - no-store, no-cache @@ -19685,7 +20636,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:16:33 GMT + - Sun, 03 Mar 2024 22:17:59 GMT pragma: - no-cache strict-transport-security: @@ -19697,7 +20648,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: F473C8BF9C674CAB905050294AABA4B9 Ref B: MNZ221060610031 Ref C: 2024-03-03T04:16:33Z' + - 'Ref A: 9647AE2B35114E458FB0696156F9CBA6 Ref B: MNZ221060608039 Ref C: 2024-03-03T22:17:59Z' status: code: 200 message: Ok @@ -19720,7 +20671,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"ce8ea308-d913-11ee-9dc3-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T04:06:28+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0"},"geospatialConfig":{"type":"Geography"},"_rid":"CWYYAOyc-Tk=","_ts":1709439146,"_self":"dbs/CWYYAA==/colls/CWYYAOyc-Tk=/","_etag":"\"0000c103-0000-0700-0000-65e3f8aa0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_prov_container_restore_nt000001/providers/Microsoft.DocumentDB/databaseAccounts/ntbrcli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"e1ef531d-d9aa-11ee-9fb1-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T22:07:52+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6"},"geospatialConfig":{"type":"Geography"},"_rid":"uHUNAKPPXL8=","_ts":1709504039,"_self":"dbs/uHUNAA==/colls/uHUNAKPPXL8=/","_etag":"\"00004404-0000-0700-0000-65e4f6270000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache @@ -19729,7 +20680,7 @@ interactions: content-type: - application/json date: - - Sun, 03 Mar 2024 04:16:33 GMT + - Sun, 03 Mar 2024 22:17:59 GMT pragma: - no-cache strict-transport-security: @@ -19741,7 +20692,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-msedge-ref: - - 'Ref A: E28005539696450AB933BFFE381EF22E Ref B: MNZ221060609007 Ref C: 2024-03-03T04:16:34Z' + - 'Ref A: 4872DBA366E1408DAD82AE49BF3258DE Ref B: MNZ221060609009 Ref C: 2024-03-03T22:18:00Z' status: code: 200 message: Ok diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_restore.yaml new file mode 100644 index 00000000000..0184554abcf --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_normal_database_restore.yaml @@ -0,0 +1,3031 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_normal_database_restore000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001","name":"cli_test_cosmosdb_sql_normal_database_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_normal_database_restore","date":"2024-03-03T21:13:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '459' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:13:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 80A7B210676E42708CD137FD99F295FD Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:13:35.5633628Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e5344b97-62a1-43d0-8415-f0d04cbd3336","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:13:35.5633628Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:13:35.5633628Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.5633628Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:35.5633628Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df2a8e05-ed71-4093-935b-c7a443f191fa?api-version=2024-02-15-preview&t=638450972173983034&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pMkkMTWwr_sfVxu54SngvxgvxACl_zX-uS8byQJiRlrBG436Qq244UKADqT9bFbrH0vRS3Ot0W_KiVsvEIS44w8OvHhsiJDe1QHgZbjOX3FiUdrI_KSl2Dr2vf_G35uBhlrjYWIjJrOMKZDFIGEdj0MLy9vD_DmxGRgOOKEF6jzIapvm8s0qUIon6XiKVFCmy0s7nZ-X28X3i0bvWUBJzXwAY8QncjpMtTMMZpgxBKBGzNWZUITu0_5hWAe7pp1UWLucy2DDOsPtcF7DtzW-Q8VaVV17qB0hJNOgZGWNb_19coWZ-yq_6JhfmVwAZuzueVCdWKKAZLLitM5YwstJwA&h=KaU8VftHQj22WYIfaXt-1Ios3UrNNaQtEex5HLOiYIA + cache-control: + - no-store, no-cache + content-length: + - '2680' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:36 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/df2a8e05-ed71-4093-935b-c7a443f191fa?api-version=2024-02-15-preview&t=638450972174295577&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Fpr8xtVpProybXXTuzuSPO3qp4mJdq1M2mK1HI3NrwPezn4VK-kkaGPno0ZeWRWwdaAYp18kSodbfgwyEZIySEJfF9UUmOb6BBYIW00PAtFBFDtw208JxR2klathC9Hfu_TvOQyHmYR1Y9zTJHbzrkDk9fuOGqzOOPUvjP1TA3HOdx0G8dIQVVr2dHVFuxViMOjWfklGEsGlpFxvJkHtv-0Wj2KZ1uVao3FMC3OKIMdnz6WEWsJiXjAF4Erz2YrAlut-UGsEJy1IR84Ku_JHefTiLA3-vgeQnYQoIhZaU3Uxudl5xtAVENiZYzQ14AfdV1TRmYjO2vRjRYCO0cJcSw&h=arrB-Be9LiDjOxsHUIohykM867SAmxhO7PVyUO1GMsk + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: E71A502BDF0F4E008C0C5A382ADDCA7B Ref B: BL2AA2010202023 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df2a8e05-ed71-4093-935b-c7a443f191fa?api-version=2024-02-15-preview&t=638450972173983034&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pMkkMTWwr_sfVxu54SngvxgvxACl_zX-uS8byQJiRlrBG436Qq244UKADqT9bFbrH0vRS3Ot0W_KiVsvEIS44w8OvHhsiJDe1QHgZbjOX3FiUdrI_KSl2Dr2vf_G35uBhlrjYWIjJrOMKZDFIGEdj0MLy9vD_DmxGRgOOKEF6jzIapvm8s0qUIon6XiKVFCmy0s7nZ-X28X3i0bvWUBJzXwAY8QncjpMtTMMZpgxBKBGzNWZUITu0_5hWAe7pp1UWLucy2DDOsPtcF7DtzW-Q8VaVV17qB0hJNOgZGWNb_19coWZ-yq_6JhfmVwAZuzueVCdWKKAZLLitM5YwstJwA&h=KaU8VftHQj22WYIfaXt-1Ios3UrNNaQtEex5HLOiYIA + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B0ACA93C60CA4BEFA91362FC5D958FB1 Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:13:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df2a8e05-ed71-4093-935b-c7a443f191fa?api-version=2024-02-15-preview&t=638450972173983034&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pMkkMTWwr_sfVxu54SngvxgvxACl_zX-uS8byQJiRlrBG436Qq244UKADqT9bFbrH0vRS3Ot0W_KiVsvEIS44w8OvHhsiJDe1QHgZbjOX3FiUdrI_KSl2Dr2vf_G35uBhlrjYWIjJrOMKZDFIGEdj0MLy9vD_DmxGRgOOKEF6jzIapvm8s0qUIon6XiKVFCmy0s7nZ-X28X3i0bvWUBJzXwAY8QncjpMtTMMZpgxBKBGzNWZUITu0_5hWAe7pp1UWLucy2DDOsPtcF7DtzW-Q8VaVV17qB0hJNOgZGWNb_19coWZ-yq_6JhfmVwAZuzueVCdWKKAZLLitM5YwstJwA&h=KaU8VftHQj22WYIfaXt-1Ios3UrNNaQtEex5HLOiYIA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: ED24B8B0428141448D4E431C932034DE Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:14:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df2a8e05-ed71-4093-935b-c7a443f191fa?api-version=2024-02-15-preview&t=638450972173983034&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pMkkMTWwr_sfVxu54SngvxgvxACl_zX-uS8byQJiRlrBG436Qq244UKADqT9bFbrH0vRS3Ot0W_KiVsvEIS44w8OvHhsiJDe1QHgZbjOX3FiUdrI_KSl2Dr2vf_G35uBhlrjYWIjJrOMKZDFIGEdj0MLy9vD_DmxGRgOOKEF6jzIapvm8s0qUIon6XiKVFCmy0s7nZ-X28X3i0bvWUBJzXwAY8QncjpMtTMMZpgxBKBGzNWZUITu0_5hWAe7pp1UWLucy2DDOsPtcF7DtzW-Q8VaVV17qB0hJNOgZGWNb_19coWZ-yq_6JhfmVwAZuzueVCdWKKAZLLitM5YwstJwA&h=KaU8VftHQj22WYIfaXt-1Ios3UrNNaQtEex5HLOiYIA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5619659102A44E4F892FABBD2FCE2B80 Ref B: BL2AA2030103033 Ref C: 2024-03-03T21:14:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df2a8e05-ed71-4093-935b-c7a443f191fa?api-version=2024-02-15-preview&t=638450972173983034&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pMkkMTWwr_sfVxu54SngvxgvxACl_zX-uS8byQJiRlrBG436Qq244UKADqT9bFbrH0vRS3Ot0W_KiVsvEIS44w8OvHhsiJDe1QHgZbjOX3FiUdrI_KSl2Dr2vf_G35uBhlrjYWIjJrOMKZDFIGEdj0MLy9vD_DmxGRgOOKEF6jzIapvm8s0qUIon6XiKVFCmy0s7nZ-X28X3i0bvWUBJzXwAY8QncjpMtTMMZpgxBKBGzNWZUITu0_5hWAe7pp1UWLucy2DDOsPtcF7DtzW-Q8VaVV17qB0hJNOgZGWNb_19coWZ-yq_6JhfmVwAZuzueVCdWKKAZLLitM5YwstJwA&h=KaU8VftHQj22WYIfaXt-1Ios3UrNNaQtEex5HLOiYIA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 35105483EEF1404280CE64A6F7057FAD Ref B: BL2AA2030104011 Ref C: 2024-03-03T21:15:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df2a8e05-ed71-4093-935b-c7a443f191fa?api-version=2024-02-15-preview&t=638450972173983034&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pMkkMTWwr_sfVxu54SngvxgvxACl_zX-uS8byQJiRlrBG436Qq244UKADqT9bFbrH0vRS3Ot0W_KiVsvEIS44w8OvHhsiJDe1QHgZbjOX3FiUdrI_KSl2Dr2vf_G35uBhlrjYWIjJrOMKZDFIGEdj0MLy9vD_DmxGRgOOKEF6jzIapvm8s0qUIon6XiKVFCmy0s7nZ-X28X3i0bvWUBJzXwAY8QncjpMtTMMZpgxBKBGzNWZUITu0_5hWAe7pp1UWLucy2DDOsPtcF7DtzW-Q8VaVV17qB0hJNOgZGWNb_19coWZ-yq_6JhfmVwAZuzueVCdWKKAZLLitM5YwstJwA&h=KaU8VftHQj22WYIfaXt-1Ios3UrNNaQtEex5HLOiYIA + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4979A9B2A039438685C7696B68378E23 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:15:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/df2a8e05-ed71-4093-935b-c7a443f191fa?api-version=2024-02-15-preview&t=638450972173983034&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pMkkMTWwr_sfVxu54SngvxgvxACl_zX-uS8byQJiRlrBG436Qq244UKADqT9bFbrH0vRS3Ot0W_KiVsvEIS44w8OvHhsiJDe1QHgZbjOX3FiUdrI_KSl2Dr2vf_G35uBhlrjYWIjJrOMKZDFIGEdj0MLy9vD_DmxGRgOOKEF6jzIapvm8s0qUIon6XiKVFCmy0s7nZ-X28X3i0bvWUBJzXwAY8QncjpMtTMMZpgxBKBGzNWZUITu0_5hWAe7pp1UWLucy2DDOsPtcF7DtzW-Q8VaVV17qB0hJNOgZGWNb_19coWZ-yq_6JhfmVwAZuzueVCdWKKAZLLitM5YwstJwA&h=KaU8VftHQj22WYIfaXt-1Ios3UrNNaQtEex5HLOiYIA + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2C63893098F64631B31F593A72294704 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:35.1702048Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e5344b97-62a1-43d0-8415-f0d04cbd3336","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:35.1702048Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:35.1702048Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:35.1702048Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:35.1702048Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3038' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 40DC10CA905E454C806B0A960807548E Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:35.1702048Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"e5344b97-62a1-43d0-8415-f0d04cbd3336","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:35.1702048Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:35.1702048Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:35.1702048Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:35.1702048Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3038' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CEDE82CCB03D4F99883A683803C6F3C1 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 411f6f74-d9a3-11ee-8256-000d3a1e0e23, Request URI: /apps/31ad983c-06d1-46f8-8aea-8fb81d4d9cc3/services/40c4e6c8-4ed1-478f-a45b-5a56b7c9b589/partitions/85478231-4ec5-48ed-a9f5-af326b27b42d/replicas/133538490065027762s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:16:09.6469627Z, RequestEndTime: + 2024-03-03T21:16:09.6500498Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:15:18.2550299Z\\\",\\\"cpu\\\":0.807,\\\"memory\\\":473332048.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1431,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":228},{\\\"dateUtc\\\":\\\"2024-03-03T21:15:28.2651724Z\\\",\\\"cpu\\\":0.667,\\\"memory\\\":473316808.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0327,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":228},{\\\"dateUtc\\\":\\\"2024-03-03T21:15:38.2752006Z\\\",\\\"cpu\\\":0.429,\\\"memory\\\":473319448.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0522,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":228},{\\\"dateUtc\\\":\\\"2024-03-03T21:15:48.2854763Z\\\",\\\"cpu\\\":0.453,\\\"memory\\\":473306316.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1663,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":227},{\\\"dateUtc\\\":\\\"2024-03-03T21:15:58.2956672Z\\\",\\\"cpu\\\":0.339,\\\"memory\\\":473315280.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.184,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":227},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:08.3056786Z\\\",\\\"cpu\\\":0.568,\\\"memory\\\":473286984.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1414,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":227}]}\\r\\nRequestStart: + 2024-03-03T21:16:09.6472095Z; ResponseTime: 2024-03-03T21:16:09.6500346Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.13:11300/apps/31ad983c-06d1-46f8-8aea-8fb81d4d9cc3/services/40c4e6c8-4ed1-478f-a45b-5a56b7c9b589/partitions/85478231-4ec5-48ed-a9f5-af326b27b42d/replicas/133538490065027762s, + LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.473, ActivityId: + 411f6f74-d9a3-11ee-8256-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:16:09 PM),(port: 11300 | + status: Unknown | lkt: 3/3/2024 9:16:09 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:16:09 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:16:09 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:09.6471295Z\\\", + \\\"durationInMs\\\": 0.0082},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:09.6471377Z\\\", \\\"durationInMs\\\": + 0.0026},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:09.6471403Z\\\", + \\\"durationInMs\\\": 0.061},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:09.6472013Z\\\", \\\"durationInMs\\\": 2.3023},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:09.6495036Z\\\", + \\\"durationInMs\\\": 0.1165},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:09.6496201Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:16:09.4658740Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:16:09.4658892Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:16:09.5023253Z\\\"},\\\"requestSizeInBytes\\\":464,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Database, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:16:09.6472738Z; + ResponseTime: 2024-03-03T21:16:09.6500498Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.9:11000/apps/31ad983c-06d1-46f8-8aea-8fb81d4d9cc3/services/40c4e6c8-4ed1-478f-a45b-5a56b7c9b589/partitions/85478231-4ec5-48ed-a9f5-af326b27b42d/replicas/133538490065027760s, + LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.91, ActivityId: + 411f6f74-d9a3-11ee-8256-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:16:09 PM),(port: 11300 | + status: Unknown | lkt: 3/3/2024 9:16:09 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:16:09 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:16:09 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:09.6472109Z\\\", + \\\"durationInMs\\\": 0.0039},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:09.6472148Z\\\", \\\"durationInMs\\\": + 0.001},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:09.6472158Z\\\", + \\\"durationInMs\\\": 0.0526},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:09.6472684Z\\\", \\\"durationInMs\\\": 1.1476},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:09.6484160Z\\\", + \\\"durationInMs\\\": 0.0552},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:09.6484712Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:16:09.5616520Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:16:09.5616899Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:16:09.5973669Z\\\"},\\\"requestSizeInBytes\\\":464,\\\"responseMetadataSizeInBytes\\\":134,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7041' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F5024BC9B5814C1AAE70CC14F0FEE5AF Ref B: BL2AA2010202009 Ref C: 2024-03-03T21:16:09Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cb64c4e3-4d4c-48fa-8506-5bcfa2000265?api-version=2023-11-15&t=638450973703888779&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=op-S5xkuJ7cusKLX5WEhVX9NDI7cnYPBwAWrJd6kJOyUpV0FvmUfJLHgewhPhtddVlWD3Alx4_rZoPQUH0j48oDbLGabcgIYJAnmEYNFJoCp_aJ1KAwQOhkPhZXpRIhxBsfo240ZYP8P2Dm2AfOwrMaMjuWgZnB2wZ5SsfJil4ES9Ztxg7vzJePA5h9T9fwJMjlNdryISfj7Bcz_KOeoacx64xsyDodBad9KW2v_pjdh8WBFh_4kWG0lgJkRcRlTGvvBp86Xx99OQ8EPs2SlmlDp-vyCrJTQmFbH8A7zms2Nx0N0dUIcPtVGBegAUR_OikYhsGPT7WfNzYQr1qFATw&h=GlA6y29iY2Cg9Bu2nl-ZU8hOPHmPWdwggIltVOIz7fU + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:09 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/cb64c4e3-4d4c-48fa-8506-5bcfa2000265?api-version=2023-11-15&t=638450973704044999&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=hMMFvkgLWSFR_Y15hAFeUQU4feQT1FQeEw_821zUag9um5ygTQC31iWPYWa2FJktikjzDlzVx_FvHcTSocS0o8xTD5WnV3WpdNOszqlfQx8BLcXjoVHMbSj8lnRGsvEiKPAi2avzrG1a3BX_PtIs80eD-nE8lS0tKdcoj9aMTvhNkIXfO5QATCuZ_Enr2BAFPXC5IEeh8mBTtOabq_67eDy2jGO4H1PXpzU-LEHBRc96rJ9OTFP-k_5FSNfzPBxrkJIoHk859mah_qXX-r5yvfK0yEI3aKwJMqIkAWMn7SakrvldqYA5tumJ44Gp4HbDWZELirnA-eDXia6_WRb5jg&h=2rvw9s3eFA6Brr_9LYxyV5yX24pUKlvHx8rLgXaz93w + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: DCBCD1B162E141EB9FA60393F23E409A Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:16:09Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cb64c4e3-4d4c-48fa-8506-5bcfa2000265?api-version=2023-11-15&t=638450973703888779&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=op-S5xkuJ7cusKLX5WEhVX9NDI7cnYPBwAWrJd6kJOyUpV0FvmUfJLHgewhPhtddVlWD3Alx4_rZoPQUH0j48oDbLGabcgIYJAnmEYNFJoCp_aJ1KAwQOhkPhZXpRIhxBsfo240ZYP8P2Dm2AfOwrMaMjuWgZnB2wZ5SsfJil4ES9Ztxg7vzJePA5h9T9fwJMjlNdryISfj7Bcz_KOeoacx64xsyDodBad9KW2v_pjdh8WBFh_4kWG0lgJkRcRlTGvvBp86Xx99OQ8EPs2SlmlDp-vyCrJTQmFbH8A7zms2Nx0N0dUIcPtVGBegAUR_OikYhsGPT7WfNzYQr1qFATw&h=GlA6y29iY2Cg9Bu2nl-ZU8hOPHmPWdwggIltVOIz7fU + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EACF2DB2D8BE4C5BA524845517D3C045 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:16:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cb64c4e3-4d4c-48fa-8506-5bcfa2000265?api-version=2023-11-15&t=638450973703888779&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=op-S5xkuJ7cusKLX5WEhVX9NDI7cnYPBwAWrJd6kJOyUpV0FvmUfJLHgewhPhtddVlWD3Alx4_rZoPQUH0j48oDbLGabcgIYJAnmEYNFJoCp_aJ1KAwQOhkPhZXpRIhxBsfo240ZYP8P2Dm2AfOwrMaMjuWgZnB2wZ5SsfJil4ES9Ztxg7vzJePA5h9T9fwJMjlNdryISfj7Bcz_KOeoacx64xsyDodBad9KW2v_pjdh8WBFh_4kWG0lgJkRcRlTGvvBp86Xx99OQ8EPs2SlmlDp-vyCrJTQmFbH8A7zms2Nx0N0dUIcPtVGBegAUR_OikYhsGPT7WfNzYQr1qFATw&h=GlA6y29iY2Cg9Bu2nl-ZU8hOPHmPWdwggIltVOIz7fU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 11FAE985935148BF8AE7CAEA63D8D5C1 Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:16:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"C0MiAA==","_self":"dbs/C0MiAA==/","_etag":"\"00003504-0000-0700-0000-65e4e89f0000\"","_colls":"colls/","_users":"users/","_ts":1709500575}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '478' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DB057FE346DD41BAB9257D4778CAEC03 Ref B: BL2AA2010202053 Ref C: 2024-03-03T21:16:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"C0MiAA==","_self":"dbs/C0MiAA==/","_etag":"\"00003504-0000-0700-0000-65e4e89f0000\"","_colls":"colls/","_users":"users/","_ts":1709500575}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '478' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B9B159BEB9824B6A8B45276C3247EBAB Ref B: BL2AA2030103005 Ref C: 2024-03-03T21:16:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"C0MiAA==","_self":"dbs/C0MiAA==/","_etag":"\"00003504-0000-0700-0000-65e4e89f0000\"","_colls":"colls/","_users":"users/","_ts":1709500575}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '490' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 94574393B09644C3A02D49F1F7579FFD Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:16:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"C0MiAA==","_self":"dbs/C0MiAA==/","_etag":"\"00003504-0000-0700-0000-65e4e89f0000\"","_colls":"colls/","_users":"users/","_ts":1709500575}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '478' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A4D119C2BACD4279BDDBAEC9DC49CD6E Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:16:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fd592916-d151-4bc7-8a45-7ebca5b46434?api-version=2023-11-15&t=638450974037403928&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dHHO_31pF4W8_fTKRouR8jFyV1CjBd4YXZDPv9rs7G58l_H3WENcWTe6BBsnZRVRdIxWV1W9_j2kX7yi3Gj8ErbttT89iz-Te1Yl_9VTW5AG3Hf-YV2XETs2Lz3DXN86Z8fpcgrnklNq8venWYbEySyZqOhjW5ZA7KX-XneCf-nFwNvrNxowTYwHGD9vSmc7IvhdL9_nCg8Xw3dwfezrNe4qvegp903JPHb2vW5cHPnLTz3_v3H7lLbxoRGK2nxmsrthNJLNZ2NplurVgo1su2nmQGKK427UgelU_b5DTjxj7KH8LUKrLJRfIJvDd1OQUiofUqXeQTjsmIgxuYmbug&h=qDs3GAIDHz7PJxNkV-ONa0nOGK0hpW_kCGpcJuhg_Uc + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:43 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/fd592916-d151-4bc7-8a45-7ebca5b46434?api-version=2023-11-15&t=638450974037403928&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=X6SdjG93y4j6HYCBxORq25Kt0Urvnswa9rG6tPB322ve0LokWBfP-CUgHBlm39uxOlC47Lh1KNecNgMxZvAXvxB3PcgRp2ALEUmEPeL7TaVZdVT1vm6MzOAGto0KMcG7g5MB3BTx58maj04LuspLrAstsD2C86KC5Cwz1OFz9bkyXuC8aRn-GNnD-fBrOSQXyT4x6ExXnyPHyVOEpS8a1ZbyPrco7jdoXryg14qic_HEQXN4fmEYxP_0tyxNlrXU_OGo4UzrOq_kVqRvFmN_r1wCXRMfc32BMm7Hnk7tKfpwCCOWf_NXiPejrlfRu7hnN1eIdACk5EmsKbRLM5-13Q&h=mq5mtntUT6LFTQS3vvm8PBoX8JZV6DdsPZZMa2hfZ2o + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: ADB2A8C2A3224656862EED77F823D31A Ref B: BL2AA2030104035 Ref C: 2024-03-03T21:16:43Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fd592916-d151-4bc7-8a45-7ebca5b46434?api-version=2023-11-15&t=638450974037403928&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dHHO_31pF4W8_fTKRouR8jFyV1CjBd4YXZDPv9rs7G58l_H3WENcWTe6BBsnZRVRdIxWV1W9_j2kX7yi3Gj8ErbttT89iz-Te1Yl_9VTW5AG3Hf-YV2XETs2Lz3DXN86Z8fpcgrnklNq8venWYbEySyZqOhjW5ZA7KX-XneCf-nFwNvrNxowTYwHGD9vSmc7IvhdL9_nCg8Xw3dwfezrNe4qvegp903JPHb2vW5cHPnLTz3_v3H7lLbxoRGK2nxmsrthNJLNZ2NplurVgo1su2nmQGKK427UgelU_b5DTjxj7KH8LUKrLJRfIJvDd1OQUiofUqXeQTjsmIgxuYmbug&h=qDs3GAIDHz7PJxNkV-ONa0nOGK0hpW_kCGpcJuhg_Uc + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AFC073F1CAD94EA6AE024EB30B39626A Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:16:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fd592916-d151-4bc7-8a45-7ebca5b46434?api-version=2023-11-15&t=638450974037403928&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dHHO_31pF4W8_fTKRouR8jFyV1CjBd4YXZDPv9rs7G58l_H3WENcWTe6BBsnZRVRdIxWV1W9_j2kX7yi3Gj8ErbttT89iz-Te1Yl_9VTW5AG3Hf-YV2XETs2Lz3DXN86Z8fpcgrnklNq8venWYbEySyZqOhjW5ZA7KX-XneCf-nFwNvrNxowTYwHGD9vSmc7IvhdL9_nCg8Xw3dwfezrNe4qvegp903JPHb2vW5cHPnLTz3_v3H7lLbxoRGK2nxmsrthNJLNZ2NplurVgo1su2nmQGKK427UgelU_b5DTjxj7KH8LUKrLJRfIJvDd1OQUiofUqXeQTjsmIgxuYmbug&h=qDs3GAIDHz7PJxNkV-ONa0nOGK0hpW_kCGpcJuhg_Uc + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F98B77ADF31C40EFB67717368B0D1A9A Ref B: BL2AA2010201037 Ref C: 2024-03-03T21:17:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:14 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C04D0389CF0E4F0884E7A368D6BFEFB2 Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:17:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:17:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","oldestRestorableTime":"2024-03-03T21:15:44Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","oldestRestorableTime":"2024-03-03T21:15:41Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","oldestRestorableTime":"2024-03-03T21:15:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli000003","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","oldestRestorableTime":"2024-03-03T21:15:36Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","oldestRestorableTime":"2024-03-03T21:15:37Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:17:18Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:17:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:17:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:17:15Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:17:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:17:15Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:17:15Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '424552' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:17:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: CBED0B1643474F139CA1232816C4BB87 Ref B: BL2AA2030104023 Ref C: 2024-03-03T21:17:14Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336", + "restoreTimestampInUtc": "2024-03-03T21:16:42.489842Z"}, "createMode": "Restore"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + Content-Length: + - '337' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1d53f02-8ebc-4abe-aa29-6ec03be43aaa?api-version=2024-02-15-preview&t=638450974419998168&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Nib-id_rBo8jFq05iGmp1jZOZ4H1VDeYXkCoHcuYLDhGS2LyISQZRYj19tHdbNS6xIHZ-_FfPrGHeTQzoj8Vkcy3JVQS7NcyYYDHykf1rU-pBNiJPjt48uT7KSM9k3zT4AImak1mgVu_63MV6wABTEiHmUv_CODY8-eTTREyhiVT2jaylUpjc0HIimwkGA_6XgMjJ-ZZ1_nPcLjyIa_OVEg_NLoY3v1AAth5NZKfAWQPKjcYvi1Y4KrEL6xYz0QJTdIhjJnTNsjR-tbsUl-HaYVnPieQZ-sbwPMHbKj2Y1MGXIrJ_Tu7HM5DkLgG-I5YD_PVRSHVir0hll30kRx_eQ&h=QSSGO76uaVvGr9c9gjl8QDJX6-2mUbX2RkovajndZYE + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:21 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/a1d53f02-8ebc-4abe-aa29-6ec03be43aaa?api-version=2024-02-15-preview&t=638450974419998168&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bLjKHHyppGAimVsDfAwx8ByIf85qOwBjQQBEJmfNAmCPNLdsQ5EMBCcAhEHDFEMQqxRKJ_5wbFS7xAMs8-o_oVM6mh3stVGWSlDRG1jQq3q5PRWTHoUHaO1poDQoIN9U7lo974zVxRd3a2VwkgU7-0kwI8bgjRuDUqJah9BUEbxOUNI44CVY96JAli-Vv0zeNIj9tEP4W-ByvJy4QLn7CQ0OuUDSsjLyli-Bvs2-ql7vqpr8BXUvTPY4koe_yl-vqmRKUYK-UzvbvCqsW6CclcLr53hH-E0SHKDW2F9h0CSxUW-G_mrymw7tsOZFn96yaX7csJ1srQa8trqaYhASyw&h=zc2_w4Lh69A3Z8B3ZIBIpOAgOD2SDR6SMTtxn5AIizU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: E380B877CE864014942EEB2A2E46D4D9 Ref B: BL2AA2030104019 Ref C: 2024-03-03T21:17:21Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1d53f02-8ebc-4abe-aa29-6ec03be43aaa?api-version=2024-02-15-preview&t=638450974419998168&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Nib-id_rBo8jFq05iGmp1jZOZ4H1VDeYXkCoHcuYLDhGS2LyISQZRYj19tHdbNS6xIHZ-_FfPrGHeTQzoj8Vkcy3JVQS7NcyYYDHykf1rU-pBNiJPjt48uT7KSM9k3zT4AImak1mgVu_63MV6wABTEiHmUv_CODY8-eTTREyhiVT2jaylUpjc0HIimwkGA_6XgMjJ-ZZ1_nPcLjyIa_OVEg_NLoY3v1AAth5NZKfAWQPKjcYvi1Y4KrEL6xYz0QJTdIhjJnTNsjR-tbsUl-HaYVnPieQZ-sbwPMHbKj2Y1MGXIrJ_Tu7HM5DkLgG-I5YD_PVRSHVir0hll30kRx_eQ&h=QSSGO76uaVvGr9c9gjl8QDJX6-2mUbX2RkovajndZYE + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2B870A6F1BB247E68BAF86B5E0887D8F Ref B: BL2AA2010203009 Ref C: 2024-03-03T21:17:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1d53f02-8ebc-4abe-aa29-6ec03be43aaa?api-version=2024-02-15-preview&t=638450974419998168&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Nib-id_rBo8jFq05iGmp1jZOZ4H1VDeYXkCoHcuYLDhGS2LyISQZRYj19tHdbNS6xIHZ-_FfPrGHeTQzoj8Vkcy3JVQS7NcyYYDHykf1rU-pBNiJPjt48uT7KSM9k3zT4AImak1mgVu_63MV6wABTEiHmUv_CODY8-eTTREyhiVT2jaylUpjc0HIimwkGA_6XgMjJ-ZZ1_nPcLjyIa_OVEg_NLoY3v1AAth5NZKfAWQPKjcYvi1Y4KrEL6xYz0QJTdIhjJnTNsjR-tbsUl-HaYVnPieQZ-sbwPMHbKj2Y1MGXIrJ_Tu7HM5DkLgG-I5YD_PVRSHVir0hll30kRx_eQ&h=QSSGO76uaVvGr9c9gjl8QDJX6-2mUbX2RkovajndZYE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EF3DEECF8BC54B23BD1DDFE431562DEA Ref B: BL2AA2010204019 Ref C: 2024-03-03T21:17:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1d53f02-8ebc-4abe-aa29-6ec03be43aaa?api-version=2024-02-15-preview&t=638450974419998168&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Nib-id_rBo8jFq05iGmp1jZOZ4H1VDeYXkCoHcuYLDhGS2LyISQZRYj19tHdbNS6xIHZ-_FfPrGHeTQzoj8Vkcy3JVQS7NcyYYDHykf1rU-pBNiJPjt48uT7KSM9k3zT4AImak1mgVu_63MV6wABTEiHmUv_CODY8-eTTREyhiVT2jaylUpjc0HIimwkGA_6XgMjJ-ZZ1_nPcLjyIa_OVEg_NLoY3v1AAth5NZKfAWQPKjcYvi1Y4KrEL6xYz0QJTdIhjJnTNsjR-tbsUl-HaYVnPieQZ-sbwPMHbKj2Y1MGXIrJ_Tu7HM5DkLgG-I5YD_PVRSHVir0hll30kRx_eQ&h=QSSGO76uaVvGr9c9gjl8QDJX6-2mUbX2RkovajndZYE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 54AF1C5FA74B4025B77EE996AD53D343 Ref B: BL2AA2030102007 Ref C: 2024-03-03T21:18:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1d53f02-8ebc-4abe-aa29-6ec03be43aaa?api-version=2024-02-15-preview&t=638450974419998168&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Nib-id_rBo8jFq05iGmp1jZOZ4H1VDeYXkCoHcuYLDhGS2LyISQZRYj19tHdbNS6xIHZ-_FfPrGHeTQzoj8Vkcy3JVQS7NcyYYDHykf1rU-pBNiJPjt48uT7KSM9k3zT4AImak1mgVu_63MV6wABTEiHmUv_CODY8-eTTREyhiVT2jaylUpjc0HIimwkGA_6XgMjJ-ZZ1_nPcLjyIa_OVEg_NLoY3v1AAth5NZKfAWQPKjcYvi1Y4KrEL6xYz0QJTdIhjJnTNsjR-tbsUl-HaYVnPieQZ-sbwPMHbKj2Y1MGXIrJ_Tu7HM5DkLgG-I5YD_PVRSHVir0hll30kRx_eQ&h=QSSGO76uaVvGr9c9gjl8QDJX6-2mUbX2RkovajndZYE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:52 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1224838DD335453E8CABCD52B3751837 Ref B: BL2AA2030101017 Ref C: 2024-03-03T21:18:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a1d53f02-8ebc-4abe-aa29-6ec03be43aaa?api-version=2024-02-15-preview&t=638450974419998168&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Nib-id_rBo8jFq05iGmp1jZOZ4H1VDeYXkCoHcuYLDhGS2LyISQZRYj19tHdbNS6xIHZ-_FfPrGHeTQzoj8Vkcy3JVQS7NcyYYDHykf1rU-pBNiJPjt48uT7KSM9k3zT4AImak1mgVu_63MV6wABTEiHmUv_CODY8-eTTREyhiVT2jaylUpjc0HIimwkGA_6XgMjJ-ZZ1_nPcLjyIa_OVEg_NLoY3v1AAth5NZKfAWQPKjcYvi1Y4KrEL6xYz0QJTdIhjJnTNsjR-tbsUl-HaYVnPieQZ-sbwPMHbKj2Y1MGXIrJ_Tu7HM5DkLgG-I5YD_PVRSHVir0hll30kRx_eQ&h=QSSGO76uaVvGr9c9gjl8QDJX6-2mUbX2RkovajndZYE + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0201368BAAFB47BAAD24C759CB78E3D2 Ref B: BL2AA2010202051 Ref C: 2024-03-03T21:19:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"C0MiAA==","_self":"dbs/C0MiAA==/","_etag":"\"00003904-0000-0700-0000-65e4e9090000\"","_colls":"colls/","_users":"users/","_ts":1709500681}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '478' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B609E0103DC442909C7925CB0D00DBA9 Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:19:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"C0MiAA==","_self":"dbs/C0MiAA==/","_etag":"\"00003904-0000-0700-0000-65e4e9090000\"","_colls":"colls/","_users":"users/","_ts":1709500681}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '478' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A408282B3A2147E39DEFD5A81824F584 Ref B: BL2AA2010202035 Ref C: 2024-03-03T21:19:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"C0MiAA==","_self":"dbs/C0MiAA==/","_etag":"\"00003904-0000-0700-0000-65e4e9090000\"","_colls":"colls/","_users":"users/","_ts":1709500681}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '490' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 30AA63294209481CB317954E9D7117AD Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:19:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_normal_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4206E561443C4CACBF231FB6B5139114 Ref B: BL2AA2030102053 Ref C: 2024-03-03T21:19:25Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_prov_container_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_prov_container_restore.yaml new file mode 100644 index 00000000000..77242fd1645 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_prov_container_restore.yaml @@ -0,0 +1,8759 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001","name":"cli_test_cosmosdb_sql_shared_database_prov_container_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_shared_database_prov_container_restore","date":"2024-03-03T21:19:28Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:19:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 141DC6BCF1204223B004A8D30B4273E0 Ref B: BL2AA2010202037 Ref C: 2024-03-03T21:19:29Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "WestUS", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": "Default", + "backupPolicy": {"type": "Continuous", "continuousModeProperties": {"tier": + "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:19:34.0518469Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"56112447-5c36-44e3-a74c-ff90694e6577","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:19:34.0518469Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:19:34.0518469Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:19:34.0518469Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:19:34.0518469Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5febadc6-0f50-4c33-bb05-acd58375093d?api-version=2024-02-15-preview&t=638450975758430237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jPBXThjGuCGW_9s_To1PoLmCKDHbL_bbRdD1PktyZbclzsBVArRRWDRFqwQopUlPP8mp_vc4ZOxDoDLo90yLm82EHOCzLuBcdylS_Yj-a7AKWf7I8Mq6pp8S_ymtY-5FerGLsnYFr7JBbVw4giSRYm5fvdVAPbxFY-h2FMl4eRmdDs8R7xyMnZxHN_jOaP4kssBfCChpiDyIEgWM-I1wd_V6fiEj5c9AXCzkyftzgpZcPoIC2jFfGgx-DH0s53yKBwqe7hlXqKz_iXsSNqutZCCx1xc0Zb7tvOSP-JB-RiKPBJI6HFsIrugRraH9e1kxxWBc6h-Oo2oijZMB0EhBCQ&h=cj-OrQH3Hmy33OA6m09mgF1yYfYZHHy-VXrPM0i8jIs + cache-control: + - no-store, no-cache + content-length: + - '2695' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:35 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/5febadc6-0f50-4c33-bb05-acd58375093d?api-version=2024-02-15-preview&t=638450975758586479&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=VuPu9APEq4wAJmgBZ2eS7Om53OOeuysWnWbgjVqMzaS9OcUKWZ2eRTCunx3V4z7JyryzCfJTuuJwaYn57lolywT6fQuERBoE5ztOwNZ-6esbkS5uaDbLKLydvp_j3PPeQTmQ1gyNcYJh-du1arOdjPfLfWrYIlM8Rle9tCUiP0eLw8fhkTrRP4WifTDkknaSX_BUG01TIXY6dtvhzAGWiCorF__cs25IXvj3NHegEwPlZ7tT9-LZSdvAAV4Bz-t3qBAWQXw9C0UUL-L99qFdW5KTgENHRBkihBTeO2GMiJ6XIFrDOU4kTqlsjlrxynY240gCBsFQAmQ3q4TfSyXQRg&h=KIU2aVrpCeVM7MpMOEiKYaaYlvOJieBkoJ7gPwgATPs + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: D64F32D660444BE39C44E64BF02CBB2D Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:19:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5febadc6-0f50-4c33-bb05-acd58375093d?api-version=2024-02-15-preview&t=638450975758430237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jPBXThjGuCGW_9s_To1PoLmCKDHbL_bbRdD1PktyZbclzsBVArRRWDRFqwQopUlPP8mp_vc4ZOxDoDLo90yLm82EHOCzLuBcdylS_Yj-a7AKWf7I8Mq6pp8S_ymtY-5FerGLsnYFr7JBbVw4giSRYm5fvdVAPbxFY-h2FMl4eRmdDs8R7xyMnZxHN_jOaP4kssBfCChpiDyIEgWM-I1wd_V6fiEj5c9AXCzkyftzgpZcPoIC2jFfGgx-DH0s53yKBwqe7hlXqKz_iXsSNqutZCCx1xc0Zb7tvOSP-JB-RiKPBJI6HFsIrugRraH9e1kxxWBc6h-Oo2oijZMB0EhBCQ&h=cj-OrQH3Hmy33OA6m09mgF1yYfYZHHy-VXrPM0i8jIs + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A9C43A0C0EF647A6B82F32DD9852BCCA Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:19:35Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5febadc6-0f50-4c33-bb05-acd58375093d?api-version=2024-02-15-preview&t=638450975758430237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jPBXThjGuCGW_9s_To1PoLmCKDHbL_bbRdD1PktyZbclzsBVArRRWDRFqwQopUlPP8mp_vc4ZOxDoDLo90yLm82EHOCzLuBcdylS_Yj-a7AKWf7I8Mq6pp8S_ymtY-5FerGLsnYFr7JBbVw4giSRYm5fvdVAPbxFY-h2FMl4eRmdDs8R7xyMnZxHN_jOaP4kssBfCChpiDyIEgWM-I1wd_V6fiEj5c9AXCzkyftzgpZcPoIC2jFfGgx-DH0s53yKBwqe7hlXqKz_iXsSNqutZCCx1xc0Zb7tvOSP-JB-RiKPBJI6HFsIrugRraH9e1kxxWBc6h-Oo2oijZMB0EhBCQ&h=cj-OrQH3Hmy33OA6m09mgF1yYfYZHHy-VXrPM0i8jIs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 44AF87262B8D460CB52E77FDF0E6C251 Ref B: BL2AA2030102009 Ref C: 2024-03-03T21:20:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5febadc6-0f50-4c33-bb05-acd58375093d?api-version=2024-02-15-preview&t=638450975758430237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jPBXThjGuCGW_9s_To1PoLmCKDHbL_bbRdD1PktyZbclzsBVArRRWDRFqwQopUlPP8mp_vc4ZOxDoDLo90yLm82EHOCzLuBcdylS_Yj-a7AKWf7I8Mq6pp8S_ymtY-5FerGLsnYFr7JBbVw4giSRYm5fvdVAPbxFY-h2FMl4eRmdDs8R7xyMnZxHN_jOaP4kssBfCChpiDyIEgWM-I1wd_V6fiEj5c9AXCzkyftzgpZcPoIC2jFfGgx-DH0s53yKBwqe7hlXqKz_iXsSNqutZCCx1xc0Zb7tvOSP-JB-RiKPBJI6HFsIrugRraH9e1kxxWBc6h-Oo2oijZMB0EhBCQ&h=cj-OrQH3Hmy33OA6m09mgF1yYfYZHHy-VXrPM0i8jIs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6DA074DD8C62488F8067DFC83A7F331E Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:20:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5febadc6-0f50-4c33-bb05-acd58375093d?api-version=2024-02-15-preview&t=638450975758430237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jPBXThjGuCGW_9s_To1PoLmCKDHbL_bbRdD1PktyZbclzsBVArRRWDRFqwQopUlPP8mp_vc4ZOxDoDLo90yLm82EHOCzLuBcdylS_Yj-a7AKWf7I8Mq6pp8S_ymtY-5FerGLsnYFr7JBbVw4giSRYm5fvdVAPbxFY-h2FMl4eRmdDs8R7xyMnZxHN_jOaP4kssBfCChpiDyIEgWM-I1wd_V6fiEj5c9AXCzkyftzgpZcPoIC2jFfGgx-DH0s53yKBwqe7hlXqKz_iXsSNqutZCCx1xc0Zb7tvOSP-JB-RiKPBJI6HFsIrugRraH9e1kxxWBc6h-Oo2oijZMB0EhBCQ&h=cj-OrQH3Hmy33OA6m09mgF1yYfYZHHy-VXrPM0i8jIs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8DDBE0D2C671467F8D6FB18286D643BF Ref B: BL2AA2010205007 Ref C: 2024-03-03T21:21:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5febadc6-0f50-4c33-bb05-acd58375093d?api-version=2024-02-15-preview&t=638450975758430237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jPBXThjGuCGW_9s_To1PoLmCKDHbL_bbRdD1PktyZbclzsBVArRRWDRFqwQopUlPP8mp_vc4ZOxDoDLo90yLm82EHOCzLuBcdylS_Yj-a7AKWf7I8Mq6pp8S_ymtY-5FerGLsnYFr7JBbVw4giSRYm5fvdVAPbxFY-h2FMl4eRmdDs8R7xyMnZxHN_jOaP4kssBfCChpiDyIEgWM-I1wd_V6fiEj5c9AXCzkyftzgpZcPoIC2jFfGgx-DH0s53yKBwqe7hlXqKz_iXsSNqutZCCx1xc0Zb7tvOSP-JB-RiKPBJI6HFsIrugRraH9e1kxxWBc6h-Oo2oijZMB0EhBCQ&h=cj-OrQH3Hmy33OA6m09mgF1yYfYZHHy-VXrPM0i8jIs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FA6D25F97A774CABAA041F884D943138 Ref B: BL2AA2030104011 Ref C: 2024-03-03T21:21:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5febadc6-0f50-4c33-bb05-acd58375093d?api-version=2024-02-15-preview&t=638450975758430237&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jPBXThjGuCGW_9s_To1PoLmCKDHbL_bbRdD1PktyZbclzsBVArRRWDRFqwQopUlPP8mp_vc4ZOxDoDLo90yLm82EHOCzLuBcdylS_Yj-a7AKWf7I8Mq6pp8S_ymtY-5FerGLsnYFr7JBbVw4giSRYm5fvdVAPbxFY-h2FMl4eRmdDs8R7xyMnZxHN_jOaP4kssBfCChpiDyIEgWM-I1wd_V6fiEj5c9AXCzkyftzgpZcPoIC2jFfGgx-DH0s53yKBwqe7hlXqKz_iXsSNqutZCCx1xc0Zb7tvOSP-JB-RiKPBJI6HFsIrugRraH9e1kxxWBc6h-Oo2oijZMB0EhBCQ&h=cj-OrQH3Hmy33OA6m09mgF1yYfYZHHy-VXrPM0i8jIs + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 777327ACB1C244408E4F22B957F94F92 Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:22:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:21:28.99074Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"56112447-5c36-44e3-a74c-ff90694e6577","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:21:28.99074Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:21:28.99074Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:21:28.99074Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:21:28.99074Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3043' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5ADE5926D1BA44348F7A27A3371E9083 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:22:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:21:28.99074Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"56112447-5c36-44e3-a74c-ff90694e6577","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West + US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:21:28.99074Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:21:28.99074Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:21:28.99074Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:21:28.99074Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3043' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5AF3F132B2064F12A67175D089477BF1 Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:22:07Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {"throughput": 1000}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + Content-Length: + - '107' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9e657727-32a8-4b61-b32b-e68525e13f1c?api-version=2023-11-15&t=638450977281431668&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=rfAaCtw66STPMYRn7kHi0Lsa06DyxBjRor8fBmTSeDnRAh5tIjhoichukYhhgFFcnM_dxiDv0Kfxmy-hYb3jLw3Rsa2dHVbYKKwLqyjdNu2u_tdN6y-Iw8PF79o_KaSNdGz55gUCSq-VPXKrFR7EH7fbWGMgT9RfZb8jcqgC4RmRWYAcBckafXi8O_Nq_keI-jfe3TxA8uWld5-5Rv301vQkmcdeWQvJ_kY35dp-ggs0NaRM17_V01G1DOZS7AYg2U4z5OjGwwBKhCA_r2-u565-t2q_Qll6dnoQ5xicjSJEgQ3ZPkmh0V03TH1Z3pmBionButcpaG2G6_SJoTtF-A&h=VULNpIh2apkXIVTCm6xs_2cM_Bi8vikSZdIYLqWHA_o + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:07 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/9e657727-32a8-4b61-b32b-e68525e13f1c?api-version=2023-11-15&t=638450977281431668&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jCqhbAmo56D0MighByFg9zDxigi3bKx45eIBEw8SvQdfTLpi29svTbK-R4koKUPpEQCGT_gZ0xbUM9Jsh9atUU2PgCd0b9QgqaKUq3huGZoGV4-1CQF6Zyqcqs1v1Bczx3PDCImLy4_CIsZo138joAeyGclxqiaJngfsbxDp_QfEzjw9W85MRx84MQAlwQZfJgdQybdeVmdbipGQDS5q1PI-BrI2JJS3Xn0FbqNnL4Tu_DtR65SNouCpe_QlxFjZT0tbrmKOQQcowKoY7y0qgoHWOmqqhXRJMYN3D-w2XArdgXn1BzZJ6wFWOX7VcVPy_vY9antbG2wBqDnDjnuR1g&h=krFfQkQLRyQLgQJnut-646ngrpKdtDNN0u_eR5vzfpQ + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 3FF0A06F6C904EB49E4040B5FFC5F954 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:22:07Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9e657727-32a8-4b61-b32b-e68525e13f1c?api-version=2023-11-15&t=638450977281431668&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=rfAaCtw66STPMYRn7kHi0Lsa06DyxBjRor8fBmTSeDnRAh5tIjhoichukYhhgFFcnM_dxiDv0Kfxmy-hYb3jLw3Rsa2dHVbYKKwLqyjdNu2u_tdN6y-Iw8PF79o_KaSNdGz55gUCSq-VPXKrFR7EH7fbWGMgT9RfZb8jcqgC4RmRWYAcBckafXi8O_Nq_keI-jfe3TxA8uWld5-5Rv301vQkmcdeWQvJ_kY35dp-ggs0NaRM17_V01G1DOZS7AYg2U4z5OjGwwBKhCA_r2-u565-t2q_Qll6dnoQ5xicjSJEgQ3ZPkmh0V03TH1Z3pmBionButcpaG2G6_SJoTtF-A&h=VULNpIh2apkXIVTCm6xs_2cM_Bi8vikSZdIYLqWHA_o + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EC6ABE44FDDB4B0FB73D9B3F173298CC Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:22:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9e657727-32a8-4b61-b32b-e68525e13f1c?api-version=2023-11-15&t=638450977281431668&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=rfAaCtw66STPMYRn7kHi0Lsa06DyxBjRor8fBmTSeDnRAh5tIjhoichukYhhgFFcnM_dxiDv0Kfxmy-hYb3jLw3Rsa2dHVbYKKwLqyjdNu2u_tdN6y-Iw8PF79o_KaSNdGz55gUCSq-VPXKrFR7EH7fbWGMgT9RfZb8jcqgC4RmRWYAcBckafXi8O_Nq_keI-jfe3TxA8uWld5-5Rv301vQkmcdeWQvJ_kY35dp-ggs0NaRM17_V01G1DOZS7AYg2U4z5OjGwwBKhCA_r2-u565-t2q_Qll6dnoQ5xicjSJEgQ3ZPkmh0V03TH1Z3pmBionButcpaG2G6_SJoTtF-A&h=VULNpIh2apkXIVTCm6xs_2cM_Bi8vikSZdIYLqWHA_o + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 493CE31D43064EFD9A1BB4A061E6E3FF Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:22:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"cBBQAA==","_self":"dbs/cBBQAA==/","_etag":"\"0000cd03-0000-0700-0000-65e4ea080000\"","_colls":"colls/","_users":"users/","_ts":1709500936}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '493' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D7AA553618CE407A9F6E63AA4561F5F0 Ref B: BL2AA2030104045 Ref C: 2024-03-03T21:22:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 299cd1ef-d9a4-11ee-a4df-000d3a1e0e23, Request URI: /apps/0fe1def8-76a7-4322-b497-f3e9e8226b5e/services/927af3d9-d403-49e1-8bdb-cc3674d85400/partitions/7435fff5-20e3-41e2-9d65-c9c0c92fcd52/replicas/133538667093477169s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:22:39.4284092Z, RequestEndTime: + 2024-03-03T21:22:39.4307064Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:21:40.2774282Z\\\",\\\"cpu\\\":0.228,\\\"memory\\\":474167480.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0471,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":318},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:50.2875096Z\\\",\\\"cpu\\\":0.222,\\\"memory\\\":474164212.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.168,\\\"availableThreads\\\":32763,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":318},{\\\"dateUtc\\\":\\\"2024-03-03T21:22:00.2976953Z\\\",\\\"cpu\\\":0.228,\\\"memory\\\":474176288.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0489,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":318},{\\\"dateUtc\\\":\\\"2024-03-03T21:22:10.3078630Z\\\",\\\"cpu\\\":0.222,\\\"memory\\\":474151764.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.125,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":318},{\\\"dateUtc\\\":\\\"2024-03-03T21:22:20.3179551Z\\\",\\\"cpu\\\":0.249,\\\"memory\\\":474168828.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0947,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":317},{\\\"dateUtc\\\":\\\"2024-03-03T21:22:30.3280917Z\\\",\\\"cpu\\\":0.180,\\\"memory\\\":474176336.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0553,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":319}]}\\r\\nRequestStart: + 2024-03-03T21:22:39.4286121Z; ResponseTime: 2024-03-03T21:22:39.4306958Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.7:11300/apps/0fe1def8-76a7-4322-b497-f3e9e8226b5e/services/927af3d9-d403-49e1-8bdb-cc3674d85400/partitions/7435fff5-20e3-41e2-9d65-c9c0c92fcd52/replicas/133538667093477169s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.947, ActivityId: + 299cd1ef-d9a4-11ee-a4df-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:22:39 PM),(port: 11300 | + status: Unknown | lkt: 3/3/2024 9:22:39 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:22:39 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:22:39 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:39.4284836Z\\\", + \\\"durationInMs\\\": 0.0269},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:39.4285105Z\\\", \\\"durationInMs\\\": + 0.0045},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:39.4285150Z\\\", + \\\"durationInMs\\\": 0.0817},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:39.4285967Z\\\", \\\"durationInMs\\\": 1.6044},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:39.4302011Z\\\", + \\\"durationInMs\\\": 0.1581},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:39.4303592Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:22:38.9355893Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:22:38.9356025Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:22:38.9708056Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:22:39.4286771Z; + ResponseTime: 2024-03-03T21:22:39.4307064Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.10:11300/apps/0fe1def8-76a7-4322-b497-f3e9e8226b5e/services/927af3d9-d403-49e1-8bdb-cc3674d85400/partitions/7435fff5-20e3-41e2-9d65-c9c0c92fcd52/replicas/133538667093477171s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.002, ActivityId: + 299cd1ef-d9a4-11ee-a4df-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:22:39 PM),(port: 11300 | + status: Unknown | lkt: 3/3/2024 9:22:39 PM),(port: 11000 | status: Unknown + | lkt: 3/3/2024 9:22:39 PM),(port: 11300 | status: Unknown | lkt: 3/3/2024 + 9:22:39 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:39.4286149Z\\\", + \\\"durationInMs\\\": 0.0052},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:39.4286201Z\\\", \\\"durationInMs\\\": + 0.0023},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:39.4286224Z\\\", + \\\"durationInMs\\\": 0.047},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:39.4286694Z\\\", \\\"durationInMs\\\": 1.6037},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:39.4302731Z\\\", + \\\"durationInMs\\\": 0.1264},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:39.4303995Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:22:39.0274867Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:22:39.0275014Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:22:39.0283868Z\\\"},\\\"requestSizeInBytes\\\":494,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7068' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 131490E0A9564C1B978A30A0B9719CE6 Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:22:39Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], + "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": ["/path/to/key1"]}, + {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": {"mode": "lastWriterWins", + "conflictResolutionPath": "/path"}}, "options": {"throughput": 1000}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + Content-Length: + - '497' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef11ddbf-ffa8-4288-9269-7f8b7dd41c65?api-version=2024-02-15-preview&t=638450977602102192&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YJmADcipt0PuzAspP1pWbLxu8sCacB3Y5yU-PIpf1hsiHUScmnRLAZ8YOnaTJyZoc4W2pkT2oWGW5fwG__MCPV_ZtXMANMr66WQTHyn2AAwqE8DUyS0T2xgyWJWHgvbZ4FHg0DR1-Eh9pURMQB6sPvlQdBnN4twl3791Bbxp9ag6TONakVqLrfLcvSxIP-M876eokeOHTNJQi9lQL6YFZEuUoY0OAVBWYSkwrIfq2U6PoXYX1b5A9sxBgQgzsHMPtZrX9q48SkvGPq3kg8SfPPaJb8_T9A8DMegOss90u2iLaI3zjyjJXk6_kFEN8ej4MkYJNjegbd_c7FL9PryrOw&h=Cp3peJgBDYcmXNyJEwO-QC7mP8Qz0HHqiVUU38Yxs2E + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:39 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/ef11ddbf-ffa8-4288-9269-7f8b7dd41c65?api-version=2024-02-15-preview&t=638450977602102192&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XUV08NbOCh3Sh39kMZHNFZxllpScrrVdRxpQVDWnW2ybSBm39Sv0nyEjslrN9rubD5O_hm4LJGUQpzdmjs2LjIAbRFJU1BWU7YBvIKZUjuM14fnWzmYa3d5PW8xxLDvalFl4GdhICknj2Q4w5MQYTMtYrZ-eWZ__FEDtLpLRUYMiddl9pgrVGFLx17DC5kFPUdJC8ObCvcgxss9rpxnYPF--8ZltSHLeIoID4rEyBfL0wFAXflREhmAx9sMLxVtw-6L_guImK5VhFbT0hI3GXcNf7yHk4Ta7joCL3M5mblRlooBIfn_13OFY77fnR_QZBAf_WKug6ttQrBnCjM8I1w&h=bPQWcnEmoqX7ZjxQBQ06kttQJEGYefUTT5O3707CDBc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 32FDB63FA920472395625DA87D3292A2 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:22:39Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef11ddbf-ffa8-4288-9269-7f8b7dd41c65?api-version=2024-02-15-preview&t=638450977602102192&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YJmADcipt0PuzAspP1pWbLxu8sCacB3Y5yU-PIpf1hsiHUScmnRLAZ8YOnaTJyZoc4W2pkT2oWGW5fwG__MCPV_ZtXMANMr66WQTHyn2AAwqE8DUyS0T2xgyWJWHgvbZ4FHg0DR1-Eh9pURMQB6sPvlQdBnN4twl3791Bbxp9ag6TONakVqLrfLcvSxIP-M876eokeOHTNJQi9lQL6YFZEuUoY0OAVBWYSkwrIfq2U6PoXYX1b5A9sxBgQgzsHMPtZrX9q48SkvGPq3kg8SfPPaJb8_T9A8DMegOss90u2iLaI3zjyjJXk6_kFEN8ej4MkYJNjegbd_c7FL9PryrOw&h=Cp3peJgBDYcmXNyJEwO-QC7mP8Qz0HHqiVUU38Yxs2E + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1BE0F24023924D308C313291E31A554D Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:22:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef11ddbf-ffa8-4288-9269-7f8b7dd41c65?api-version=2024-02-15-preview&t=638450977602102192&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YJmADcipt0PuzAspP1pWbLxu8sCacB3Y5yU-PIpf1hsiHUScmnRLAZ8YOnaTJyZoc4W2pkT2oWGW5fwG__MCPV_ZtXMANMr66WQTHyn2AAwqE8DUyS0T2xgyWJWHgvbZ4FHg0DR1-Eh9pURMQB6sPvlQdBnN4twl3791Bbxp9ag6TONakVqLrfLcvSxIP-M876eokeOHTNJQi9lQL6YFZEuUoY0OAVBWYSkwrIfq2U6PoXYX1b5A9sxBgQgzsHMPtZrX9q48SkvGPq3kg8SfPPaJb8_T9A8DMegOss90u2iLaI3zjyjJXk6_kFEN8ej4MkYJNjegbd_c7FL9PryrOw&h=Cp3peJgBDYcmXNyJEwO-QC7mP8Qz0HHqiVUU38Yxs2E + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E9DCDCDD799C4D6AA7FC6ACF56FCE9EA Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:23:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709500968,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000d203-0000-0700-0000-65e4ea280000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1262' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 715410AE540D4052AE1C81F28CEA1D43 Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:23:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709500968,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000d203-0000-0700-0000-65e4ea280000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1262' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6A975BD102D944FBA86BF01E3D304AE0 Ref B: BL2AA2010202053 Ref C: 2024-03-03T21:23:11Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}, {"path": "/\"_etag\"/?"}]}, "partitionKey": + {"paths": ["/thePartitionKey"], "kind": "Hash"}, "uniqueKeyPolicy": {"uniqueKeys": + [{"paths": ["/path/to/key1"]}, {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": + {"mode": "lastWriterWins", "conflictResolutionPath": "/path", "conflictResolutionProcedure": + ""}}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + Content-Length: + - '540' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b8a4684-5f15-4460-97c1-7d4d93b728f3?api-version=2024-02-15-preview&t=638450977930181957&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=VNmC39zia2AI3YqwdTMeVmg5Y5TXW3dcNkaJPvh2JAapxeHq4EFDcF-OqVvWR7i5AqdAzKbR1ZFLljJu8i__o09NsFDnw2yRE-QagkN5gxlPDL9-OGbBjEG-0NDCnccvW6g3AxsBf21CPINo1Na0wBBzpATrtPtO5ZfbRXBj0m66lPyRt9GOtDTuBI266w56KYgPEG096XLNkFBYaek8M7S73Ew2S_s7GmYyXOu2IH2a-2w_VO7qJ6cWv6_jhMC9MG3JVffMZ6qaN36mLyLzIXKemDyvzIBF04t4O_cGFz-kIfbt9XzBRKKTHWqzAaVKEgpZ_weu05SP01qNBRcu0A&h=pMlhvFtStRyH9tm-lZn96b78yyt7zIicEEtLliDxA1k + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:12 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/8b8a4684-5f15-4460-97c1-7d4d93b728f3?api-version=2024-02-15-preview&t=638450977930181957&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=N9l066AiYh0d8MDRrr7YYe8Zaq0UBNal9lkaXgdq7eQgXIE89C2vsm5xjcvcB6N3pivlcgqM4yykv0bzx44UtIcRKfEf9mTO7bROLyN2qUJxpgQdypKwA-9ZxV-9Wvah1iQLxwctZRrpmyJAVW9_LiOjhVIyTc11sJz5yvnnMn8ZSd4tMQ0YL_ocFYiaNpmtBTtprQ3WWf2WIjWT4eErwMYCswUUz85zSyj9VgJtMBxaiMFmC05OiFGOck6PNwKU5CziOEhEdXnTSRM2tM27qQQ_9JGtuwIfBHdCPeGdmmcx27EAp_8mafSvsRuld2pAVwYAHwmo2wDJq-FWj6tQZA&h=JuYnsnVD6_yjVY59SUWaMypH8DcmBYgyF9LN5fDyCsM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: C4AB8D394BA1411CBB78BCEC9EDECA85 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:23:12Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b8a4684-5f15-4460-97c1-7d4d93b728f3?api-version=2024-02-15-preview&t=638450977930181957&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=VNmC39zia2AI3YqwdTMeVmg5Y5TXW3dcNkaJPvh2JAapxeHq4EFDcF-OqVvWR7i5AqdAzKbR1ZFLljJu8i__o09NsFDnw2yRE-QagkN5gxlPDL9-OGbBjEG-0NDCnccvW6g3AxsBf21CPINo1Na0wBBzpATrtPtO5ZfbRXBj0m66lPyRt9GOtDTuBI266w56KYgPEG096XLNkFBYaek8M7S73Ew2S_s7GmYyXOu2IH2a-2w_VO7qJ6cWv6_jhMC9MG3JVffMZ6qaN36mLyLzIXKemDyvzIBF04t4O_cGFz-kIfbt9XzBRKKTHWqzAaVKEgpZ_weu05SP01qNBRcu0A&h=pMlhvFtStRyH9tm-lZn96b78yyt7zIicEEtLliDxA1k + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2165ADC589E8428CBF925D665E17BDD7 Ref B: BL2AA2030104051 Ref C: 2024-03-03T21:23:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b8a4684-5f15-4460-97c1-7d4d93b728f3?api-version=2024-02-15-preview&t=638450977930181957&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=VNmC39zia2AI3YqwdTMeVmg5Y5TXW3dcNkaJPvh2JAapxeHq4EFDcF-OqVvWR7i5AqdAzKbR1ZFLljJu8i__o09NsFDnw2yRE-QagkN5gxlPDL9-OGbBjEG-0NDCnccvW6g3AxsBf21CPINo1Na0wBBzpATrtPtO5ZfbRXBj0m66lPyRt9GOtDTuBI266w56KYgPEG096XLNkFBYaek8M7S73Ew2S_s7GmYyXOu2IH2a-2w_VO7qJ6cWv6_jhMC9MG3JVffMZ6qaN36mLyLzIXKemDyvzIBF04t4O_cGFz-kIfbt9XzBRKKTHWqzAaVKEgpZ_weu05SP01qNBRcu0A&h=pMlhvFtStRyH9tm-lZn96b78yyt7zIicEEtLliDxA1k + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C0B399F1318444C2B7211BA977E6FA1D Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:23:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709500968,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000d203-0000-0700-0000-65e4ea280000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1262' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CEE3C7048EF04F89BA8031C0509A57FB Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:23:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709500968,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000d203-0000-0700-0000-65e4ea280000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1262' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6395EA02C35F41AD9B3B69C0F771C7F7 Ref B: BL2AA2030103027 Ref C: 2024-03-03T21:23:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709500968,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000d203-0000-0700-0000-65e4ea280000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1161' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 215E41CA6FF94FDC8FC3747C63A83938 Ref B: BL2AA2010204003 Ref C: 2024-03-03T21:23:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709500968,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000d203-0000-0700-0000-65e4ea280000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1264' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D58CE51919F44865AAB350D029AB92F8 Ref B: BL2AA2030101053 Ref C: 2024-03-03T21:28:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/17880e96-3500-4dd7-a03f-c1c4cf057f8c?api-version=2023-11-15&t=638450981262322964&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CtSFIUDsrRAmZ2s0ZfbaGH_7qHWCOJeoQgwUTq_Srmbn66Ix2U408bnrUU9zC1lpTWubdwiSpiYQ4dEn-iDqdx3w5tbaMo9Li-FW32h90g1VzWcy5KK2XUuKgFQFcXkNW7lwadm-PJP-kDAu8gqwBYWUFh7P8b48xs8aVbeoVz8zDA0GbdUCbZ23GfgkqXtPQpycuxlAkF0NB1MUlyuZpiru5UWureDqxcw1_gpZWIDqxWKVe88Fk7u0R6T7Zx_2UhJcupKpWU4_AtEKIciMT7JJt18QOLmMC616X4JJ93k2dsXB2erhF6TNV0a6JgMZKirNFq6GwoKERpt93xdTUg&h=ROG8aVg4wi_C_RTC7nM71pbWfXZRH91DcS_lK8z_0GQ + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:45 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/17880e96-3500-4dd7-a03f-c1c4cf057f8c?api-version=2023-11-15&t=638450981262479207&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=l3Q5J9JktLyXFA8LjZBrrosmp7tFK_azTwHjCuVFfgKY80-jOIH_XNgulIUJ0l_FGJDEsbqFl-Tc6kgO7C53EerpglN6rknm0G7YWcuxhsQlbpSaPpj4A7O27sn5GJcQIQuLHTuk4Vaem1Ktmpe1lD8QlMX7h4oycCR33IepJxFW9X2aJeRR5vK-rKFaaeqCmxLEbgH5HAiJNOUgLtH3yV3SwEYIVaFnGPWSKrnUyRM2aJjXYlg2Dv5nFMOizuTSUq4DcS_xID_7nX3h9VyjhExHW3w0efPQ5q_8xFC0QvmwUXdlJWTLnr67za8LXGqcWVrQQ_aXLauemBjDqlLKwg&h=FBd5g8vxA7S2ZeCkzmvHJwbojlrcpcpIA-FQPw9u0VE + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 284F7BB1A11B40AB919217146A8589D6 Ref B: BL2AA2010202047 Ref C: 2024-03-03T21:28:45Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/17880e96-3500-4dd7-a03f-c1c4cf057f8c?api-version=2023-11-15&t=638450981262322964&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CtSFIUDsrRAmZ2s0ZfbaGH_7qHWCOJeoQgwUTq_Srmbn66Ix2U408bnrUU9zC1lpTWubdwiSpiYQ4dEn-iDqdx3w5tbaMo9Li-FW32h90g1VzWcy5KK2XUuKgFQFcXkNW7lwadm-PJP-kDAu8gqwBYWUFh7P8b48xs8aVbeoVz8zDA0GbdUCbZ23GfgkqXtPQpycuxlAkF0NB1MUlyuZpiru5UWureDqxcw1_gpZWIDqxWKVe88Fk7u0R6T7Zx_2UhJcupKpWU4_AtEKIciMT7JJt18QOLmMC616X4JJ93k2dsXB2erhF6TNV0a6JgMZKirNFq6GwoKERpt93xdTUg&h=ROG8aVg4wi_C_RTC7nM71pbWfXZRH91DcS_lK8z_0GQ + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D9BF43660428459A899746B09652428F Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:28:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/17880e96-3500-4dd7-a03f-c1c4cf057f8c?api-version=2023-11-15&t=638450981262322964&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CtSFIUDsrRAmZ2s0ZfbaGH_7qHWCOJeoQgwUTq_Srmbn66Ix2U408bnrUU9zC1lpTWubdwiSpiYQ4dEn-iDqdx3w5tbaMo9Li-FW32h90g1VzWcy5KK2XUuKgFQFcXkNW7lwadm-PJP-kDAu8gqwBYWUFh7P8b48xs8aVbeoVz8zDA0GbdUCbZ23GfgkqXtPQpycuxlAkF0NB1MUlyuZpiru5UWureDqxcw1_gpZWIDqxWKVe88Fk7u0R6T7Zx_2UhJcupKpWU4_AtEKIciMT7JJt18QOLmMC616X4JJ93k2dsXB2erhF6TNV0a6JgMZKirNFq6GwoKERpt93xdTUg&h=ROG8aVg4wi_C_RTC7nM71pbWfXZRH91DcS_lK8z_0GQ + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:15 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F906101A472546E187E20987A16C13FF Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:29:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:16 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 85C93C1BCC96400F8B71EF37B02BBF54 Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:29:16Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:29:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:29:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:29:20Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:29:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:29:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:29:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:29:18Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:29:17Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:29:17Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '427842' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:29:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 37F0F6EDB53540D1B8FD73327FFB2D8C Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:29:17Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577", + "restoreTimestampInUtc": "2024-03-03T21:23:45.075904Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:23 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641821521&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gEihxnAt8PzA8tvIzVBzxeNPLMqAwJNtpnnlq9BfW8oMa6P053BKzmj0HqAkJ_XLHrrXL7-Bqkh0QTgV83OmeW4hTFpciPcUHBbPj1L95lH4-AojKSL1WDDVXOEBM__Q7SwRvSy_ZRqOj9RHSxqDu7ALpT1KQLGbIsb9mHZvFkzSywDVaZkGkwlpVwApvoNQqDGin1GtUhi5HJO0NPIlDbcXiiZM9WKT8iul4y6dZK0dNxFepZTTK4nGXhETtfKgPIyNWbECrALUFpAnhnpZR3uEhvkkmR-EZy8AetkfhTYgSQh_jT-G8TFXkDWn4yNpZklBa95dUcX3jOPVy90ZvA&h=GY-6WUMHkQ0NMBnqbk5x6AZ7JvbCArel0__dG1B4BtU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 8BD6CE45D9A444A8AA5046FE39EB9D3D Ref B: BL2AA2010202039 Ref C: 2024-03-03T21:29:23Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FE3C19AD9F574FE5B7188ACF16A06B8D Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:29:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:53 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EED8A17747754C95BA295D94B3CFD509 Ref B: BL2AA2010202035 Ref C: 2024-03-03T21:29:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A7291D1B0F06429585C0EC3C66A1ED2A Ref B: BL2AA2030102007 Ref C: 2024-03-03T21:30:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 085D16DAF7B94770ADE6A7008482166E Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:30:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 43B577156F614E2F8E098712FED8E23A Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:31:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 031080C81BEC419EA12DBB590813FB0B Ref B: BL2AA2010203003 Ref C: 2024-03-03T21:31:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A2A5BE6E0D4843DBA440BA97600F2994 Ref B: BL2AA2030101037 Ref C: 2024-03-03T21:32:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E9B6984F31C5415E810E23DE4FC9E5E5 Ref B: BL2AA2030104049 Ref C: 2024-03-03T21:32:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1111B65868954480ABE4BE260E71286F Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:33:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2548D0BC42484CD2B75670CA197240C6 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:33:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 782ECF8CD2C74A71920BD2FB1BEAFA5E Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:34:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3A453357D1F94C189B28463AF313DEBD Ref B: BL2AA2010201003 Ref C: 2024-03-03T21:34:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2207BB7119C042AD8B92858A27C23256 Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:35:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F73DCA1E8D904CF1A141184FC8124A96 Ref B: BL2AA2030102031 Ref C: 2024-03-03T21:35:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/229ac41b-6e3f-41e1-8cca-f12cbd868a28?api-version=2024-02-15-preview&t=638450981641665242&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cJGDpUNY7Vc_WHUYzQRBfJ3lvttMvxrgINAzHLCcSqh_fcfR6zh-g_aKkKFx7--J56A_mle1QrV8NnfuO3iVLbjuhovIZS9yPhgkU98SuJMR5TY0nJjC7zHFKISrE-Z3PJeuHoFWrfC-LFaLWUzTnm5IJFXCdg_tgFQ8jg-6-OLrS22CAizBpikQxgwFy4JSk1Xbu-t40lt9TcfSylgNwdlcJ1fiN8Mhoe7JjWTVibftubMOlNSR29uK6E7gDLN6JGd2EwXIfg85eDULcniYEDQk8JRNuuPGqnGWARnpvagg9rWj4uptndb_p8KJuVamz4H7ZppSuVYUn8P-OvrJiw&h=k2IQNdUy9QJeD3Kpq267iGelzTFthpk2M-19zCLLg1c + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CAE7867C22A94527A05EC7F04A262B33 Ref B: BL2AA2030102007 Ref C: 2024-03-03T21:36:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"16e219f2-d9a5-11ee-8566-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:23:45.075904+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577"},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709501546,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000e003-0000-0700-0000-65e4ec6a0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 605FA78CB2D94CD8A719E30B86DF16B4 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:36:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"16e219f2-d9a5-11ee-8566-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:23:45.075904+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577"},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709501546,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000e003-0000-0700-0000-65e4ec6a0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1476' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C6437E265A334A7C91EB89CEB86499DA Ref B: BL2AA2030104025 Ref C: 2024-03-03T21:36:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37bd3a91-dc81-4161-b1ae-d76afbb2216d?api-version=2023-11-15&t=638450985891715899&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IK7SvSaGtuSczp0USCfDFeMv1rp7vYvvFomco1yoAB3O8-HYFo63GtlodYPM1ALlHs8Il5k2U2cnDn6N_qA_j9kkun4WVDBEQ_6Zscdb2hn_4KPAtAqqXMFtMvk9vilg7c35y5qY8Pp5X209d4N2Xs9uT-NGr6rH5FdT3_OeoyX1HJY9y3Q7OKLFLldNtlpB-_eDcMZu_pvk76Xsm1RQGEO1-iMYzyELKFXni1pZ42a2ZcHbrFc6VRakov3o6HyIj9IQz1rNOimzuVldLak_tIUmTN9rpzFOZN94eb-QKlnvBozmS8GjqKHtWOJh47bKyow2GQaWHt_c1LWxhRpMgQ&h=eb63rs9pn6VnEYOrWr5_a_lttKaN71DzJ65pXGp1os4 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:28 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/37bd3a91-dc81-4161-b1ae-d76afbb2216d?api-version=2023-11-15&t=638450985891871763&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=JIIbSaOhqx7ZYh9ViY_FCLBLxXFKMEldRFqIN50KcAgcxp-2f5IEhNw3djjHUPjWK6zoAnUkuosTxTr0sO2RHQCZFzXbB9ILkh7dKpV86hU80aWcuGyjohLH8oHqOdr6I1KGbZ7KIu1kIjoo7yE948dG9v0JozjC_J17LtFOvoBD1X3xEG6HGyZZo2xRbqOeYr8TF-MfsQ94xcDnQPNISya78mgZ2n2CZkIDtNdCIuDyjpmopxSK5eIW3oYlFNrRL2R54eWONkQQY5IGUV8zlQwl6LR7ApQRZ0MgwG5_kRNYJ3qJTO9CcxEdvZkhp5HqC4ZHiAgkEdcNKfxr2KC83A&h=jFSEcOWgHD0rXoVtdbvLYkpZC8pJtBQD7y5mB-nLR4Q + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 9F48ED6C060543CB9069CC7D0A573A38 Ref B: BL2AA2010201027 Ref C: 2024-03-03T21:36:28Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37bd3a91-dc81-4161-b1ae-d76afbb2216d?api-version=2023-11-15&t=638450985891715899&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IK7SvSaGtuSczp0USCfDFeMv1rp7vYvvFomco1yoAB3O8-HYFo63GtlodYPM1ALlHs8Il5k2U2cnDn6N_qA_j9kkun4WVDBEQ_6Zscdb2hn_4KPAtAqqXMFtMvk9vilg7c35y5qY8Pp5X209d4N2Xs9uT-NGr6rH5FdT3_OeoyX1HJY9y3Q7OKLFLldNtlpB-_eDcMZu_pvk76Xsm1RQGEO1-iMYzyELKFXni1pZ42a2ZcHbrFc6VRakov3o6HyIj9IQz1rNOimzuVldLak_tIUmTN9rpzFOZN94eb-QKlnvBozmS8GjqKHtWOJh47bKyow2GQaWHt_c1LWxhRpMgQ&h=eb63rs9pn6VnEYOrWr5_a_lttKaN71DzJ65pXGp1os4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3A73DEA11C7F4B2684603DC05A4C51AB Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:36:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37bd3a91-dc81-4161-b1ae-d76afbb2216d?api-version=2023-11-15&t=638450985891715899&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=IK7SvSaGtuSczp0USCfDFeMv1rp7vYvvFomco1yoAB3O8-HYFo63GtlodYPM1ALlHs8Il5k2U2cnDn6N_qA_j9kkun4WVDBEQ_6Zscdb2hn_4KPAtAqqXMFtMvk9vilg7c35y5qY8Pp5X209d4N2Xs9uT-NGr6rH5FdT3_OeoyX1HJY9y3Q7OKLFLldNtlpB-_eDcMZu_pvk76Xsm1RQGEO1-iMYzyELKFXni1pZ42a2ZcHbrFc6VRakov3o6HyIj9IQz1rNOimzuVldLak_tIUmTN9rpzFOZN94eb-QKlnvBozmS8GjqKHtWOJh47bKyow2GQaWHt_c1LWxhRpMgQ&h=eb63rs9pn6VnEYOrWr5_a_lttKaN71DzJ65pXGp1os4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B759C44A0A964241B96F07C41EE11918 Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:36:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 309288BDA527462C8909FA5F092D67DA Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:36:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:37: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"}]}},{"name":"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:37: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"}]}},{"name":"afe6a47d-1fbd-41e1-992b-db16beeeae3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:37:01Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:37:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:37:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:37:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:37:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:37:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:37:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:37:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428196' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:37:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 7DC6793BE2BB421BBA015F5D8238BDBB Ref B: BL2AA2010202021 Ref C: 2024-03-03T21:37:00Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577", + "restoreTimestampInUtc": "2024-03-03T21:23:45.075904Z"}, "createMode": "Restore"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + Content-Length: + - '337' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:07 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YOL43pT6eOvOs_m0LflVeFo0NdNmSNk4_laqrsOqJNqStHOE8oDP5LZNmKCcv88wcO3LyIwhJSVGYDQb14CrqKrgDPaCG3pyrTZYBGOn7haszIYMA9MSD20GAWUS6mLS14iZwqAUBmW1rjaR2TkVoJYcBAVYiPASe6qB6Q3get7IMFml5jvTzsKjQtasVH8H3wFVUUvwO2tviuNdB_bLOUDaGlR4y6pr6Zi0UogknmOoUwWgALGmBaNPxxWCSrsl35C2li-kJz3B0EVW1v-4uqKyp6mb1ZTXAgM-lFvGtFySzJI2LcbQT5qsvqssDBXLSibrEVEJ9XT_bo2bGY0SyQ&h=t50JXAiYBwfv__rXSoaNsTOVSDEHHxi6cuQv9e2cwOY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 4349ED697FDB4EA2A33C9B4F8AD999EE Ref B: BL2AA2030104051 Ref C: 2024-03-03T21:37:06Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C6638B47D9E645DE917E2CCDDC0BE5CB Ref B: BL2AA2030102049 Ref C: 2024-03-03T21:37:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 697F8707C6074F389CADAA62BCE1BE7E Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:37:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3C87B002A69F4A9780CD8072DECE2B92 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:38:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B1C9CB7E671E454DB10D1CA21276498D Ref B: BL2AA2030102009 Ref C: 2024-03-03T21:38:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6CBEBB16625D4E798051D112FE16051D Ref B: BL2AA2010202023 Ref C: 2024-03-03T21:39:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A1DFB446A9184BB19B5574EF87CC2CB8 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:39:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 04477F5DB5374FCAAC3FED3C33B422E9 Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:40:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 66F51DB030D04A16BA701AA108DCA93F Ref B: BL2AA2030101033 Ref C: 2024-03-03T21:40:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FC553B68450540D2832BAA8E045D04EF Ref B: MNZ221060609049 Ref C: 2024-03-03T21:41:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DDEC3801969745AFAE752BC61C9F268D Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:41:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B0BD5D0212BD4D6CAB1B6927BF841DFF Ref B: MNZ221060609007 Ref C: 2024-03-03T21:42:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7F41F696FFDF44C1918A534CB9C3DF27 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:42:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 61DCCA713EE94CEE8A64E71D385D8F2A Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:43:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DACCC7574847469A87BE546DABDAF74B Ref B: MNZ221060608037 Ref C: 2024-03-03T21:43:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20b31d86-ad8f-4ec1-88e4-5c01498fcc90?api-version=2024-02-15-preview&t=638450986271697024&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BaZ1Zmq5yUL_k3XUAh5GxSQA9NWgH819JsEfLrnOmz6uSGOaKUxvdH9qHAGuQsY6dQ2xjF4l-ImQdZItLHJfQVPSnxJHaOPyoK-JhNsxw776bhPhNfGTCwUqTFhouMp8Z5jvA_Wo-gescPAKYw9Oz1N8nQn981kthYi0mHTq4b3sXKJGpUGkUHPh7ygONxsCJaZH2bzYozMtuvxUMyv8hsVbVqoSffKbeqadTTk6adGxfXl47iDSvEbzJ4ct9EP35FIqlDsAumcHy82K1kCnZFJtmIg1hz3kuXm8KE5ilUpGcbbOPjGY0fHDfagzM7I3_YA0TYvcKLd9pjJ3IhEOww&h=9qDTAC0wkj6VZu07U-WFhsN-oZv1t-oD7dDJG3vmqe8 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B1415ADB1FC747F1B6DD70679B0876AA Ref B: MNZ221060610029 Ref C: 2024-03-03T21:44:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"cBBQAA==","_self":"dbs/cBBQAA==/","_etag":"\"0000e803-0000-0700-0000-65e4ee2f0000\"","_colls":"colls/","_users":"users/","_ts":1709501999}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '493' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7B39D12033A346CA8A3A473D99BC1E87 Ref B: MNZ221060608035 Ref C: 2024-03-03T21:44:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"cBBQAA==","_self":"dbs/cBBQAA==/","_etag":"\"0000e803-0000-0700-0000-65e4ee2f0000\"","_colls":"colls/","_users":"users/","_ts":1709501999}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '493' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 74427D0053C042F9935F1C41E868DC63 Ref B: MNZ221060609051 Ref C: 2024-03-03T21:44:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CD510F1DE5F646E0877E9854E5938EB0 Ref B: MNZ221060608007 Ref C: 2024-03-03T21:44:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","deletionTime":"2024-03-03T21:41:31Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:44:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:44: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"}]}},{"name":"e84733a9-ee18-456c-b12b-1d37e542608b","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:44:12Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:44:12Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:44:14Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:44:14Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59+00:00","oldestRestorableTime":"2024-03-03T21:19:59+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48+00:00","oldestRestorableTime":"2024-03-03T21:21:48+00:00","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-03-03T21:21:29+00:00","oldestRestorableTime":"2024-03-03T21:21:29+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"80da0b02-adc9-4364-8977-358cf987a2c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80da0b02-adc9-4364-8977-358cf987a2c6","properties":{"accountName":"ntbrcliykmkvebk","apiType":"Sql","creationTime":"2024-03-03T21:43:00Z","oldestRestorableTime":"2024-03-03T21:43:00Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd0a6ebd-bbda-4449-8d1f-719305191ee5","creationTime":"2024-03-03T21:43:01Z"}]}},{"name":"cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd2dc3b3-2664-4599-93a1-35fbd4daf3ae","properties":{"accountName":"cli5sw73dqboat7","apiType":"MongoDB","creationTime":"2024-03-03T21:43:04Z","oldestRestorableTime":"2024-03-03T21:43:04Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"934f7d35-d72e-4040-9ff8-3590da6c99d9","creationTime":"2024-03-03T21:43:05Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:21Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38+00:00","deletionTime":"2024-03-03T21:42:22Z","oldestRestorableTime":"2024-02-02T21:44:16Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:44:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:44:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:44:13Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:44:13Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:44:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:44:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:44:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:44:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:44:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:44:13Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '429165' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:44:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 3FCF51990AB14311A5DEBD0552A74136 Ref B: MNZ221060609031 Ref C: 2024-03-03T21:44:12Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577", + "restoreTimestampInUtc": "2024-03-03T21:23:45.075904Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:19 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tPGcJw8cDu0EZJFbbD9i1Te80JGHmz5keT-BCrzjv-T8bNruV1W3mX1snOqHL96yeD_B-qwDYEd5S88vObKosP7AB7Ai6vrVfPW9l2GzKR-H-ApvjXVYTC4lNUHFRC-UnwPurpOgbOni5tyEsx6tkxQwpsD6hvw59dyydSIe4wkFYBFs-gatA2G9E4xyEU9deikA7b3RYTsJU8Vh-5jLl12Nizq01q2XyiqJHRIp4uegb4x4P-B91VHPBY4C5Af4INuJJeWbXeMNVFYCXYx6OrI3oYs9R8oYmJZ77PTCWOemMiyZTz6RDQFkY1_PkXttu5Gy4PNV90oNkpqSsm2y9Q&h=zOV55xnRmCnr4BKAivVd064V6qtomurhO3tq3OUGUpY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 866AE5AF5A0B4D148608ACB7857F2F52 Ref B: MNZ221060608029 Ref C: 2024-03-03T21:44:18Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:19 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4FBEEFC562C349BBA43C18A8A4A19746 Ref B: MNZ221060608029 Ref C: 2024-03-03T21:44:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 545C9317C0D24C25AFED601C2A9BD95B Ref B: MNZ221060608035 Ref C: 2024-03-03T21:44:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 15B5EFF8DCC24ED5A303186A6DC1C4C8 Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:45:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A4E21B500FF345CF8A923A9D580D497A Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:45:50Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:46:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 43B0066817E74FF0B3F02AF4D117E3B4 Ref B: BL2AA2010201051 Ref C: 2024-03-03T21:46:20Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:46:50 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1201316046D74A238C6D932ABF619D92 Ref B: MNZ221060610023 Ref C: 2024-03-03T21:46:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:47:20 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DA229718EDFB44CD85FB5333A6D65B29 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:47:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:47:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EBF5247D9BF144F38AB4019A2D750257 Ref B: BL2AA2030101053 Ref C: 2024-03-03T21:47:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:48:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A273085CF11A4D5BBA3B6127909FB46C Ref B: MNZ221060609053 Ref C: 2024-03-03T21:48:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:48:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 437ED3AF829842EDB9A18537D5FABC67 Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:48:51Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:21 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B70704D329A8493E81F21C6F9BD2572F Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:49:21Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:52 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 35E829D762D04F8F823823AB806658E8 Ref B: BL2AA2030102007 Ref C: 2024-03-03T21:49:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 84C78A5279474D79ACB4A2A46F243AD5 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:50:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:52 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CDD769726DF24D3C8B76724B75510906 Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:50:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/47d1b762-a7e1-43bc-abdb-bd1cfcd7e0fc?api-version=2024-02-15-preview&t=638450990600481238&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mnbi1WljPk3cPODUdp8c330SW2gr4RPA9P_P2A_ddvWOeWEHVtzOU_fNYcxe66wTvUG6PEsRIJGV0Chz-0aQPh_x1qAiE_qyi8mD7F6qXSskNjRx1Vnfw27WHBHhazMszw88-UjVzll-9hmGGjIxglNjdnEBpGKojLqdseA_qGEwNDhY1Kb1pBBoA8Bkskoj866XxNW26y_2dVMBjg09xYl3nCheSTDduUsSuVcaS4VihRBxLzGefEKSBGR6JN78VWE66qWJDhiUeWlQ-f7GdnSQJ1K76P2kS4MQ_GXRoLtUnco9nzG8FZSeNwdzMbk8Wq0gJwuX5KLeQutBraxi8A&h=athfZuuyswU2dgBTh1Mdtwprf4-8idBgHJ1z0_bFhAs + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 364034FEE0444436BABE201546F639E3 Ref B: MNZ221060609021 Ref C: 2024-03-03T21:51:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"2c9879c3-d9a7-11ee-9885-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:23:45.075904+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577"},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709502442,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000f303-0000-0700-0000-65e4efea0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 20BA7237626E44308D64BEBF5ABB65B8 Ref B: MNZ221060610027 Ref C: 2024-03-03T21:51:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"2c9879c3-d9a7-11ee-9885-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:23:45.075904+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577"},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709502442,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000f303-0000-0700-0000-65e4efea0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1476' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EBE568FAF7DC4A42A69902F4D5C8BDBB Ref B: MNZ221060608047 Ref C: 2024-03-03T21:51:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_prov_container_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"2c9879c3-d9a7-11ee-9885-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:23:45.075904+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577"},"geospatialConfig":{"type":"Geography"},"_rid":"cBBQAKiozyQ=","_ts":1709502442,"_self":"dbs/cBBQAA==/colls/cBBQAKiozyQ=/","_etag":"\"0000f303-0000-0700-0000-65e4efea0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1579' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 22E25F4F3FD34BD1AC6D344EF7689C07 Ref B: MNZ221060608011 Ref C: 2024-03-03T21:51:24Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml new file mode 100644 index 00000000000..a21f1ebd1af --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_sql_shared_database_restore.yaml @@ -0,0 +1,5760 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_shared_database_restore000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001","name":"cli_test_cosmosdb_sql_shared_database_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_sql_shared_database_restore","date":"2024-03-03T21:13:24Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '466' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 3578DCE0542846E0A68A7C5B26A50515 Ref B: BL2AA2010202035 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westcentralus", "kind": "GlobalDocumentDB", "properties": + {"locations": [{"locationName": "WestCentralUS", "failoverPriority": 0, "isZoneRedundant": + false}], "databaseAccountOfferType": "Standard", "apiProperties": {}, "createMode": + "Default", "backupPolicy": {"type": "Continuous", "continuousModeProperties": + {"tier": "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '356' + Content-Type: + - application/json + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:13:33.4660217Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"17390119-c71e-443a-96ef-876037f7e359","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:13:33.4660217Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:13:33.4660217Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:33.4660217Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:13:33.4660217Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c075e11e-b3bc-46af-88ca-5344937786ed?api-version=2024-02-15-preview&t=638450972148441820&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rnQOtQx6BtCYNVrJv0X-4zYVtVZ_e_wDDg38rtLTs3-MrVYEpTegRUdoASlkeRVDG3e1CsIJmPrunIDz4Q8TNjaSkON_jc7GxRM_iqCg9Jh4dV9lS1WofdVyChrDKno7VeRwspO2nSXC2gga3p37iUzfu--OM0BK3NvXJu0ezjhjZG_KhhHSKgUMERAb8lYEadILMhgc8ghFtUV7yAsD4uJTzkIqwcZ1IyXivfdW5M12KKlzVss8wq1zwT5Nvl1C09c6_AhrGeQSyrGo7nkjGbHPps0heo528kmLLR_uXNxkMf2nLr9VDdUI_LZsXVBraXRd7O7h00WC34aHYAElwA&h=27Jn2RqJ5gmHo9SI5yP2LbW3n_59UXMwUDNwJdNLDUU + cache-control: + - no-store, no-cache + content-length: + - '2748' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:34 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/c075e11e-b3bc-46af-88ca-5344937786ed?api-version=2024-02-15-preview&t=638450972148441820&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=akGk0pIWg-sSgmy2NJDOHdMG-zo9nrQIxLUh9vyE8vkAXkQI4g-LpB0csx0kE5wdw331pifMh8G8TrNuXP5UGy7_DU0z8NqOvc1MkFXUpBpgn-Xxd7jde-oF30un46_qeYykhFhVtHT0wrLuQd4_Nwmx42_OFzjUjy6tNuIyotTGPiev7-tusUuqLi9bJqf5JU7knPD331cqBAJXMtqGEChth-OVf-2zBc_Y_Rwvsv1JqIJUPEqeqOIqqM2Rery9Dn_GJscFIaTFd1WxHNCS4rt-4a-Qs9TjTSftyzgAbFifLWtzv-zua3JcrpwaL5fHJ5ML-LklQ92e4DDAa75Cag&h=f_8NpcgtF4FkBFBEyIRmhOogrTQUyNhOyEih5nM0jAE + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 2C6080DA6354417582372CAB59342C48 Ref B: BL2AA2030102009 Ref C: 2024-03-03T21:13:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c075e11e-b3bc-46af-88ca-5344937786ed?api-version=2024-02-15-preview&t=638450972148441820&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rnQOtQx6BtCYNVrJv0X-4zYVtVZ_e_wDDg38rtLTs3-MrVYEpTegRUdoASlkeRVDG3e1CsIJmPrunIDz4Q8TNjaSkON_jc7GxRM_iqCg9Jh4dV9lS1WofdVyChrDKno7VeRwspO2nSXC2gga3p37iUzfu--OM0BK3NvXJu0ezjhjZG_KhhHSKgUMERAb8lYEadILMhgc8ghFtUV7yAsD4uJTzkIqwcZ1IyXivfdW5M12KKlzVss8wq1zwT5Nvl1C09c6_AhrGeQSyrGo7nkjGbHPps0heo528kmLLR_uXNxkMf2nLr9VDdUI_LZsXVBraXRd7O7h00WC34aHYAElwA&h=27Jn2RqJ5gmHo9SI5yP2LbW3n_59UXMwUDNwJdNLDUU + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:13:34 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C50156A4C8394103BE82F8E6FAAA06C2 Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:13:34Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c075e11e-b3bc-46af-88ca-5344937786ed?api-version=2024-02-15-preview&t=638450972148441820&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rnQOtQx6BtCYNVrJv0X-4zYVtVZ_e_wDDg38rtLTs3-MrVYEpTegRUdoASlkeRVDG3e1CsIJmPrunIDz4Q8TNjaSkON_jc7GxRM_iqCg9Jh4dV9lS1WofdVyChrDKno7VeRwspO2nSXC2gga3p37iUzfu--OM0BK3NvXJu0ezjhjZG_KhhHSKgUMERAb8lYEadILMhgc8ghFtUV7yAsD4uJTzkIqwcZ1IyXivfdW5M12KKlzVss8wq1zwT5Nvl1C09c6_AhrGeQSyrGo7nkjGbHPps0heo528kmLLR_uXNxkMf2nLr9VDdUI_LZsXVBraXRd7O7h00WC34aHYAElwA&h=27Jn2RqJ5gmHo9SI5yP2LbW3n_59UXMwUDNwJdNLDUU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3B55E642F10942A98D2DD31379F85D73 Ref B: BL2AA2010204047 Ref C: 2024-03-03T21:14:05Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c075e11e-b3bc-46af-88ca-5344937786ed?api-version=2024-02-15-preview&t=638450972148441820&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rnQOtQx6BtCYNVrJv0X-4zYVtVZ_e_wDDg38rtLTs3-MrVYEpTegRUdoASlkeRVDG3e1CsIJmPrunIDz4Q8TNjaSkON_jc7GxRM_iqCg9Jh4dV9lS1WofdVyChrDKno7VeRwspO2nSXC2gga3p37iUzfu--OM0BK3NvXJu0ezjhjZG_KhhHSKgUMERAb8lYEadILMhgc8ghFtUV7yAsD4uJTzkIqwcZ1IyXivfdW5M12KKlzVss8wq1zwT5Nvl1C09c6_AhrGeQSyrGo7nkjGbHPps0heo528kmLLR_uXNxkMf2nLr9VDdUI_LZsXVBraXRd7O7h00WC34aHYAElwA&h=27Jn2RqJ5gmHo9SI5yP2LbW3n_59UXMwUDNwJdNLDUU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:14:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7876116476EC440F9C5D41B8ACC47ECF Ref B: BL2AA2030102009 Ref C: 2024-03-03T21:14:35Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c075e11e-b3bc-46af-88ca-5344937786ed?api-version=2024-02-15-preview&t=638450972148441820&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rnQOtQx6BtCYNVrJv0X-4zYVtVZ_e_wDDg38rtLTs3-MrVYEpTegRUdoASlkeRVDG3e1CsIJmPrunIDz4Q8TNjaSkON_jc7GxRM_iqCg9Jh4dV9lS1WofdVyChrDKno7VeRwspO2nSXC2gga3p37iUzfu--OM0BK3NvXJu0ezjhjZG_KhhHSKgUMERAb8lYEadILMhgc8ghFtUV7yAsD4uJTzkIqwcZ1IyXivfdW5M12KKlzVss8wq1zwT5Nvl1C09c6_AhrGeQSyrGo7nkjGbHPps0heo528kmLLR_uXNxkMf2nLr9VDdUI_LZsXVBraXRd7O7h00WC34aHYAElwA&h=27Jn2RqJ5gmHo9SI5yP2LbW3n_59UXMwUDNwJdNLDUU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FAD5E5D0C25F48C9BC87735CC43BD5D3 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:15:05Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c075e11e-b3bc-46af-88ca-5344937786ed?api-version=2024-02-15-preview&t=638450972148441820&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rnQOtQx6BtCYNVrJv0X-4zYVtVZ_e_wDDg38rtLTs3-MrVYEpTegRUdoASlkeRVDG3e1CsIJmPrunIDz4Q8TNjaSkON_jc7GxRM_iqCg9Jh4dV9lS1WofdVyChrDKno7VeRwspO2nSXC2gga3p37iUzfu--OM0BK3NvXJu0ezjhjZG_KhhHSKgUMERAb8lYEadILMhgc8ghFtUV7yAsD4uJTzkIqwcZ1IyXivfdW5M12KKlzVss8wq1zwT5Nvl1C09c6_AhrGeQSyrGo7nkjGbHPps0heo528kmLLR_uXNxkMf2nLr9VDdUI_LZsXVBraXRd7O7h00WC34aHYAElwA&h=27Jn2RqJ5gmHo9SI5yP2LbW3n_59UXMwUDNwJdNLDUU + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:15:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C3E058D5F7084B9A8F2793DCDB05FF53 Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:15:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c075e11e-b3bc-46af-88ca-5344937786ed?api-version=2024-02-15-preview&t=638450972148441820&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rnQOtQx6BtCYNVrJv0X-4zYVtVZ_e_wDDg38rtLTs3-MrVYEpTegRUdoASlkeRVDG3e1CsIJmPrunIDz4Q8TNjaSkON_jc7GxRM_iqCg9Jh4dV9lS1WofdVyChrDKno7VeRwspO2nSXC2gga3p37iUzfu--OM0BK3NvXJu0ezjhjZG_KhhHSKgUMERAb8lYEadILMhgc8ghFtUV7yAsD4uJTzkIqwcZ1IyXivfdW5M12KKlzVss8wq1zwT5Nvl1C09c6_AhrGeQSyrGo7nkjGbHPps0heo528kmLLR_uXNxkMf2nLr9VDdUI_LZsXVBraXRd7O7h00WC34aHYAElwA&h=27Jn2RqJ5gmHo9SI5yP2LbW3n_59UXMwUDNwJdNLDUU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2B3F21B9D2984C52B5A31CA342E0A6F5 Ref B: BL2AA2030104003 Ref C: 2024-03-03T21:16:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:31.0813236Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"17390119-c71e-443a-96ef-876037f7e359","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:31.0813236Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:31.0813236Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:31.0813236Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:31.0813236Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3127' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AFC00A3160744D388565DA6D53344F7F Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:16:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West + Central US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:15:31.0813236Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","sqlEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"17390119-c71e-443a-96ef-876037f7e359","createMode":"Default","databaseAccountOfferType":"Standard","enableMaterializedViews":false,"defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westcentralus","locationName":"West + Central US","documentEndpoint":"https://cli000004-westcentralus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westcentralus","locationName":"West + Central US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:15:31.0813236Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:15:31.0813236Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:31.0813236Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:15:31.0813236Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3127' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C9D0E5CD90114EAEA997C2C2216535A7 Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:16:06Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {"throughput": 1000}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + Content-Length: + - '107' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3907702d-4aea-4bbd-a63a-0f498b464277?api-version=2023-11-15&t=638450973680127810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=H5lyQn0PbWL_EYS2_aiVAIvxf6xkyDYUyHLTlq8WDjC_5spPaJKNVnOLZlFiEkHUia9NACH-A6XQ38V3wkZ0GNz63B5gQz3TOhmzsBt9HT7G8QVsubFK-qXgkpZTD_oOgEtxlWCHjld9zQVNTo3-tuTENbJiq-tBEUWFaVvFd6UrLEb4GhcMSTkZ3_jLb_Vosmk0JTP9jFn8rsKeAZbzpcvnhV5WRW5lFc3ALdeAXU88rp7Mvo7S4twlBQZAdLyxQjM_YKUbECDlOOSdPCsToOJa3b3E1ZLG2jD6t_pJ8Z8DvqJAPNiu5VEwXL4Ts6Jb9e0TfqBiU-01qzyPbSI3ZQ&h=w-ba0TuoALngfweyI65bGdow7ZRrvg2pSVZOfKVegeM + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:07 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/3907702d-4aea-4bbd-a63a-0f498b464277?api-version=2023-11-15&t=638450973680127810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Wz3Ydujgjt7gLTprftBDVSol_7ItYbxV4wuSwNgq_vPgc2AQ7PCbxivskMtVsSuWMX7scTDxAXmTzcSV-L5PbiWsOcyaqn3MT5x0VC0yP2VUWhceCrJ9rom8Y4wQ0ZfZaNYpkGyM-EL_ODVBpXExATgbs2dguSuYCtvFC_pHZanCy59IFvOPcRseaRk6ie_jo7io5QGdaKxEmkEAKmf2gMmtyJ6NVWvK7O4uaDK2S34-gq-DJdVtBiy-8pg4N2dQNdPNj_OUwI73k_nUSCiMhowgfcqNiI5RGM8LADZoXflXTAT6kqbmqC4KhhUDJOdPLxV1KI_Ir7wjrT8Gx1i7YQ&h=Qu-jt2Rx-sVEsfvg8ygyYphQCkmy3uFLsML3h4s3iYI + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 899E7BEB9E36460E92A7439C72850A58 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:16:07Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3907702d-4aea-4bbd-a63a-0f498b464277?api-version=2023-11-15&t=638450973680127810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=H5lyQn0PbWL_EYS2_aiVAIvxf6xkyDYUyHLTlq8WDjC_5spPaJKNVnOLZlFiEkHUia9NACH-A6XQ38V3wkZ0GNz63B5gQz3TOhmzsBt9HT7G8QVsubFK-qXgkpZTD_oOgEtxlWCHjld9zQVNTo3-tuTENbJiq-tBEUWFaVvFd6UrLEb4GhcMSTkZ3_jLb_Vosmk0JTP9jFn8rsKeAZbzpcvnhV5WRW5lFc3ALdeAXU88rp7Mvo7S4twlBQZAdLyxQjM_YKUbECDlOOSdPCsToOJa3b3E1ZLG2jD6t_pJ8Z8DvqJAPNiu5VEwXL4Ts6Jb9e0TfqBiU-01qzyPbSI3ZQ&h=w-ba0TuoALngfweyI65bGdow7ZRrvg2pSVZOfKVegeM + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FC7758EF9A584F47B656BD907948E47C Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:16:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3907702d-4aea-4bbd-a63a-0f498b464277?api-version=2023-11-15&t=638450973680127810&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=H5lyQn0PbWL_EYS2_aiVAIvxf6xkyDYUyHLTlq8WDjC_5spPaJKNVnOLZlFiEkHUia9NACH-A6XQ38V3wkZ0GNz63B5gQz3TOhmzsBt9HT7G8QVsubFK-qXgkpZTD_oOgEtxlWCHjld9zQVNTo3-tuTENbJiq-tBEUWFaVvFd6UrLEb4GhcMSTkZ3_jLb_Vosmk0JTP9jFn8rsKeAZbzpcvnhV5WRW5lFc3ALdeAXU88rp7Mvo7S4twlBQZAdLyxQjM_YKUbECDlOOSdPCsToOJa3b3E1ZLG2jD6t_pJ8Z8DvqJAPNiu5VEwXL4Ts6Jb9e0TfqBiU-01qzyPbSI3ZQ&h=w-ba0TuoALngfweyI65bGdow7ZRrvg2pSVZOfKVegeM + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4DD826DB68DA4D408783779003F16187 Ref B: BL2AA2010202047 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --throughput + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KUgSAA==","_self":"dbs/KUgSAA==/","_etag":"\"0000e800-0000-0600-0000-65e4e8a40000\"","_colls":"colls/","_users":"users/","_ts":1709500580}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '478' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0F971578D64D433A87303AA6E697C553 Ref B: BL2AA2010201003 Ref C: 2024-03-03T21:16:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: + 53509ac7-d9a3-11ee-99c7-000d3a1e0e23, Request URI: /apps/6519766a-cbfa-424a-b381-39b604f15bf9/services/ae22a79c-9108-459d-abac-8b5b9e83e67d/partitions/f6e02c65-5bc6-44fa-9462-23aebed82c71/replicas/133538067059638034s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:16:40.1468918Z, RequestEndTime: + 2024-03-03T21:16:40.1495968Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:15:48.1669282Z\\\",\\\"cpu\\\":0.126,\\\"memory\\\":493019868.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0969,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":34},{\\\"dateUtc\\\":\\\"2024-03-03T21:15:58.1770521Z\\\",\\\"cpu\\\":0.180,\\\"memory\\\":493016396.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1006,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":34},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:08.1872198Z\\\",\\\"cpu\\\":0.150,\\\"memory\\\":493042164.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1158,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":34},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:18.1975671Z\\\",\\\"cpu\\\":0.168,\\\"memory\\\":493024564.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0574,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":34},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:28.2076323Z\\\",\\\"cpu\\\":0.189,\\\"memory\\\":493017916.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1223,\\\"availableThreads\\\":32765,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":34},{\\\"dateUtc\\\":\\\"2024-03-03T21:16:38.2178557Z\\\",\\\"cpu\\\":0.225,\\\"memory\\\":493042164.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.1062,\\\"availableThreads\\\":32764,\\\"minThreads\\\":52,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":34}]}\\r\\nRequestStart: + 2024-03-03T21:16:40.1471441Z; ResponseTime: 2024-03-03T21:16:40.1495893Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.5:11000/apps/6519766a-cbfa-424a-b381-39b604f15bf9/services/ae22a79c-9108-459d-abac-8b5b9e83e67d/partitions/f6e02c65-5bc6-44fa-9462-23aebed82c71/replicas/133538067059638034s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.756, ActivityId: + 53509ac7-d9a3-11ee-99c7-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11000 | status: Unknown | lkt: 3/3/2024 9:16:40 PM),(port: 11300 | + status: Unknown | lkt: 3/3/2024 9:16:40 PM),(port: 11300 | status: Unknown + | lkt: 3/3/2024 9:16:40 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:16:40 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:40.1470588Z\\\", + \\\"durationInMs\\\": 0.0103},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:40.1470691Z\\\", \\\"durationInMs\\\": + 0.0026},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:40.1470717Z\\\", + \\\"durationInMs\\\": 0.0631},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:40.1471348Z\\\", \\\"durationInMs\\\": 2.221},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:40.1493558Z\\\", + \\\"durationInMs\\\": 0.0561},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:40.1494119Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:16:40.1067710Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:16:40.1067836Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:16:40.1429833Z\\\"},\\\"requestSizeInBytes\\\":492,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:16:40.1472230Z; + ResponseTime: 2024-03-03T21:16:40.1495968Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.13:11300/apps/6519766a-cbfa-424a-b381-39b604f15bf9/services/ae22a79c-9108-459d-abac-8b5b9e83e67d/partitions/f6e02c65-5bc6-44fa-9462-23aebed82c71/replicas/133538067059638035s, + LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.059, ActivityId: + 53509ac7-d9a3-11ee-99c7-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11000 | status: Unknown | lkt: 3/3/2024 9:16:40 PM),(port: 11300 | + status: Unknown | lkt: 3/3/2024 9:16:40 PM),(port: 11300 | status: Unknown + | lkt: 3/3/2024 9:16:40 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:16:40 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:40.1471456Z\\\", + \\\"durationInMs\\\": 0.0044},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:40.1471500Z\\\", \\\"durationInMs\\\": + 0.0022},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:40.1471522Z\\\", + \\\"durationInMs\\\": 0.064},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:40.1472162Z\\\", \\\"durationInMs\\\": 1.4712},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:16:40.1486874Z\\\", + \\\"durationInMs\\\": 0.16},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:16:40.1488474Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:16:40.0527955Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:16:40.0528483Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:16:40.0904726Z\\\"},\\\"requestSizeInBytes\\\":492,\\\"responseMetadataSizeInBytes\\\":135,\\\"responseBodySizeInBytes\\\":87};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7061' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8A9A8732B4D7492487A8E3BC1BCC1E20 Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:16:39Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000003", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/headquarters/employees/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], + "kind": "Hash"}, "defaultTtl": 1800, "uniqueKeyPolicy": {"uniqueKeys": [{"paths": + ["/path/to/key1"]}, {"paths": ["/path/to/key2"]}]}, "conflictResolutionPolicy": + {"mode": "lastWriterWins", "conflictResolutionPath": "/path"}}, "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + Content-Length: + - '499' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/ca590538-d0c1-49da-aefd-83522ad935a9?api-version=2024-02-15-preview&t=638450974009544194&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FTlip6ZvHs4oCcSr5p5uVeEcqliYXXIJ4Fs31NgRSItXRxdb5PnRfMMymRAm8pF15VMg7-RMxld_oAz7xqtW0gOsoIPTqiB8htX4fx5YFuMBH19WWwoC-rSa_rO6X7fhsmS5re67k5SvnPqaRbYPl1KLKb3R1lkC0HYF6FggOb_zq70V9YCYtZQUDkR_RD2FhgIo6KNLxhsbaHogE95m2ot5bU07XfZei34Dfd6xCf-2ISW5ic7-iJNP-uaCEPorg-7t-R_fbxU8SaxKT3P4iRQsBnqkCgzDRd4vq9Si8cRRHSak_cft4T3rOs6E4qiYEmL3OAwOsWKj6M3WNERcCw&h=sCTfuk3qQdbr4D4Mg_tx3HvEMMqXBv6wEXBoSrJhwME + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:40 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/ca590538-d0c1-49da-aefd-83522ad935a9?api-version=2024-02-15-preview&t=638450974009544194&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NOdSnmFEREfyTTi45H12PdZNlI0CrfcGD4bvs0UWQpusbvUBZWT9QVzwKYeWCUxcrOVvrZmj_wgILwDqhv5sqk-zm1ati_JVmXj7r0S8-zmdmmyYsH48s4YlgbXTLbFmixTZSoYSZsZ5MlUbnnxuLMMNE96TgZX2ssvyvNdTShBi6C7YoE33jvgr3UpLfuFifAOutNJip_b9JIGD1szatBFMfNyh7hDjIQJOVmyrvKlpJnRQRxGoUhN66gaUGuz7oQXKoJ43Zk6kdisMjBwn25P8l2v2MZCFcXSDRDFH6LoyuJY7Knzf_sf26em5kw8dNltbT3Ei8TKdRrOpQ8beWw&h=tAjIrgEbQbdIsE2fiQHMuCbr-DrQoKhV4TfAfVZcH6g + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 5539424C07844E27BEA47AF78EF60EEE Ref B: BL2AA2030104025 Ref C: 2024-03-03T21:16:40Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/ca590538-d0c1-49da-aefd-83522ad935a9?api-version=2024-02-15-preview&t=638450974009544194&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FTlip6ZvHs4oCcSr5p5uVeEcqliYXXIJ4Fs31NgRSItXRxdb5PnRfMMymRAm8pF15VMg7-RMxld_oAz7xqtW0gOsoIPTqiB8htX4fx5YFuMBH19WWwoC-rSa_rO6X7fhsmS5re67k5SvnPqaRbYPl1KLKb3R1lkC0HYF6FggOb_zq70V9YCYtZQUDkR_RD2FhgIo6KNLxhsbaHogE95m2ot5bU07XfZei34Dfd6xCf-2ISW5ic7-iJNP-uaCEPorg-7t-R_fbxU8SaxKT3P4iRQsBnqkCgzDRd4vq9Si8cRRHSak_cft4T3rOs6E4qiYEmL3OAwOsWKj6M3WNERcCw&h=sCTfuk3qQdbr4D4Mg_tx3HvEMMqXBv6wEXBoSrJhwME + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:16:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 65ADFE94740D4AB0B9DBCD85F9E038CB Ref B: BL2AA2030104051 Ref C: 2024-03-03T21:16:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/ca590538-d0c1-49da-aefd-83522ad935a9?api-version=2024-02-15-preview&t=638450974009544194&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FTlip6ZvHs4oCcSr5p5uVeEcqliYXXIJ4Fs31NgRSItXRxdb5PnRfMMymRAm8pF15VMg7-RMxld_oAz7xqtW0gOsoIPTqiB8htX4fx5YFuMBH19WWwoC-rSa_rO6X7fhsmS5re67k5SvnPqaRbYPl1KLKb3R1lkC0HYF6FggOb_zq70V9YCYtZQUDkR_RD2FhgIo6KNLxhsbaHogE95m2ot5bU07XfZei34Dfd6xCf-2ISW5ic7-iJNP-uaCEPorg-7t-R_fbxU8SaxKT3P4iRQsBnqkCgzDRd4vq9Si8cRRHSak_cft4T3rOs6E4qiYEmL3OAwOsWKj6M3WNERcCw&h=sCTfuk3qQdbr4D4Mg_tx3HvEMMqXBv6wEXBoSrJhwME + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 49942629B4D1458A94D9CA2B0058F7E3 Ref B: BL2AA2010201053 Ref C: 2024-03-03T21:17:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --unique-key-policy --conflict-resolution-policy --idx --ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"KUgSAJqcgGE=","_ts":1709500608,"_self":"dbs/KUgSAA==/colls/KUgSAJqcgGE=/","_etag":"\"0000ed00-0000-0600-0000-65e4e8bf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1265' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 06E0617D675F495DA93E031A7B89063C Ref B: BL2AA2010205027 Ref C: 2024-03-03T21:17:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"KUgSAJqcgGE=","_ts":1709500608,"_self":"dbs/KUgSAA==/colls/KUgSAJqcgGE=/","_etag":"\"0000ed00-0000-0600-0000-65e4e8bf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1265' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5B8719546E104025AD7A29F51AB6C08E Ref B: BL2AA2010204031 Ref C: 2024-03-03T21:17:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"KUgSAJqcgGE=","_ts":1709500608,"_self":"dbs/KUgSAA==/colls/KUgSAJqcgGE=/","_etag":"\"0000ed00-0000-0600-0000-65e4e8bf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1164' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:17:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DEF3B3D64BAE4AF7B7123A8C065C667A Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:17:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1800,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"geospatialConfig":{"type":"Geography"},"_rid":"KUgSAJqcgGE=","_ts":1709500608,"_self":"dbs/KUgSAA==/colls/KUgSAJqcgGE=/","_etag":"\"0000ed00-0000-0600-0000-65e4e8bf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1265' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1D324E75B92749DA9A0C1101B6ED1B68 Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:22:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3d71807c-1f8e-4775-8f84-c09e59fd1668?api-version=2023-11-15&t=638450977340366102&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZEtytyEsKMIgPDfGkRpjNrZs106wjTemhPUT-5lzK8pWV6WAaFeA9_NiMFi4k96u0Vs2HMSalp3d22PyWpYPu2wr8n5-R5JpEZ_b8rP4WlOcyI80hGpsbefQpIWCk83LiA3aJRSV4upEsU2KqcYhAALZKb5Lxek3uEd8rtLvenZfC5Z0BIfGyAAvkJ8y0UJL6rHBGOOg8Kpg0LePTY8TR-BQHaQjoU0BmxVl3V_uhe_IzJlMwWR_Mnlmp-3Fh3ODvPCtIKmWGFNgHnajdmC8BElULY7JN21UbDnAYaOTKBGyuGpo_5Rue2bmlTiVzCgval4X5aZFi6wnAU1G0qjcgw&h=CbyZaBoyHSnOVPiyKcwbJo_bdx0HNxWOk4X3S20mIts + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:13 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/3d71807c-1f8e-4775-8f84-c09e59fd1668?api-version=2023-11-15&t=638450977340523098&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Omt3U86AnTIRt2mLgDzMI-6bfAscBy97e5G0M55rlTAkfbLHJAzd5sAIilvnmzS8bJhcHdrw5ysJ08kU9tK6eubDyjbLGoczGO8eJePXjDIcgk8xN9sR7VWvSfwbN1U7BIaX-Wrwwzmejaf3MWQ9ZXaMVCWAfin13D22hJH3yDRGpuM0ydASJPgt2PRF1Jv6QOqoJPdPNHRR8Tv-D7tDixBwCmf2tG4ddpAkKXPYZ-X06bla9zyRUhtEOVapfgE8Cahc8zjYsSrBZCeinTzcugdHExXouOx63YiDtXmykftENnb9STSqDPZIq4sxPKCOXKg88N0jMZwxQZVCj0jaEA&h=qAz6epWewP3oE51YHcPWAaIlbglNMhns-t3mVJOGuoM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: E450834B827244E989FDB80E75DD7F05 Ref B: BL2AA2010201051 Ref C: 2024-03-03T21:22:13Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3d71807c-1f8e-4775-8f84-c09e59fd1668?api-version=2023-11-15&t=638450977340366102&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZEtytyEsKMIgPDfGkRpjNrZs106wjTemhPUT-5lzK8pWV6WAaFeA9_NiMFi4k96u0Vs2HMSalp3d22PyWpYPu2wr8n5-R5JpEZ_b8rP4WlOcyI80hGpsbefQpIWCk83LiA3aJRSV4upEsU2KqcYhAALZKb5Lxek3uEd8rtLvenZfC5Z0BIfGyAAvkJ8y0UJL6rHBGOOg8Kpg0LePTY8TR-BQHaQjoU0BmxVl3V_uhe_IzJlMwWR_Mnlmp-3Fh3ODvPCtIKmWGFNgHnajdmC8BElULY7JN21UbDnAYaOTKBGyuGpo_5Rue2bmlTiVzCgval4X5aZFi6wnAU1G0qjcgw&h=CbyZaBoyHSnOVPiyKcwbJo_bdx0HNxWOk4X3S20mIts + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 39DD9D6D8B544DE8910E4BFCE09CFDF1 Ref B: BL2AA2030101053 Ref C: 2024-03-03T21:22:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3d71807c-1f8e-4775-8f84-c09e59fd1668?api-version=2023-11-15&t=638450977340366102&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ZEtytyEsKMIgPDfGkRpjNrZs106wjTemhPUT-5lzK8pWV6WAaFeA9_NiMFi4k96u0Vs2HMSalp3d22PyWpYPu2wr8n5-R5JpEZ_b8rP4WlOcyI80hGpsbefQpIWCk83LiA3aJRSV4upEsU2KqcYhAALZKb5Lxek3uEd8rtLvenZfC5Z0BIfGyAAvkJ8y0UJL6rHBGOOg8Kpg0LePTY8TR-BQHaQjoU0BmxVl3V_uhe_IzJlMwWR_Mnlmp-3Fh3ODvPCtIKmWGFNgHnajdmC8BElULY7JN21UbDnAYaOTKBGyuGpo_5Rue2bmlTiVzCgval4X5aZFi6wnAU1G0qjcgw&h=CbyZaBoyHSnOVPiyKcwbJo_bdx0HNxWOk4X3S20mIts + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B6A2E2A44E6E4338B5F67030ED9B84AC Ref B: BL2AA2030102007 Ref C: 2024-03-03T21:22:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 051E758BC4984FDC90996625BE1B340F Ref B: BL2AA2010201045 Ref C: 2024-03-03T21:22:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:22:46Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","oldestRestorableTime":"2024-03-03T21:20:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:22:48Z","restorableLocations":[]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:22:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:22:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:22:45Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:22:46Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:22:45Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:22:45Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '427058' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 811A0DEFA2774E2C8DAE9F0C5A9E6267 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:22:45Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000003", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359", + "restoreTimestampInUtc": "2024-03-03T21:17:12.744977Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + Content-Length: + - '359' + Content-Type: + - application/json + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/539862d1-8159-4a53-b2fd-5c51370ceb40?api-version=2024-02-15-preview&t=638450977722525158&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iB_Z2mskMeXGZqX1_9jhAdefWVHuFhb_Tp0uH22Ub3cN1rMtSUT81DYL2omWhiee7nSOd2AsCxUVFbAuLZVcfVEWHY-DBi00xGGyjQ6Nf9l6RRhdI_HM9ca--jftyIO617VCOocG2raW95ZXd9k-sct5J7EYIw8HVkMRk4pjAAc2JYOTQhTTxRvRln9FvIhF2pQZRXCKs4_b3scYv9HjxJmXjTWKv7ATbFzXcFa0ycW5RCzKjqvx8uGg8Ddh1eEoEWtR9ISVxj9Q-EZvyocGhTnecr8Eyi-XnuKAOEUC7SNYfaQaljmcVzqgUODA1ZHWbbaRSPNVT2OoJGuHzQADbA&h=fESUYSuECi6Xr_9cuejhlOv2CQvbAbY1pDxuNTmwrCY + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:51 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/539862d1-8159-4a53-b2fd-5c51370ceb40?api-version=2024-02-15-preview&t=638450977722525158&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HQwUaCB-AOQ8r7zMcZdfDf3KrPUzl2K4bVGoZ6hx28nYKqr8gbLVP0Fy3gY1Ybt0WSdH_MbT3qWxTWxbsmlbIvfxE-_5v82lLDqvzzxMWGTvd5cZd5ff_7cJ5dqJjLJddCxsIpWn0PUv5FMhB1wXHnHhx6Eq7AHl3v-8lW-Aaou6-52fsT3DiyV064f4f7hXBEtJwOn5FRfujfllxblGxvcCJbkIwRlYysvXow2WOzK6Fa_ncqC1nkY8hSqsHQ66b8odauvZ9iSipnXISPost2YeeBlS7_GS8IHbRF463YuPVmcMsoTOgGrUh4aG3q4NtJ2gTY7ict5YOvZOx8E_IQ&h=O6aQizCSBDhadyMTODH72teOrsjL3m4Dzn-fUgeoJqc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: B9825170A2FC477195E76FADA9DCAD2D Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:22:51Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/539862d1-8159-4a53-b2fd-5c51370ceb40?api-version=2024-02-15-preview&t=638450977722525158&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iB_Z2mskMeXGZqX1_9jhAdefWVHuFhb_Tp0uH22Ub3cN1rMtSUT81DYL2omWhiee7nSOd2AsCxUVFbAuLZVcfVEWHY-DBi00xGGyjQ6Nf9l6RRhdI_HM9ca--jftyIO617VCOocG2raW95ZXd9k-sct5J7EYIw8HVkMRk4pjAAc2JYOTQhTTxRvRln9FvIhF2pQZRXCKs4_b3scYv9HjxJmXjTWKv7ATbFzXcFa0ycW5RCzKjqvx8uGg8Ddh1eEoEWtR9ISVxj9Q-EZvyocGhTnecr8Eyi-XnuKAOEUC7SNYfaQaljmcVzqgUODA1ZHWbbaRSPNVT2OoJGuHzQADbA&h=fESUYSuECi6Xr_9cuejhlOv2CQvbAbY1pDxuNTmwrCY + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:51 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BB55334D907E42399A8EB56723E71A51 Ref B: BL2AA2030101051 Ref C: 2024-03-03T21:22:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/539862d1-8159-4a53-b2fd-5c51370ceb40?api-version=2024-02-15-preview&t=638450977722525158&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=iB_Z2mskMeXGZqX1_9jhAdefWVHuFhb_Tp0uH22Ub3cN1rMtSUT81DYL2omWhiee7nSOd2AsCxUVFbAuLZVcfVEWHY-DBi00xGGyjQ6Nf9l6RRhdI_HM9ca--jftyIO617VCOocG2raW95ZXd9k-sct5J7EYIw8HVkMRk4pjAAc2JYOTQhTTxRvRln9FvIhF2pQZRXCKs4_b3scYv9HjxJmXjTWKv7ATbFzXcFa0ycW5RCzKjqvx8uGg8Ddh1eEoEWtR9ISVxj9Q-EZvyocGhTnecr8Eyi-XnuKAOEUC7SNYfaQaljmcVzqgUODA1ZHWbbaRSPNVT2OoJGuHzQADbA&h=fESUYSuECi6Xr_9cuejhlOv2CQvbAbY1pDxuNTmwrCY + response: + body: + string: '{"status":"Failed","error":{"code":"BadRequest","message":"InAccount + restore of individual shared database collections is not supported. Please + restore shared database to restore its collections that shared the throughput.\r\nActivityId: + 2d197d6d-d9a4-11ee-bdf4-000d3a1e0e23, Microsoft.Azure.Documents.Common/2.14.0, + Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, + Microsoft.Azure.Documents.Common/2.14.0, Microsoft.Azure.Documents.Common/2.14.0, + Microsoft.Azure.Documents.Common/2.14.0"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '523' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:22 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EDD030A8334A498EB0D98D23419EEEC5 Ref B: BL2AA2010203023 Ref C: 2024-03-03T21:23:22Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9B6BD97284AF4EB8BFD7069E98DBA55B Ref B: BL2AA2030102019 Ref C: 2024-03-03T21:23:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c4bd29a5-4288-4c36-8c5e-2cc680f8271a?api-version=2023-11-15&t=638450978046270551&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=F69IsDNtYWcrhxU4g5MGPlYojZ7ewbe0FHYhZPZsCI0x4BYi_JrscMn2ZLfUCWiRphwv-FB96W0mYBLyfbMvI51yPUZ4ewUVKwlhjhS_EooQOB9tBQrYQgpZ2J6zNGUSw4wGXpe-2rp5j8N3E0IiLvTR2Agzk6Nu-E3nUXByOEhNUFCvKxhGcuEhvMfwU5g8jVgZzbiOkAzL7Y047kjnzXniXKOerMkzEXc-mR8_8OM-EhBVbGEll2svcch3B7sfC_ToecYQ_znnF3Zo7o5AO8BghVCGvHH2Qgno-oozAZrGDevF7OafTY82LvCYJN2ty45sngFDAJgLosipwC_wuw&h=-Q_Y-3mv_l1jx6oB84JByjAejR78fReGbgo40onTyP4 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:24 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/c4bd29a5-4288-4c36-8c5e-2cc680f8271a?api-version=2023-11-15&t=638450978046270551&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=DSenVfl1KyTtMqdRaj4lq456SxC6Qq3C7YNQ5ibwUPPrOSlnSS32qImY0VZdAxNR-jZ9ZnszkP15CKcC6OCXHfVoP4gaXvvL1JuVJJ8UJ85whffaY74LwvtEH92Ot9ElD0YeyfhOqQTdcCZYhuZAvu8GmslXxDyh66Yo5K3PsppYjvcJaizWuWQgrsngx9EYBbCCBJzamFq0I_PYOTXqgxNU1oVTdzYegOIiIPWEjTcy7OrOJGtkko77Gjr47B22nKgVjNHG7A9_9uLM3Y8QTeLSWBxayQsIwPYbWMwED0T3WKjHteeEzPrMYKdafJO5k-r37VqlhMxhiZePHNYvPg&h=hY-U5MVGgQyyYEhggNRTWBmWpTBMonAz_bV6D68y2Q4 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 26A0DD0ECAFF46D3BC9E634DB6C30247 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:23:23Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c4bd29a5-4288-4c36-8c5e-2cc680f8271a?api-version=2023-11-15&t=638450978046270551&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=F69IsDNtYWcrhxU4g5MGPlYojZ7ewbe0FHYhZPZsCI0x4BYi_JrscMn2ZLfUCWiRphwv-FB96W0mYBLyfbMvI51yPUZ4ewUVKwlhjhS_EooQOB9tBQrYQgpZ2J6zNGUSw4wGXpe-2rp5j8N3E0IiLvTR2Agzk6Nu-E3nUXByOEhNUFCvKxhGcuEhvMfwU5g8jVgZzbiOkAzL7Y047kjnzXniXKOerMkzEXc-mR8_8OM-EhBVbGEll2svcch3B7sfC_ToecYQ_znnF3Zo7o5AO8BghVCGvHH2Qgno-oozAZrGDevF7OafTY82LvCYJN2ty45sngFDAJgLosipwC_wuw&h=-Q_Y-3mv_l1jx6oB84JByjAejR78fReGbgo40onTyP4 + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6DCF02E22FE846BCBBACFBD99908A9E0 Ref B: BL2AA2010204033 Ref C: 2024-03-03T21:23:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/c4bd29a5-4288-4c36-8c5e-2cc680f8271a?api-version=2023-11-15&t=638450978046270551&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=F69IsDNtYWcrhxU4g5MGPlYojZ7ewbe0FHYhZPZsCI0x4BYi_JrscMn2ZLfUCWiRphwv-FB96W0mYBLyfbMvI51yPUZ4ewUVKwlhjhS_EooQOB9tBQrYQgpZ2J6zNGUSw4wGXpe-2rp5j8N3E0IiLvTR2Agzk6Nu-E3nUXByOEhNUFCvKxhGcuEhvMfwU5g8jVgZzbiOkAzL7Y047kjnzXniXKOerMkzEXc-mR8_8OM-EhBVbGEll2svcch3B7sfC_ToecYQ_znnF3Zo7o5AO8BghVCGvHH2Qgno-oozAZrGDevF7OafTY82LvCYJN2ty45sngFDAJgLosipwC_wuw&h=-Q_Y-3mv_l1jx6oB84JByjAejR78fReGbgo40onTyP4 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1FEB7839C3AA4D07904D4CD32CC6C007 Ref B: BL2AA2010203033 Ref C: 2024-03-03T21:23:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C30677319C394928BA724879A9542524 Ref B: BL2AA2010202035 Ref C: 2024-03-03T21:23:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cli000004","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:32:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:32:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:32:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:32:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:32:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:32:15Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:32:17Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cliyn2ctkzljgyn","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:32:20Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:32:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:32:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:32:16Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:32:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:32:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:32:16Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428196' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:32:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: 6D433B979D334A07A76758559D219F15 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:32:15Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359", + "restoreTimestampInUtc": "2024-03-03T21:17:12.744977Z", "restoreWithTtlDisabled": + true}, "createMode": "Restore"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + Content-Length: + - '376' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:22 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=flYLXlsbMiPPVG2vPTPmBJQ-n_ZPM1oc80bQaWLzNsn4erjp1FYdhVIID16Pe0g9w9pXcxWLbCsZTgi_QGlAFtC2VDykNdOWQg5MMb8NvPY7j00POvDccVsHXRIWvh1-R5fbD8dTlibTtcKUorCxJN6_c15N8yjry-EBK1fGeWp_HPkw5AQRdLA8h4n1Emh3XGP-QmC96UZTJ7No9MDCnzaXHuHRizVAZ5KoE-WFXr8IvROQ_RBY4garZ4SgjmQhwtG1wNLeVkDslaGmUedYtbfePZOfCkV5wwnmFZXQAZGn4UnyDBgmP1rk-ixnY28pMykbo9aBQpajW_KnKKvTTA&h=FKvd2s9YB0eQSnw9Thu_L2pCwW8hYbR1XpEul4ylydM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 13B99DE9CDAA4E8C94D7C0C900177C2D Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:32:22Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 74373107292D4943A8FB5DD3C98D67D4 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:32:23Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 90B4ED8AF0064029A0D8B2CDE806B1F5 Ref B: BL2AA2010205037 Ref C: 2024-03-03T21:32:53Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:23 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: ABF6CE62E73B466EAB28659DFC8920B4 Ref B: BL2AA2010204003 Ref C: 2024-03-03T21:33:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E3C185B6C15740EBA46FA498CBEBB8FD Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:33:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CE69EC3D04DD4BF99A691D054ECAF182 Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:34:24Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:54 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C2394956F0E94B0BA4585EA2064DBBEC Ref B: BL2AA2030101033 Ref C: 2024-03-03T21:34:54Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:24 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 52AAA503A4F74785A9DC9C7C5613874B Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:35:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:55 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 74FB31D4BA4E495CA5B2F06BA2946568 Ref B: BL2AA2030104045 Ref C: 2024-03-03T21:35:55Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:25 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 952BB538E6B84D71856EADAC285F8589 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:36:25Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5C394147F20B4507B340E6C57F395F13 Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:36:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F34AA0FCF929416E9D939ED8E927B06C Ref B: BL2AA2030102019 Ref C: 2024-03-03T21:37:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 371DCEE234D646F88697DAF5DE3260FB Ref B: BL2AA2030103023 Ref C: 2024-03-03T21:37:56Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:26 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CBEEAACFDA824057BE58C8124D5B874E Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:38:26Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:56 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BD02121E58FC446A821BBC8FEE5AF576 Ref B: BL2AA2030104053 Ref C: 2024-03-03T21:38:57Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1eebcb25-a086-4e37-901a-4cd307cfe1cb?api-version=2024-02-15-preview&t=638450983436351669&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=CFEMTKjo0GlM43Aed-tIHuddbOKy-AE8Ys6iQ6x709je-_QRqCqzlpSCClUT-RNPAmmKL9-bICNGmSxB4j_z8LFFbjzhkktotNE1MqlhOrO-2Zz7RRaVVYs3re7PzQN_k2I2KSZ42LYRjddp4ChQJQnic0PxKbOwmcQn-k6FFGYXg5ayOmeHfxz2xlc8IDa75Oi5Fi4kTrsVUiEuWv2b7Q_KQHE9swQUyD-H9ECEZt8zf98Ij-sTFaGUG8T9Pl7MDMcB0F_Hts31bQMxrZ9zfq56AuXpggVTv1tL-MMN3GtfgeZHVIe48OKvngGaHCtoPd5mUkCZTp8zHxoyV5qTmQ&h=SFyf_cItWACBXvMECmdFpZh3nipg2VelIgO-0bwtzfk + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6C8D5AF9982840218AD749CF4AADF0F7 Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:39:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp --disable-ttl + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KUgSAA==","_self":"dbs/KUgSAA==/","_etag":"\"0000f800-0000-0600-0000-65e4ed190000\"","_colls":"colls/","_users":"users/","_ts":1709501721}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '478' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: EAEB49887AD748E0AAEA036412D997D0 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:39:27Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KUgSAA==","_self":"dbs/KUgSAA==/","_etag":"\"0000f800-0000-0600-0000-65e4ed190000\"","_colls":"colls/","_users":"users/","_ts":1709501721}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '478' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C4133D8B24A747DC86A8678702E5D974 Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:39:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container list + Connection: + - keep-alive + ParameterSetName: + - -g -a -d + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"814785a7-d9a5-11ee-9840-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:17:12.744977+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359"},"geospatialConfig":{"type":"Geography"},"_rid":"KUgSAJqcgGE=","_ts":1709501725,"_self":"dbs/KUgSAA==/colls/KUgSAJqcgGE=/","_etag":"\"0000fc00-0000-0600-0000-65e4ed1d0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[]}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1468' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:28 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4FDF7B6D3C7F4B35ADFBAA85387ABB8C Ref B: BL2AA2010205037 Ref C: 2024-03-03T21:39:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"backupPolicy":{"type":1},"restoreParameters":{"instanceId":"814785a7-d9a5-11ee-9840-000d3a1e0e23","restoreTimestampInUtc":"2024-03-03T21:17:12.744977+00:00","restoreSource":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359"},"geospatialConfig":{"type":"Geography"},"_rid":"KUgSAJqcgGE=","_ts":1709501725,"_self":"dbs/KUgSAA==/colls/KUgSAJqcgGE=/","_etag":"\"0000fc00-0000-0600-0000-65e4ed1d0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","computedProperties":[],"statistics":[{"id":"0","sizeInKB":128,"documentCount":0,"sampledDistinctPartitionKeyCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1571' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 105DF304DFDE474FB0C384D19807090D Ref B: BL2AA2030104049 Ref C: 2024-03-03T21:39:29Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/de857eab-dd19-4555-9c5a-f7f3c68fd257?api-version=2023-11-15&t=638450987703228542&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mWzGzsV4KhGHV-4d-sLT3GwJTL_pRQ9jKyOgSfRxst9xLXjoEqSWxHhdufHnYARkf0SqwwSaJOc6U94x6DNz6nnqJ-HoQl1j6wVVKaXISBN9t3A49rGQjkzhHnB8wO9ZTIir_TjVUxEpcgwbu1dQpKoUvu5L3R8RQXd4n_kJ8iTfGoeG4KweHaHIQBkhvtRkaGw8-HxYUKM7DZUDsmW_Zw4PmC05pESCQauv5b1Weik47qcQNYIJpahOGf_pSKv8pGUtbC9KeLKmufomrQQmn4OxbQv5AS48Xkcfl3qDvQjoDOfxdtjaHtnw4VUQRLGISThttK5QpyX7b6W3mm3QOg&h=uZjRYwrGyzeQfFlicwWzQxRYUq6mjkp-b-Zx5Ii2odI + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:29 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/de857eab-dd19-4555-9c5a-f7f3c68fd257?api-version=2023-11-15&t=638450987703228542&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=VuwGVfWbT03kgH_j_YDbxDG6oFb2307w3Fo7tPyhcCpZ6tWQDHBffmGNgZSxv5Pz2FvBC-5DOVGqslYby6-y28-ISKUntJLva6QRJWGApICRVPHkOnDndAoWCvthavwsvR_gBK8jm7x7onFmLbQa8atZcWfNciuZjqCcAMUo-ov16gPcZjXVQsWrSELxf97jR8tU9KxZAxlK6QtRFOxt53zeg-UCq1yEEtXULtirEkRNgHj9l-DEpvLZzBiln7bB5PUrYaPqOED7nYgF3byzo9RIunihSoMZF0whEuVjwaCNHDTK3P74m3BKuklOAjWTVmh2kIqM4W7_OOqCP8fVZA&h=vqTGrGcA-OhMjMfYcbO2RCbkbtzo4aYeT9cM89PLZGY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 8AE2E552CCE64017B0978233772A70F4 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:39:29Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/de857eab-dd19-4555-9c5a-f7f3c68fd257?api-version=2023-11-15&t=638450987703228542&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mWzGzsV4KhGHV-4d-sLT3GwJTL_pRQ9jKyOgSfRxst9xLXjoEqSWxHhdufHnYARkf0SqwwSaJOc6U94x6DNz6nnqJ-HoQl1j6wVVKaXISBN9t3A49rGQjkzhHnB8wO9ZTIir_TjVUxEpcgwbu1dQpKoUvu5L3R8RQXd4n_kJ8iTfGoeG4KweHaHIQBkhvtRkaGw8-HxYUKM7DZUDsmW_Zw4PmC05pESCQauv5b1Weik47qcQNYIJpahOGf_pSKv8pGUtbC9KeLKmufomrQQmn4OxbQv5AS48Xkcfl3qDvQjoDOfxdtjaHtnw4VUQRLGISThttK5QpyX7b6W3mm3QOg&h=uZjRYwrGyzeQfFlicwWzQxRYUq6mjkp-b-Zx5Ii2odI + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 59521811A5604FEFAA51F95B6C8687DA Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:39:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/de857eab-dd19-4555-9c5a-f7f3c68fd257?api-version=2023-11-15&t=638450987703228542&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mWzGzsV4KhGHV-4d-sLT3GwJTL_pRQ9jKyOgSfRxst9xLXjoEqSWxHhdufHnYARkf0SqwwSaJOc6U94x6DNz6nnqJ-HoQl1j6wVVKaXISBN9t3A49rGQjkzhHnB8wO9ZTIir_TjVUxEpcgwbu1dQpKoUvu5L3R8RQXd4n_kJ8iTfGoeG4KweHaHIQBkhvtRkaGw8-HxYUKM7DZUDsmW_Zw4PmC05pESCQauv5b1Weik47qcQNYIJpahOGf_pSKv8pGUtbC9KeLKmufomrQQmn4OxbQv5AS48Xkcfl3qDvQjoDOfxdtjaHtnw4VUQRLGISThttK5QpyX7b6W3mm3QOg&h=uZjRYwrGyzeQfFlicwWzQxRYUq6mjkp-b-Zx5Ii2odI + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 44CC4866009748239C9895B90E17AC75 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:40:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_shared_database_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 29B1C74CC5C2465E8D581C986FE996FF Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:40:01Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table.yaml new file mode 100644 index 00000000000..520b726d20d --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_cosmosdb_table.yaml @@ -0,0 +1,3891 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_restore000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001","name":"cli_test_cosmosdb_table_restore000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_cosmosdb_table","date":"2024-03-03T21:18:51Z","module":"cosmosdb-preview"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '409' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:18:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: F2E1AFEB580A4FF8BEC93749695539AB Ref B: BL2AA2030102031 Ref C: 2024-03-03T21:18:52Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], + "apiProperties": {}, "createMode": "Default", "backupPolicy": {"type": "Continuous", + "continuousModeProperties": {"tier": "Continuous30Days"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '386' + Content-Type: + - application/json + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:18:58.4776255Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a34cf23d-167a-4cfb-81f5-092946399ccc","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East + US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East + US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East + US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East + US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:18:58.4776255Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:18:58.4776255Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:18:58.4776255Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:18:58.4776255Z"}}},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + cache-control: + - no-store, no-cache + content-length: + - '2692' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:59 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=GHGpIyNzlu8Dn5YMp-kMFowC8UJEd8-VD2Y4jM63-r2207B4K7ow41v_8YU3KrKLc0x1AvLY8NdsXSDilSXSzq1iMFnjlGXKV5LLPm6p5KMJczFFiTL9GzaJJmop1-Cr4USurbaxuFgurljjHlRvIVJLGyEoAZ3iFSR3F49U7QZx72LcM9Y-lQa0b5sqJSkDKvaqhnDDeqfrs6nGY2QxqNlqDy99-v9NuDWZcKYMQoZ1GOeTvBJjxdzDOuU2hT722lQEpdi-ZlJeTx6QxgNp6yj8lPUaYSYrJ6qIU-yCV_eV1FzjC2bASDEkAOiiBGzAsPFVFxDqBaSVHa374G2yqw&h=LdyvQ12y118tA6dEwTWbyKYoJQSwO1nC_WIlpGZgtgo + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 7797D55384CC4F3B959CCBE6A262E6C2 Ref B: BL2AA2030104049 Ref C: 2024-03-03T21:18:52Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:18:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A418789A55D34926BD63824B08CEF840 Ref B: BL2AA2030101007 Ref C: 2024-03-03T21:19:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:29 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FD8C5745379646799B73EE18EAAEC8CB Ref B: BL2AA2010202017 Ref C: 2024-03-03T21:19:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:19:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FE889F630C804E68B0A498BCD87E3192 Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:20:00Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:20:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6126C3B7EA6F43D19F10B10950EE27E8 Ref B: BL2AA2030104029 Ref C: 2024-03-03T21:20:30Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:00 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2612EED35C4142ADAA9FC540EF6A9A53 Ref B: BL2AA2030101039 Ref C: 2024-03-03T21:21:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:21:30 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BA89A1BA28B943809FF4700011D1E41A Ref B: BL2AA2030101053 Ref C: 2024-03-03T21:21:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 296078D8D514415B87A61E32DE712A98 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:22:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d22833cc-c074-4fbd-8cf5-93c7a0c3bdee?api-version=2024-02-15-preview&t=638450975403317465&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pOIPJfRk8O9Rcez8uUatm-cSG1r_IMaK8V6XrrTujTAxn1mOMYXyRJb7YzO1wNirBKaDou_DtnvDbtjQ3Ex14NINg6xIRUctGcXL4dQV5hhzrhlHN7mKHffwDSGhku-nMhERUf9f7IQJrE8oMIAxpI-Z4GbIjjPe1ldS-jQLMU2aS7hdRuWc08JGvMl1iIQYORMiAxY9oZwZpKTAoIHHOOuc22Z3lsSTydj61uqQOMKwh0bu53X0qPzjiFMGQfFikCeXqI9x8s8HnZJqHMos_0h2OovXVmyDExjlfZ_Lbvu8nDO7kfjcrhT3jgEvewOyKvcWWYtC-DAlXt96y24-iA&h=mbCLx4WbvRdhGqWNp1gbP8rhebCppnD3Jqr4c211iXg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B28DBE62D76F488FA049CC2650602353 Ref B: BL2AA2010205021 Ref C: 2024-03-03T21:22:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:21:47.428488Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a34cf23d-167a-4cfb-81f5-092946399ccc","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East + US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:21:47.428488Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:21:47.428488Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:21:47.428488Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:21:47.428488Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3112' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C8AFA3798C934BCC9D2C05D7EE909BE4 Ref B: BL2AA2010204049 Ref C: 2024-03-03T21:22:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-policy-type --locations --capabilities + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2024-03-03T21:21:47.428488Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","sqlEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"analyticalStorageConfiguration":{"schemaType":"WellDefined"},"instanceId":"a34cf23d-167a-4cfb-81f5-092946399ccc","createMode":"Default","databaseAccountOfferType":"Standard","defaultIdentity":"FirstPartyIdentity","networkAclBypass":"None","disableLocalAuth":false,"enablePartitionMerge":false,"enablePerRegionPerPartitionAutoscale":false,"enableBurstCapacity":false,"enablePriorityBasedExecution":false,"defaultPriorityLevel":"High","minMaxThresholdsForPriorityBasedExecution":{"minPercentForLowPriorityRequests":0,"maxPercentForLowPriorityRequests":100,"minPercentForHighPriorityRequests":0,"maxPercentForHighPriorityRequests":100},"minimalTlsVersion":"Tls12","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{"EnablePerRegionPerPartitionAutoscaleOptIn":"True"},"writeLocations":[{"id":"cli000003-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000003-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-eastus2","locationName":"East + US 2","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[],"backupPolicy":{"type":"Continuous","continuousModeProperties":{"tier":"Continuous30Days"}},"networkAclBypassResourceIds":[],"diagnosticLogSettings":{"enableFullTextQuery":"None"},"keysMetadata":{"primaryMasterKey":{"generationTime":"2024-03-03T21:21:47.428488Z"},"secondaryMasterKey":{"generationTime":"2024-03-03T21:21:47.428488Z"},"primaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:21:47.428488Z"},"secondaryReadonlyMasterKey":{"generationTime":"2024-03-03T21:21:47.428488Z"}}},"identity":{"type":"None"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '3112' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 551BD0180EDA4A488A4C601CF2790D0E Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:22:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: + {\\\"Errors\\\":[\\\"Owner resource does not exist\\\"]}\\r\\nActivityId: + 259df96a-d9a4-11ee-800f-000d3a1e0e23, Request URI: /apps/b39f5f8f-f53e-4fa6-a675-cb242483fd7a/services/ca6ed53f-cb8c-4e3c-b111-da7c91678618/partitions/e2b960a3-9a32-41fb-9dc5-601e51765749/replicas/133533504102983079s, + RequestStats: \\r\\nRequestStartTime: 2024-03-03T21:22:33.1264323Z, RequestEndTime: + 2024-03-03T21:22:33.1281022Z, Number of regions attempted:1\\r\\n{\\\"systemHistory\\\":[{\\\"dateUtc\\\":\\\"2024-03-03T21:21:39.1796825Z\\\",\\\"cpu\\\":1.210,\\\"memory\\\":411896824.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0525,\\\"availableThreads\\\":32762,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:49.1896625Z\\\",\\\"cpu\\\":0.529,\\\"memory\\\":411380404.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.049,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247},{\\\"dateUtc\\\":\\\"2024-03-03T21:21:59.1996408Z\\\",\\\"cpu\\\":1.131,\\\"memory\\\":411659264.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0618,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247},{\\\"dateUtc\\\":\\\"2024-03-03T21:22:09.2096381Z\\\",\\\"cpu\\\":0.837,\\\"memory\\\":411748060.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0239,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247},{\\\"dateUtc\\\":\\\"2024-03-03T21:22:19.2195759Z\\\",\\\"cpu\\\":1.031,\\\"memory\\\":411776744.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0443,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247},{\\\"dateUtc\\\":\\\"2024-03-03T21:22:29.2295923Z\\\",\\\"cpu\\\":1.329,\\\"memory\\\":411865792.000,\\\"threadInfo\\\":{\\\"isThreadStarving\\\":\\\"False\\\",\\\"threadWaitIntervalInMs\\\":0.0402,\\\"availableThreads\\\":32764,\\\"minThreads\\\":64,\\\"maxThreads\\\":32767},\\\"numberOfOpenTcpConnection\\\":247}]}\\r\\nRequestStart: + 2024-03-03T21:22:33.1267227Z; ResponseTime: 2024-03-03T21:22:33.1280927Z; + StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11300/apps/b39f5f8f-f53e-4fa6-a675-cb242483fd7a/services/ca6ed53f-cb8c-4e3c-b111-da7c91678618/partitions/e2b960a3-9a32-41fb-9dc5-601e51765749/replicas/133533504102983079s, + LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.747, ActivityId: + 259df96a-d9a4-11ee-800f-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:22:33 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:22:33 PM),(port: 11300 | status: Unknown + | lkt: 3/3/2024 9:22:33 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:22:33 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:33.1266053Z\\\", + \\\"durationInMs\\\": 0.015},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:33.1266203Z\\\", \\\"durationInMs\\\": + 0.0109},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:33.1266312Z\\\", + \\\"durationInMs\\\": 0.0805},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:33.1267117Z\\\", \\\"durationInMs\\\": 0.9312},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:33.1276429Z\\\", + \\\"durationInMs\\\": 0.0626},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:33.1277055Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:22:22.7917532Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:22:22.7917777Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:22:22.7920643Z\\\"},\\\"requestSizeInBytes\\\":489,\\\"responseMetadataSizeInBytes\\\":141,\\\"responseBodySizeInBytes\\\":44};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\nRequestStart: 2024-03-03T21:22:33.1267860Z; + ResponseTime: 2024-03-03T21:22:33.1281022Z; StoreResult: StorePhysicalAddress: + rntbd://10.0.1.9:11000/apps/b39f5f8f-f53e-4fa6-a675-cb242483fd7a/services/ca6ed53f-cb8c-4e3c-b111-da7c91678618/partitions/e2b960a3-9a32-41fb-9dc5-601e51765749/replicas/133533504102983078s, + LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, + UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.689, ActivityId: + 259df96a-d9a4-11ee-800f-000d3a1e0e23, RetryAfterInMs: , ReplicaHealthStatuses: + [(port: 11300 | status: Unknown | lkt: 3/3/2024 9:22:33 PM),(port: 11000 | + status: Unknown | lkt: 3/3/2024 9:22:33 PM),(port: 11300 | status: Unknown + | lkt: 3/3/2024 9:22:33 PM),(port: 11000 | status: Unknown | lkt: 3/3/2024 + 9:22:33 PM)], TransportRequestTimeline: {\\\"requestTimeline\\\":[{\\\"event\\\": + \\\"Created\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:33.1267249Z\\\", + \\\"durationInMs\\\": 0.0048},{\\\"event\\\": \\\"ChannelAcquisitionStarted\\\", + \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:33.1267297Z\\\", \\\"durationInMs\\\": + 0.0017},{\\\"event\\\": \\\"Pipelined\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:33.1267314Z\\\", + \\\"durationInMs\\\": 0.0486},{\\\"event\\\": \\\"Transit Time\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:33.1267800Z\\\", \\\"durationInMs\\\": 1.0134},{\\\"event\\\": + \\\"Received\\\", \\\"startTimeUtc\\\": \\\"2024-03-03T21:22:33.1277934Z\\\", + \\\"durationInMs\\\": 0.0832},{\\\"event\\\": \\\"Completed\\\", \\\"startTimeUtc\\\": + \\\"2024-03-03T21:22:33.1278766Z\\\", \\\"durationInMs\\\": 0}],\\\"serviceEndpointStats\\\":{\\\"inflightRequests\\\":1,\\\"openConnections\\\":1},\\\"connectionStats\\\":{\\\"waitforConnectionInit\\\":\\\"False\\\",\\\"callsPendingReceive\\\":0,\\\"lastSendAttempt\\\":\\\"2024-03-03T21:22:33.0555708Z\\\",\\\"lastSend\\\":\\\"2024-03-03T21:22:33.0555976Z\\\",\\\"lastReceive\\\":\\\"2024-03-03T21:22:33.0854575Z\\\"},\\\"requestSizeInBytes\\\":489,\\\"responseMetadataSizeInBytes\\\":141,\\\"responseBodySizeInBytes\\\":44};\\r\\n + ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\"}, + Request URI: /dbs/TablesDB/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '7016' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AA34BBF9B73B4D1BB0A6895971CE74AD Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:22:32Z' + status: + code: 404 + message: NotFound +- request: + body: '{"properties": {"resource": {"id": "cli000002", "createMode": "Default"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44613746-96d1-472d-a7dc-16e8d44ec6b7?api-version=2023-11-15&t=638450977544810112&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XF3eJeoUNh6Cv6969C_-FPJ29u8CXhIaahnBvRW6bTXhSswT3vRUHuqWw-BJpOdm7OTZcHzL4qj69tsuQuaTYrNcQ1szCS1zPQlksFCrXcYs266tAwUL6ImuVYdiyn-KDewfwiKU1zh2Y8nCBCV6UOva8mvU4vhs_lr_N79ghZfrMibSfTpTk1UjHPEbO_yuLwGFC8oSMefP_HtAzhbLRbGHY-Scr3YqG2He36l15eUxpWedQoWdxr8O6BN3MhfjHrF314tfy0PrNycl-07Hnd8fCG6bUKHqpGB_8_N3K0Y_QQ2GNyokv23TVPfs5FP2TMbzbt66ceuaMEcpUGsa5g&h=7wHZCbIOtXTdqeMQoPxzgjFLryOhgYDq0lBPfqkn3HA + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:33 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/44613746-96d1-472d-a7dc-16e8d44ec6b7?api-version=2023-11-15&t=638450977544810112&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=igTwVVRVgT5P36_Smb7X2eTIIQS2vLaFI1sVfkVdIkES9wUxMVQXc0j2SujHy8aume7IxO-BgN4AiwV8W9TVS5fbh2wdWvZdj2HnJyu9sD_yKYa1ihRA7WXLu5jojRTPVY9DAe-pJHKt31UpSRS8xkJTs6ueddOvfhHUgXcvLA4Ibfu4eSA4k9470aeBhLxsAxQxZ3_vv2sc9BJ9dVVTCQ3lEw2C8BTvGymc5y1awE9mRQHDdGbOK_WDT1i-GsPRy8Kv87u12T7wzpt9HtJAb76k1cnh0l30CM-maDpsvva7WEz2hVSYglzsmvVhfxPX_KLdqg6K-qQraDwl0ehbzw&h=oddTaxKGXyLpSYkD6vVYBKAGlriKOiyVe3lc45VdrkE + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: A327FF5BBF0C4E31A468EF4F03D62CED Ref B: BL2AA2010204023 Ref C: 2024-03-03T21:22:33Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44613746-96d1-472d-a7dc-16e8d44ec6b7?api-version=2023-11-15&t=638450977544810112&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XF3eJeoUNh6Cv6969C_-FPJ29u8CXhIaahnBvRW6bTXhSswT3vRUHuqWw-BJpOdm7OTZcHzL4qj69tsuQuaTYrNcQ1szCS1zPQlksFCrXcYs266tAwUL6ImuVYdiyn-KDewfwiKU1zh2Y8nCBCV6UOva8mvU4vhs_lr_N79ghZfrMibSfTpTk1UjHPEbO_yuLwGFC8oSMefP_HtAzhbLRbGHY-Scr3YqG2He36l15eUxpWedQoWdxr8O6BN3MhfjHrF314tfy0PrNycl-07Hnd8fCG6bUKHqpGB_8_N3K0Y_QQ2GNyokv23TVPfs5FP2TMbzbt66ceuaMEcpUGsa5g&h=7wHZCbIOtXTdqeMQoPxzgjFLryOhgYDq0lBPfqkn3HA + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:34 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E88C39520D634429B5DDC4666F0E95E9 Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:22:34Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44613746-96d1-472d-a7dc-16e8d44ec6b7?api-version=2023-11-15&t=638450977544810112&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XF3eJeoUNh6Cv6969C_-FPJ29u8CXhIaahnBvRW6bTXhSswT3vRUHuqWw-BJpOdm7OTZcHzL4qj69tsuQuaTYrNcQ1szCS1zPQlksFCrXcYs266tAwUL6ImuVYdiyn-KDewfwiKU1zh2Y8nCBCV6UOva8mvU4vhs_lr_N79ghZfrMibSfTpTk1UjHPEbO_yuLwGFC8oSMefP_HtAzhbLRbGHY-Scr3YqG2He36l15eUxpWedQoWdxr8O6BN3MhfjHrF314tfy0PrNycl-07Hnd8fCG6bUKHqpGB_8_N3K0Y_QQ2GNyokv23TVPfs5FP2TMbzbt66ceuaMEcpUGsa5g&h=7wHZCbIOtXTdqeMQoPxzgjFLryOhgYDq0lBPfqkn3HA + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:04 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0141A82443224D488916E8AD85081CA7 Ref B: BL2AA2010202017 Ref C: 2024-03-03T21:23:04Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"BYhnAJ9Ad7g=","_etag":"\"00000000-0000-0000-6db0-eeb2300201da\"","_ts":1709500964}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '396' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8B4BEDA6A07242D7B5E57F22AB9B404A Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:23:05Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"BYhnAJ9Ad7g=","_etag":"\"00000000-0000-0000-6db0-eeb2300201da\"","_ts":1709500964}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '396' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A2B585957ADE4427B13D5F24BEB206EC Ref B: BL2AA2030104025 Ref C: 2024-03-03T21:23:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"BYhnAJ9Ad7g=","_etag":"\"00000000-0000-0000-6db0-eeb2300201da\"","_ts":1709500964}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '408' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 93118ED3B0C54D37993B089AC98B5CD2 Ref B: BL2AA2030101031 Ref C: 2024-03-03T21:23:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"BYhnAJ9Ad7g=","_etag":"\"00000000-0000-0000-6db0-eeb2300201da\"","_ts":1709500964}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '396' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2551078969364E388A88F9CF5FE1EEA2 Ref B: BL2AA2010201053 Ref C: 2024-03-03T21:23:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e8065b24-7fb2-42e7-989a-f678a28153ff?api-version=2023-11-15&t=638450982887028035&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OfWg_Up7jZfKempM6ItqTCqR556prfBc_yWVos_lnHS6BIMU2EnZMRmHw_4CQyzcP9_HNHWxUPWtCa6Z7warygi-CJ7L-mLuTBzIpJTF1cJtJ2slc9ulX-K1q7Ka0ganh3-6zQFHPIEjvWo0qUQyyesUnIh8LKFfNwlPs41RBBhcDj90YLS-_RL-0f4KT7zUIRqhp4TAzwLEAmhLsTtm7eWuMTs9jOmb-8Y7FDBdWKp6TYSyUMq9F1lxqa0GwQ136H7FJutJ3zTtpg8UWU-K_6Bgt09UzjrUVQ-JD0N_R-yAWm61sImb5SszQpvRVl4oIsf0Y6QuwSiJ9FZ86_hWvg&h=gkotRev87vvKDri5vYZms_23xbJspUhyPMueabgOJZI + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:27 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/e8065b24-7fb2-42e7-989a-f678a28153ff?api-version=2023-11-15&t=638450982887028035&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XHpgIFx5zvFGjvduo42yuUY-iZ2Tf6KBHMcOneQx2jUs3Kcm_N6liAm8FzTIdSKi9Raaf27yJs-KAk_nGnI7HNj2H-ANFUGVHUnOhGDnvpdzIUkIgRF6qOvN18chUsiu6ST_MQ8PZMKjdronD7z82vOogVFJXN7VxVGD89v-XPM3wYjt_tx7DTxTvZaS6D-Tvwbk6JoFIIH2xgfYOHu_inyNmpHDbcdR5fIxgDelgmZ_FUtRMlCOiy5ZyE6JLu0aejVpUFjdlfBNB_fo5Uw0DpQ-4AS5ztRFknQvEHqWKdapWHIPEWZ0DRMkv1k3PVSavrHEesoUIRPa2dV34zJfhQ&h=KzK4PP9c1dgZqhXvC1FUY4SJv0jLy9pPGNLe02Quipw + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 4607CE30C5DC44F4AFAD7D573C9F78D6 Ref B: BL2AA2030104029 Ref C: 2024-03-03T21:31:28Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e8065b24-7fb2-42e7-989a-f678a28153ff?api-version=2023-11-15&t=638450982887028035&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OfWg_Up7jZfKempM6ItqTCqR556prfBc_yWVos_lnHS6BIMU2EnZMRmHw_4CQyzcP9_HNHWxUPWtCa6Z7warygi-CJ7L-mLuTBzIpJTF1cJtJ2slc9ulX-K1q7Ka0ganh3-6zQFHPIEjvWo0qUQyyesUnIh8LKFfNwlPs41RBBhcDj90YLS-_RL-0f4KT7zUIRqhp4TAzwLEAmhLsTtm7eWuMTs9jOmb-8Y7FDBdWKp6TYSyUMq9F1lxqa0GwQ136H7FJutJ3zTtpg8UWU-K_6Bgt09UzjrUVQ-JD0N_R-yAWm61sImb5SszQpvRVl4oIsf0Y6QuwSiJ9FZ86_hWvg&h=gkotRev87vvKDri5vYZms_23xbJspUhyPMueabgOJZI + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:27 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A53C9B9AD184444588B6D2C82522CB16 Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:31:28Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e8065b24-7fb2-42e7-989a-f678a28153ff?api-version=2023-11-15&t=638450982887028035&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=OfWg_Up7jZfKempM6ItqTCqR556prfBc_yWVos_lnHS6BIMU2EnZMRmHw_4CQyzcP9_HNHWxUPWtCa6Z7warygi-CJ7L-mLuTBzIpJTF1cJtJ2slc9ulX-K1q7Ka0ganh3-6zQFHPIEjvWo0qUQyyesUnIh8LKFfNwlPs41RBBhcDj90YLS-_RL-0f4KT7zUIRqhp4TAzwLEAmhLsTtm7eWuMTs9jOmb-8Y7FDBdWKp6TYSyUMq9F1lxqa0GwQ136H7FJutJ3zTtpg8UWU-K_6Bgt09UzjrUVQ-JD0N_R-yAWm61sImb5SszQpvRVl4oIsf0Y6QuwSiJ9FZ86_hWvg&h=gkotRev87vvKDri5vYZms_23xbJspUhyPMueabgOJZI + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:58 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 56E227010A35467FB87CA038F439E136 Ref B: BL2AA2010201009 Ref C: 2024-03-03T21:31:58Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:59 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E16132C988F44773B99C6E74B2599F2D Ref B: BL2AA2030103023 Ref C: 2024-03-03T21:31:59Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15 + response: + body: + string: '{"value":[{"name":"891db65f-d13b-4f67-b712-33c8c8d745c7","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7","properties":{"accountName":"res-con-2","apiType":"Sql","creationTime":"2023-07-18T17:24:49+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d7205a3d-c347-4e3c-ae35-b6d786d78b2a","creationTime":"2023-07-18T17:24:50Z"}]}},{"name":"55a2175f-41e2-48f3-927c-efa7b52b8283","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283","properties":{"accountName":"barprod-1051050636","apiType":"Sql","creationTime":"2023-08-03T17:56:01+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776","creationTime":"2023-08-03T17:56:02Z"}]}},{"name":"17390119-c71e-443a-96ef-876037f7e359","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/17390119-c71e-443a-96ef-876037f7e359","properties":{"accountName":"cliswbsyodxue6t","apiType":"Sql","creationTime":"2024-03-03T21:15:32Z","oldestRestorableTime":"2024-03-03T21:15:32Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"09c7cc94-3738-49ed-b1cb-c4384b5ab1f4","creationTime":"2024-03-03T21:15:32Z"}]}},{"name":"0b75a824-a1aa-453b-aa79-18cd49e42c1f","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f","properties":{"accountName":"cli-xrr-cpuw2swk55gaw4fsh","apiType":"Sql","creationTime":"2024-02-15T03:53:13+00:00","deletionTime":"2024-02-15T04:56:49Z","oldestRestorableTime":"2024-02-08T04:56:49Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"83fdba26-e821-4408-9d01-479d776d9154","creationTime":"2024-02-15T03:53:14Z","deletionTime":"2024-02-15T04:56:49Z"}]}},{"name":"46c840f8-46d0-4ce7-8395-7e353eb6f6b5","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5","properties":{"accountName":"cli-xrr-xmwicoqaz6gdanjyq","apiType":"Sql","creationTime":"2024-02-15T03:51:57+00:00","deletionTime":"2024-02-15T04:58:47Z","oldestRestorableTime":"2024-02-08T04:58:47Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"7a1e6265-d78f-4608-af59-a0c08a8f6b17","creationTime":"2024-02-15T03:54:21Z","deletionTime":"2024-02-15T04:58:47Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a3907ca2-4e57-4483-bc8b-3d90864241ba","creationTime":"2024-02-15T03:51:57Z","deletionTime":"2024-02-15T04:58:47Z"}]}},{"name":"27ea23d7-c65d-4d54-bc37-07a0b0dad47e","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e","properties":{"accountName":"cli-xrr-ehqjnabrjhhrxeb6f","apiType":"Sql","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z","oldestRestorableTime":"2024-02-08T19:00:02Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"8d8dce0c-5567-457d-b637-9a8cfbf18a44","creationTime":"2024-02-15T17:56:45Z","deletionTime":"2024-02-15T19:00:02Z"}]}},{"name":"818b898c-35ec-4ad5-8326-b83baf732e0c","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c","properties":{"accountName":"cli-xrr-yehiecslkstnfuaqj","apiType":"Sql","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z","oldestRestorableTime":"2024-02-08T19:02:35Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"9ab4ffa6-cb00-4d1c-8909-67f2502c312a","creationTime":"2024-02-15T17:59:06Z","deletionTime":"2024-02-15T19:02:35Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8","creationTime":"2024-02-15T17:56:49Z","deletionTime":"2024-02-15T19:02:35Z"}]}},{"name":"81a5480d-9bc9-4ab3-943e-dda1b8f1768a","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:39:54Z","oldestRestorableTime":"2024-02-08T20:39:54Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b19fba1a-5fe1-4d15-b352-531e28d1c2e0","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:39:54Z"}]}},{"name":"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6","properties":{"accountName":"cli-xrr-jtzpd7vooc5dalg3q-restored","apiType":"Sql","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z","oldestRestorableTime":"2024-02-08T20:39:55Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"27b044dd-be5e-4cae-889e-0aba94f6d08d","creationTime":"2024-02-15T20:37:42Z","deletionTime":"2024-02-15T20:39:55Z"}]}},{"name":"3a0080da-f722-4213-bb5c-05a1b4e12971","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o-restored","apiType":"Sql","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z","oldestRestorableTime":"2024-02-08T20:41:26Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"33c00e87-5177-494b-be8e-ce8bbb001997","creationTime":"2024-02-15T20:40:16Z","deletionTime":"2024-02-15T20:41:26Z"}]}},{"name":"72575dc2-6be9-49aa-91b0-fea2c68b008d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d","properties":{"accountName":"cli-xrr-2ldxdwsfoobm2p47o","apiType":"Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T20:41:27Z","oldestRestorableTime":"2024-02-08T20:41:27Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"0c8f715f-6d97-4747-a448-61eb8529fcd1","creationTime":"2024-02-15T19:24:13Z","deletionTime":"2024-02-15T20:41:27Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"524f11a8-b0d8-4e91-81b2-b9c738a79378","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T20:41:27Z"}]}},{"name":"8fd3613e-f448-44f9-baff-9bb0785739fa","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa","properties":{"accountName":"cliuavbbhgnegki","apiType":"Table, + Sql","creationTime":"2024-02-23T01:19:27Z","deletionTime":"2024-02-23T01:22:16Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f70371f8-3c04-45a8-b05b-46dbd7094228","creationTime":"2024-02-23T01:19:28Z","deletionTime":"2024-02-23T01:22:16Z"}]}},{"name":"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6","properties":{"accountName":"clidqkfq3me74lt","apiType":"Table, + Sql","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"020432c9-1761-4520-b46f-0d2ccf4e3f95","creationTime":"2024-02-23T01:26:02Z","deletionTime":"2024-02-23T01:28:46Z"}]}},{"name":"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d","properties":{"accountName":"clilmdjsngaoaa7","apiType":"Table, + Sql","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8","creationTime":"2024-02-23T01:34:31Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"bc3cb286-1d63-4180-98dd-8a047430c763","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763","properties":{"accountName":"cliz3ievek66v75","apiType":"Table, + Sql","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"d2cf5132-5d06-4613-89e9-52e2c225385f","creationTime":"2024-02-23T01:51:01Z","deletionTime":"2024-02-23T01:52:01Z"}]}},{"name":"f7671baf-25aa-4e90-98fc-b912944c7c15","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15","properties":{"accountName":"cli7c2xadenjji6","apiType":"Sql","creationTime":"2024-02-23T19:47:10Z","deletionTime":"2024-02-23T20:13:09Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"39f36f43-e51e-4c38-bf60-e6256279ce5a","creationTime":"2024-02-23T19:47:11Z","deletionTime":"2024-02-23T20:13:09Z"}]}},{"name":"68bc9c1a-bed1-4a23-a97b-670b2b63bb13","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/68bc9c1a-bed1-4a23-a97b-670b2b63bb13","properties":{"accountName":"cli77ng643fhj5w","apiType":"Sql","creationTime":"2024-03-01T02:25:54Z","deletionTime":"2024-03-01T02:43:15Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ae99c26b-0e18-4065-9593-a69c1b4c5255","creationTime":"2024-03-01T02:25:55Z","deletionTime":"2024-03-01T02:43:15Z"}]}},{"name":"57e411cf-2bda-47fd-b9b9-91acf1c15172","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57e411cf-2bda-47fd-b9b9-91acf1c15172","properties":{"accountName":"clilp3cnab4tgoc","apiType":"Sql","creationTime":"2024-03-01T20:45:24Z","deletionTime":"2024-03-01T21:10:32Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c8c53a6c-e23c-4cf8-bfbe-1af7406ae55a","creationTime":"2024-03-01T20:45:25Z","deletionTime":"2024-03-01T21:10:32Z"}]}},{"name":"c098067f-07f9-4fff-8f19-64f7e571545d","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c098067f-07f9-4fff-8f19-64f7e571545d","properties":{"accountName":"cli6czsqe2rhpia","apiType":"Sql","creationTime":"2024-03-01T23:32:40Z","deletionTime":"2024-03-01T23:57:42Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"0f31a526-dae3-43de-9bb4-0fd64fa92b51","creationTime":"2024-03-01T23:32:41Z","deletionTime":"2024-03-01T23:57:42Z"}]}},{"name":"26d40fcd-60a5-4437-965f-0af5b6660dc1","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/26d40fcd-60a5-4437-965f-0af5b6660dc1","properties":{"accountName":"clizx4dopb7vep4","apiType":"Sql","creationTime":"2024-03-02T20:14:55Z","deletionTime":"2024-03-02T20:41:01Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"712270fc-81e2-4427-9f64-a5be3fee95db","creationTime":"2024-03-02T20:14:56Z","deletionTime":"2024-03-02T20:41:01Z"}]}},{"name":"ba0e5973-032a-4ad1-9bb8-90e5f6b96808","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ba0e5973-032a-4ad1-9bb8-90e5f6b96808","properties":{"accountName":"cliwffhxv44mk5y","apiType":"Sql","creationTime":"2024-03-03T06:21:23Z","deletionTime":"2024-03-03T06:47:24Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"ba4d3904-a310-4feb-9da1-489f93b9cbb3","creationTime":"2024-03-03T06:21:24Z","deletionTime":"2024-03-03T06:47:24Z"}]}},{"name":"8320ce01-f55b-41d6-86ea-a50702cddf23","location":"West + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8320ce01-f55b-41d6-86ea-a50702cddf23","properties":{"accountName":"clixgtpymfm4jxk","apiType":"Sql","creationTime":"2024-03-03T07:23:28Z","deletionTime":"2024-03-03T07:40:50Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"de1482c7-4ae3-456d-b78f-06eb87eef268","creationTime":"2024-03-03T07:23:29Z","deletionTime":"2024-03-03T07:40:50Z"}]}},{"name":"d88e6a3c-687d-4990-a516-da739070bf81","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81","properties":{"accountName":"kal-continuous7","apiType":"Sql","creationTime":"2022-06-07T20:09:38+00:00","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"09904716-38a7-46f3-bf7e-486b79c84510","creationTime":"2022-06-07T20:09:39Z"}]}},{"name":"fc911c8e-ddac-45d1-a0e6-2217c593bb7e","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e","properties":{"accountName":"test-billing-continuous30","apiType":"Sql","creationTime":"2022-07-28T21:54:20+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b","properties":{"accountName":"new-cosmsosdb-account","apiType":"Sql","creationTime":"2022-08-31T20:34:40+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"af27e000-3eb9-45db-ab59-d21f99e3826c","creationTime":"2022-08-31T20:34:40Z"}]}},{"name":"65c1e266-de59-48a5-928e-31167e02acec","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec","properties":{"accountName":"test-billing-continuous30-r","apiType":"Sql","creationTime":"2023-08-01T20:28:34+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ed261fc3-4fa3-44fb-b3de-1212af4e597d","creationTime":"2023-08-01T20:28:34Z"}]}},{"name":"ca50be36-cc43-4cd4-ac3b-0b785773d3be","location":"North + Central US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be","properties":{"accountName":"pitr-mm-throughportal","apiType":"Sql","creationTime":"2023-10-18T00:08:45+00:00","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185","creationTime":"2023-10-18T00:08:46Z"}]}},{"name":"a06aafc3-7133-4b8d-8097-bcd973f040ce","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce","properties":{"accountName":"res-con-1","apiType":"Sql","creationTime":"2023-07-18T01:32:36+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc","creationTime":"2023-07-18T01:32:37Z"}]}},{"name":"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485","properties":{"accountName":"mk-pitr","apiType":"Sql","creationTime":"2023-08-17T18:06:08+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"c019da89-2154-4140-81a7-fcbdc337d30e","creationTime":"2023-08-17T18:06:09Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"db04b6dc-0feb-42ee-a891-88f92b78842a","creationTime":"2023-08-31T15:40:41Z"}]}},{"name":"4ad29909-b869-4605-a634-467f93fd9516","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516","properties":{"accountName":"mk-test-pna-disabled","apiType":"Sql","creationTime":"2023-11-29T00:54:44+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"5519eb41-eaa8-47d5-8e01-14972beabbaa","creationTime":"2023-11-29T00:54:44Z"}]}},{"name":"9819aeee-ff14-485a-8272-771ccb7a3d27","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27","properties":{"accountName":"mk-pitr-pna-cli","apiType":"Sql","creationTime":"2023-12-06T22:46:41+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"21abf7d2-81ba-49c5-9a49-ff3782dc4592","creationTime":"2023-12-06T22:46:41Z"}]}},{"name":"294e3961-76ac-4d34-9c15-cfd4588c0272","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272","properties":{"accountName":"mk-255-pna-cli","apiType":"Sql","creationTime":"2023-12-07T19:13:40+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"79af2014-9e8d-4535-b649-1cd46b3a7232","creationTime":"2023-12-07T19:13:40Z"}]}},{"name":"02a6d29b-7624-43c6-92b4-15d9a771d0f7","location":"Central + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7","properties":{"accountName":"mk-testing2-pna-cli","apiType":"Sql","creationTime":"2023-12-08T19:45:49+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0","creationTime":"2023-12-08T19:45:49Z"}]}},{"name":"40c43b99-8bcd-428d-a106-c6994bde5374","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374","properties":{"accountName":"ddhamothsqlpitracct","apiType":"Sql","creationTime":"2023-07-21T18:13:48+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1490d2dc-c281-42b6-9533-b1d5629c9d8b","creationTime":"2023-07-21T18:13:49Z"}]}},{"name":"fe793ab0-fde4-42d2-9df0-35f45c27038d","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d","properties":{"accountName":"cli65sskt5ktpkp","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:52Z","deletionTime":"2024-02-15T03:53:31Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9","creationTime":"2024-02-15T03:46:53Z","deletionTime":"2024-02-15T03:53:31Z"}]}},{"name":"893b09df-4184-46e0-9dba-726bc83fe578","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578","properties":{"accountName":"cliahwd3rktulgw","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:54:29Z","deletionTime":"2024-02-15T04:00:46Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"043e3c27-65d4-45ef-a7a9-0e453a71a0c6","creationTime":"2024-02-15T03:54:30Z","deletionTime":"2024-02-15T04:00:46Z"}]}},{"name":"2874d49c-6387-41d9-86f7-b44dee9d4065","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065","properties":{"accountName":"clixn6tpkn4mldu","apiType":"Table, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:03:25Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"0cae3587-3261-4e57-8dd6-dd127c9b56dc","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:03:25Z"}]}},{"name":"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6","properties":{"accountName":"clidfsm2mbhwxt5","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T18:04:29Z","deletionTime":"2024-02-15T18:11:38Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"8573e125-e80a-48e2-b817-c8758b0fb539","creationTime":"2024-02-15T18:04:30Z","deletionTime":"2024-02-15T18:11:38Z"}]}},{"name":"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4","properties":{"accountName":"clivdlnp4tmamg5","apiType":"Table, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"ab41d6bc-8443-4fb3-b344-78cd9fb37191","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"34ac290e-2f90-4acf-9d77-76561adb1124","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124","properties":{"accountName":"clism7sxfnqvwgb","apiType":"Table, + Sql","creationTime":"2024-02-15T19:21:56Z","deletionTime":"2024-02-15T19:41:18Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"1cd81b6e-e1db-408c-af20-3951ae8b76b8","creationTime":"2024-02-15T19:21:57Z","deletionTime":"2024-02-15T19:41:18Z"}]}},{"name":"91984ee1-5268-480f-862f-e5a18978cb5f","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f","properties":{"accountName":"clirvmautulov7u","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"3e11e5d7-a506-43cc-8e03-49237e8b53b9","creationTime":"2024-02-15T20:01:43Z","deletionTime":"2024-02-15T20:02:35Z"}]}},{"name":"70d61086-d59e-414b-b273-0cea6b630d4e","location":"West + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e","properties":{"accountName":"clipcvdx77vacye","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:43:10+00:00","deletionTime":"2024-02-15T20:02:36Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"643ed46b-76c9-403b-8c6c-638f7ab039e8","creationTime":"2024-02-15T19:43:11Z","deletionTime":"2024-02-15T20:02:36Z"}]}},{"name":"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T00:26:38Z","deletionTime":"2024-02-09T00:34:40Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c1c8c40b-ca6d-4c93-8295-c493d628f67f","creationTime":"2024-02-09T00:26:39Z","deletionTime":"2024-02-09T00:34:40Z"}]}},{"name":"b6497d1d-1efd-4f9c-98a9-3562fd3553f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z","oldestRestorableTime":"2024-02-09T01:17:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1795e653-ef0d-41b2-ab09-8f73a135a0c3","creationTime":"2024-02-09T01:17:48Z","deletionTime":"2024-02-09T01:53:43Z"}]}},{"name":"28d4fd65-20ef-4215-b6f4-6b240f052f8f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f","properties":{"accountName":"dsapaliga-test","apiType":"Sql","creationTime":"2024-02-09T14:09:58+00:00","deletionTime":"2024-02-10T21:17:15Z","oldestRestorableTime":"2024-02-03T21:17:15Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc1912df-371e-40b4-b4e9-72b72bec9060","creationTime":"2024-02-09T14:09:59Z","deletionTime":"2024-02-10T21:17:15Z"}]}},{"name":"17e309ae-35d6-48cd-b769-a8fda9a087a8","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8","properties":{"accountName":"dsapaliga-as-res","apiType":"Sql","creationTime":"2024-02-09T15:34:36+00:00","deletionTime":"2024-02-10T21:17:23Z","oldestRestorableTime":"2024-02-03T21:17:23Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"65fb6a05-e66d-4580-83fc-32764c38e2c1","creationTime":"2024-02-09T15:34:36Z","deletionTime":"2024-02-10T21:17:23Z"}]}},{"name":"a17477b9-b662-4288-98c7-ab0882389ffb","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb","properties":{"accountName":"cli-continuous7-aym27retm","apiType":"Sql","creationTime":"2024-02-14T01:34:07Z","deletionTime":"2024-02-14T01:36:53Z","oldestRestorableTime":"2024-02-07T01:36:53Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746","creationTime":"2024-02-14T01:34:08Z","deletionTime":"2024-02-14T01:36:53Z"}]}},{"name":"e851f358-01df-4067-83a5-dcd02a957343","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343","properties":{"accountName":"cli-continuous7-isu2pwmlr","apiType":"Sql","creationTime":"2024-02-14T01:46:56Z","deletionTime":"2024-02-14T01:48:36Z","oldestRestorableTime":"2024-02-07T01:48:36Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"191684ea-48e0-48ed-ace1-f7e2ac59ad86","creationTime":"2024-02-14T01:46:57Z","deletionTime":"2024-02-14T01:48:36Z"}]}},{"name":"5b52253e-3820-4d93-a04e-05ee8d1cb27b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b","properties":{"accountName":"cli-continuous30-rrje777q","apiType":"Sql","creationTime":"2024-02-15T03:46:42+00:00","deletionTime":"2024-02-15T03:48:28Z","oldestRestorableTime":"2024-02-08T03:48:28Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf4daf47-1b7c-4bce-9263-479ee04464dc","creationTime":"2024-02-15T03:46:43Z","deletionTime":"2024-02-15T03:48:28Z"}]}},{"name":"70aa5c64-303b-42bd-ad0b-d239cd3a373a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a","properties":{"accountName":"climtp4hapxihtx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:46:55Z","deletionTime":"2024-02-15T03:50:25Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08502a1-3d00-4b87-b2f4-346833ce8687","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:25Z"}]}},{"name":"a170a9a2-b30d-4c74-a058-cf7680b48b00","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00","properties":{"accountName":"cliw4d65tbqpbqr","apiType":"MongoDB","creationTime":"2024-02-15T03:46:44Z","deletionTime":"2024-02-15T03:50:31Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f0588d0e-645d-4091-8b85-3da02ae877fd","creationTime":"2024-02-15T03:46:45Z","deletionTime":"2024-02-15T03:50:31Z"}]}},{"name":"42974497-bc5b-4fa0-b4c5-af02cb4c70d7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7","properties":{"accountName":"clizuwqoszppehb","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:56Z","deletionTime":"2024-02-15T03:50:37Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f373fb9-7d10-44a8-90ea-3fd868e88000","creationTime":"2024-02-15T03:46:57Z","deletionTime":"2024-02-15T03:50:37Z"}]}},{"name":"e7227bca-2018-4d6f-a743-17e9c0dfbb0e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e","properties":{"accountName":"cli-continuous7-p3skp4zxr","apiType":"Sql","creationTime":"2024-02-15T03:49:57+00:00","deletionTime":"2024-02-15T03:51:39Z","oldestRestorableTime":"2024-02-08T03:50:49Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3229eda6-a72c-4b29-bc2f-779a7a02b399","creationTime":"2024-02-15T03:49:58Z","deletionTime":"2024-02-15T03:51:39Z"}]}},{"name":"29ce7f0d-70e7-4c5b-82a0-3c649abc9681","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681","properties":{"accountName":"cliujzaxx2ztsud","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f299719f-0079-4ccc-a743-5b863c83319f","creationTime":"2024-02-15T03:46:47Z","deletionTime":"2024-02-15T03:52:57Z"}]}},{"name":"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4","properties":{"accountName":"clinuex3adxxesg","apiType":"Sql","creationTime":"2024-02-15T03:52:03Z","deletionTime":"2024-02-15T03:55:47Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"177a6fe2-cb85-45e6-af77-092ee410478f","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:55:47Z"}]}},{"name":"d2a1b97d-7272-4af9-9a58-9b154a40db8b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b","properties":{"accountName":"cli265xa3noae6t","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T03:52:04Z","deletionTime":"2024-02-15T03:56:14Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fb66976e-a262-476d-bb13-b2ab59f965da","creationTime":"2024-02-15T03:52:05Z","deletionTime":"2024-02-15T03:56:14Z"}]}},{"name":"899b4b58-eec8-465f-89a3-de0e4d7735c4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4","properties":{"accountName":"cli-systemid-h654vuopghlq","apiType":"Sql","creationTime":"2024-02-15T03:47:49+00:00","deletionTime":"2024-02-15T03:56:16Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ef6d96c5-b981-4500-97af-dbff9157ba2a","creationTime":"2024-02-15T03:47:49Z","deletionTime":"2024-02-15T03:56:16Z"}]}},{"name":"11e58a54-6c14-4c83-b668-08d2f6121579","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579","properties":{"accountName":"clijl5c54rslotk","apiType":"Table, + Sql","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a0589d51-f331-44ee-83c8-bc23be066c39","creationTime":"2024-02-15T03:54:11Z","deletionTime":"2024-02-15T03:57:18Z"}]}},{"name":"dd3f1109-ecab-4315-8f35-8036dc58a55e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e","properties":{"accountName":"cliqnonfncwa3vx","apiType":"Table, + Sql","creationTime":"2024-02-15T03:57:52Z","deletionTime":"2024-02-15T04:03:25Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"781c5a25-4660-48c4-b629-666232ed73a8","creationTime":"2024-02-15T03:57:53Z","deletionTime":"2024-02-15T04:03:25Z"}]}},{"name":"c5ee387e-ce72-4f90-92b2-fb0a42180bdd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd","properties":{"accountName":"cli-periodic-m3kkcupfutwo","apiType":"Sql","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z","oldestRestorableTime":"2024-02-15T04:16:08Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53","creationTime":"2024-02-15T04:16:08Z","deletionTime":"2024-02-15T04:17:39Z"}]}},{"name":"d6915d70-9957-4c9c-9dda-a4a33df77635","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635","properties":{"accountName":"cli-continuous7-ro4pzjoio","apiType":"Sql","creationTime":"2024-02-15T04:19:04Z","deletionTime":"2024-02-15T04:20:50Z","oldestRestorableTime":"2024-02-08T04:20:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e67c52b4-519d-4414-87f3-568e70a6e4cb","creationTime":"2024-02-15T04:19:05Z","deletionTime":"2024-02-15T04:20:50Z"}]}},{"name":"66b36df3-7886-43e8-871d-bababc38618b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b","properties":{"accountName":"clihbp4gxlbxvnd","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T17:56:50Z","deletionTime":"2024-02-15T18:02:55Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8876bf5-b144-4378-b4c2-4e8d58c99fea","creationTime":"2024-02-15T17:56:51Z","deletionTime":"2024-02-15T18:02:55Z"}]}},{"name":"7cb1132b-6bd8-4b16-b009-4bed90df3962","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962","properties":{"accountName":"cli-systemid-ukvwbcy3zpcp","apiType":"Sql","creationTime":"2024-02-15T17:57:50+00:00","deletionTime":"2024-02-15T18:06:13Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26","creationTime":"2024-02-15T17:57:51Z","deletionTime":"2024-02-15T18:06:13Z"}]}},{"name":"5f70ebd9-77b6-4d07-965a-3992989be14b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b","properties":{"accountName":"clihobw5gwap3ew","apiType":"Table, + Sql","creationTime":"2024-02-15T18:07:43Z","deletionTime":"2024-02-15T18:14:21Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"23cebc73-caad-4fcc-85cf-5ffee6fe12c4","creationTime":"2024-02-15T18:07:44Z","deletionTime":"2024-02-15T18:14:21Z"}]}},{"name":"94d58cba-53b5-4802-bab2-ee2e403ee9c2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2","properties":{"accountName":"cliuupfqclsuru7","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:21:50Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a73fe0c0-9c69-4229-9687-abc3460c9416","creationTime":"2024-02-15T19:21:51Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"dd52824f-1af9-48da-b71d-056c4f9ace65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65","properties":{"accountName":"clihow32hzsunqm","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b234b090-7e03-40bb-954b-44cb0b7b6772","creationTime":"2024-02-15T19:40:31Z","deletionTime":"2024-02-15T19:41:35Z"}]}},{"name":"00b9f3f6-5c04-4999-9a8a-7885335a0d67","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67","properties":{"accountName":"cli-systemid-o6lybwgmdd7w","apiType":"Sql","creationTime":"2024-02-15T19:23:13+00:00","deletionTime":"2024-02-15T19:45:32Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"1e6db744-8381-45d2-9b30-ee026ee84dcb","creationTime":"2024-02-15T19:23:14Z","deletionTime":"2024-02-15T19:45:32Z"}]}},{"name":"0e1dafa5-3578-42c3-a637-8ef2570d0ef1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1","properties":{"accountName":"cli-systemid-o6lybwgmdd7w-restored","apiType":"Sql","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10","creationTime":"2024-02-15T19:44:31Z","deletionTime":"2024-02-15T19:45:33Z"}]}},{"name":"5ebb8afc-fd69-4e2d-83cd-38081abce9e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0","properties":{"accountName":"cli-continuous7-sd6mg3paq","apiType":"Sql","creationTime":"2024-02-15T19:46:10+00:00","deletionTime":"2024-02-15T19:49:11Z","oldestRestorableTime":"2024-02-08T19:47:18Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f964842d-c700-45ea-bd28-0d2d73dc1d80","creationTime":"2024-02-15T19:46:11Z","deletionTime":"2024-02-15T19:49:11Z"}]}},{"name":"ad6953b5-eb08-4ce9-8087-55c502140623","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623","properties":{"accountName":"climn6iz44gvnpy","apiType":"Table, + Sql","creationTime":"2024-02-15T19:47:05Z","deletionTime":"2024-02-15T20:05:51Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ce8b6a10-64eb-409c-b7cd-02fb90362214","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:05:51Z"}]}},{"name":"13d33cc5-19f9-4ce1-9848-cda1637178ca","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca","properties":{"accountName":"cliayi7hbcysdp5","apiType":"Table, + Sql","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e45d88c2-3657-4788-8618-c8cebd9d5b20","creationTime":"2024-02-15T20:05:08Z","deletionTime":"2024-02-15T20:05:53Z"}]}},{"name":"2aacb803-7a89-43d6-8737-6b0eea4d2f73","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t-restored","apiType":"Sql","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bb9ed4fd-4042-460c-a535-1b48a57c39c5","creationTime":"2024-02-15T20:08:42Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"650a595b-2cbb-4994-801f-619acdc4bc09","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09","properties":{"accountName":"cli-systemid-4r2kk3fwbx2t","apiType":"Sql","creationTime":"2024-02-15T19:47:05+00:00","deletionTime":"2024-02-15T20:10:29Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4d181a8e-827e-4c99-a194-7ea7089a2f35","creationTime":"2024-02-15T19:47:06Z","deletionTime":"2024-02-15T20:10:29Z"}]}},{"name":"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904","properties":{"accountName":"cli7ufmq4jvp6hl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2fb7375f-260c-4d17-8079-459f48e3471f","creationTime":"2024-02-15T20:08:47Z","deletionTime":"2024-02-15T20:12:58Z"}]}},{"name":"f087b6e4-7766-4229-a9ac-4e837885ba05","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05","properties":{"accountName":"cli-periodic-h3nfk55h6djc","apiType":"Sql","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z","oldestRestorableTime":"2024-02-15T20:13:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e","creationTime":"2024-02-15T20:13:13Z","deletionTime":"2024-02-15T20:14:48Z"}]}},{"name":"f5a5124f-481b-4396-a2ac-20ede2f487e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0","properties":{"accountName":"cli-systemid-4mehlibwfchb-restored","apiType":"Sql","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3a5ae9d2-ac39-448c-9898-365014adc170","creationTime":"2024-02-15T20:16:31Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"3fee9df9-784c-41c1-922c-f6df73bd5839","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839","properties":{"accountName":"cli-systemid-4mehlibwfchb","apiType":"Sql","creationTime":"2024-02-15T19:57:57Z","deletionTime":"2024-02-15T20:18:29Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8caaaf0e-73a2-4022-a559-51b499a64abd","creationTime":"2024-02-15T19:57:58Z","deletionTime":"2024-02-15T20:18:29Z"}]}},{"name":"dfaef967-efe5-4fae-9513-1a92c1a046b9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9","properties":{"accountName":"cli-continuous7-hcwksyykg","apiType":"Sql","creationTime":"2024-02-15T20:16:28Z","deletionTime":"2024-02-15T20:19:37Z","oldestRestorableTime":"2024-02-08T20:19:37Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb9bf01f-b846-470c-9de6-b77621c6fd11","creationTime":"2024-02-15T20:16:29Z","deletionTime":"2024-02-15T20:19:37Z"}]}},{"name":"8f639884-034c-435c-85c7-036d8cf76da0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0","properties":{"accountName":"cli-continuous30-35lzjp5o","apiType":"Sql","creationTime":"2024-02-15T20:19:04+00:00","deletionTime":"2024-02-15T20:21:46Z","oldestRestorableTime":"2024-02-08T20:21:46Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"3cf04c5d-0966-4137-a288-e48cc1d39101","creationTime":"2024-02-15T20:19:04Z","deletionTime":"2024-02-15T20:21:46Z"}]}},{"name":"7a884978-d759-4722-8289-7ee24731c5c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7","properties":{"accountName":"clifazse4ehxi37","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:25:04Z","deletionTime":"2024-02-15T20:46:31Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"988e3778-d7a9-470f-8cce-e923b772f874","creationTime":"2024-02-15T20:25:05Z","deletionTime":"2024-02-15T20:46:31Z"}]}},{"name":"106fee21-64db-4103-97cd-07b69c44ade3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3","properties":{"accountName":"clielhsjmfkyfbt","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51","creationTime":"2024-02-15T20:44:18Z","deletionTime":"2024-02-15T20:46:32Z"}]}},{"name":"7bca7bce-cfc6-4301-96f8-782bd4f7587e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e","properties":{"accountName":"clivrwthwx6srut","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:00:20Z","deletionTime":"2024-02-15T21:05:12Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9","creationTime":"2024-02-15T21:00:21Z","deletionTime":"2024-02-15T21:05:12Z"}]}},{"name":"5248e56c-170a-4302-9047-826b8d30afc2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2","properties":{"accountName":"cli6eeyvxgfm6mp","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"46da2d65-e292-4154-b5a0-4c6cc7383698","creationTime":"2024-02-15T21:06:27Z","deletionTime":"2024-02-15T21:08:40Z"}]}},{"name":"34ce3c66-1c31-45f0-8755-55d143c76696","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696","properties":{"accountName":"climectyq3lhtgl","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T20:47:21Z","deletionTime":"2024-02-15T21:08:41Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"897b2f83-8872-4160-888e-6de6b812ad72","creationTime":"2024-02-15T20:47:22Z","deletionTime":"2024-02-15T21:08:41Z"}]}},{"name":"28e276f4-5581-47e2-9432-1f1a962afcd0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0","properties":{"accountName":"clivqlpqvob7yq5","apiType":"Table, + Sql","creationTime":"2024-02-16T01:56:28Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8f994360-9132-4ff0-8322-9b3ee5efb809","creationTime":"2024-02-16T01:56:29Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1","properties":{"accountName":"clioiohbr2hhseq","apiType":"Table, + Sql","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"636359b4-1539-4c15-afd4-b8f1d3b7e8b9","creationTime":"2024-02-16T02:15:08Z","deletionTime":"2024-02-16T02:16:14Z"}]}},{"name":"d4812505-e80a-411d-972e-9b6c78a59580","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580","properties":{"accountName":"climb5pdu2cha2s","apiType":"Table, + Sql","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0fe47b59-cc84-42e4-bbc6-e860ab85f635","creationTime":"2024-02-16T04:12:26Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"70701df1-7717-4d15-86a9-1d547cde51a4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4","properties":{"accountName":"clicudowfyum5cm","apiType":"Table, + Sql","creationTime":"2024-02-16T03:53:27Z","deletionTime":"2024-02-16T04:13:32Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"eb5fbe21-0375-4f43-9660-476063f49bcf","creationTime":"2024-02-16T03:53:28Z","deletionTime":"2024-02-16T04:13:32Z"}]}},{"name":"b2bd4c69-2c97-42e5-bb08-75659c7a00f1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1","properties":{"accountName":"cli-continuous7-uqta7v4yq","apiType":"Sql","creationTime":"2024-02-19T01:31:59+00:00","deletionTime":"2024-02-19T01:33:55Z","oldestRestorableTime":"2024-02-12T01:32:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dc486550-d104-412e-a36c-42fc61dc1b91","creationTime":"2024-02-19T01:32:00Z","deletionTime":"2024-02-19T01:33:55Z"}]}},{"name":"5920ef94-754c-4cc8-a166-e1987a47f8f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2","properties":{"accountName":"cli-periodic-674k727enafs","apiType":"Sql","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z","oldestRestorableTime":"2024-02-19T01:37:16Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d90814a7-36d2-4ceb-a308-2e6174e0267a","creationTime":"2024-02-19T01:37:16Z","deletionTime":"2024-02-19T01:38:47Z"}]}},{"name":"fbc92ebc-bb05-4906-88b3-4628612aa221","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221","properties":{"accountName":"cli-continuous7-aznek4ars","apiType":"Sql","creationTime":"2024-02-19T01:40:23Z","deletionTime":"2024-02-19T01:42:03Z","oldestRestorableTime":"2024-02-12T01:42:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13722052-4c65-4800-95ae-ce485c1ae781","creationTime":"2024-02-19T01:40:24Z","deletionTime":"2024-02-19T01:42:03Z"}]}},{"name":"15479895-241c-45c1-8834-5ce942da0e7f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f","properties":{"accountName":"clijlc2xdp7tz7d","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:50:27Z","deletionTime":"2024-02-19T01:55:40Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f357fa7f-7cef-42c2-b080-87d567f21123","creationTime":"2024-02-19T01:50:28Z","deletionTime":"2024-02-19T01:55:40Z"}]}},{"name":"c495fe2d-049e-414d-9c11-a96604d05e1e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e","properties":{"accountName":"cli-systemid-6eslxwydfbqu-restored","apiType":"Sql","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b76b7efa-5524-4daf-93cb-fa012022db15","creationTime":"2024-02-19T01:54:23Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732","properties":{"accountName":"cli-systemid-6eslxwydfbqu","apiType":"Sql","creationTime":"2024-02-19T01:33:26+00:00","deletionTime":"2024-02-19T01:56:38Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b625a453-f502-4359-9e78-5461bcd47193","creationTime":"2024-02-19T01:33:27Z","deletionTime":"2024-02-19T01:56:38Z"}]}},{"name":"8237f7db-3a6e-4974-8007-04e1f99b0039","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039","properties":{"accountName":"cli-systemid-ho2rtreis6tb-restored","apiType":"Sql","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"920a9db4-8b3c-4370-9510-554d98518f3f","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74","properties":{"accountName":"cli-systemid-ho2rtreis6tb","apiType":"Sql","creationTime":"2024-02-19T01:44:34Z","deletionTime":"2024-02-19T02:05:09Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135a6298-d620-4343-a4a1-e75df6af7770","creationTime":"2024-02-19T01:44:35Z","deletionTime":"2024-02-19T02:05:09Z"}]}},{"name":"0979c1e5-aba9-410f-8358-69c984715865","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865","properties":{"accountName":"cli-continuous30-n2b6bs2o","apiType":"Sql","creationTime":"2024-02-19T02:05:51+00:00","deletionTime":"2024-02-19T02:07:31Z","oldestRestorableTime":"2024-02-12T02:07:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ab661cc9-d2dd-4aee-959a-b562af5a3360","creationTime":"2024-02-19T02:05:52Z","deletionTime":"2024-02-19T02:07:31Z"}]}},{"name":"0118ae47-17ff-4051-a96d-fb7acceeafcc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc","properties":{"accountName":"clierugodrhbowl","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:12:29Z","deletionTime":"2024-02-19T02:33:45Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"af34c496-599a-4bd5-9735-b9628ba27351","creationTime":"2024-02-19T02:12:31Z","deletionTime":"2024-02-19T02:33:45Z"}]}},{"name":"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3","properties":{"accountName":"clijxbp7jkqkgsy","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"03209d33-3cf1-48a5-ae0d-55e76642bd9b","creationTime":"2024-02-19T02:31:52Z","deletionTime":"2024-02-19T02:33:46Z"}]}},{"name":"edd01008-9b16-4640-a455-a643ef56e5e0","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0","properties":{"accountName":"cli4ivy35n5gs6j","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:47:36Z","deletionTime":"2024-02-19T02:52:27Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60","creationTime":"2024-02-19T02:47:37Z","deletionTime":"2024-02-19T02:52:27Z"}]}},{"name":"88bb0e4c-218a-43f5-9d31-657d852f6172","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172","properties":{"accountName":"clin25oml3rpjqk","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d42b69fb-6182-488e-b16b-5cf9882b9f2b","creationTime":"2024-02-19T02:52:51Z","deletionTime":"2024-02-19T02:53:46Z"}]}},{"name":"fc1134cf-92dc-4bd7-bfb2-85f9300a3493","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493","properties":{"accountName":"cli2sorpqvkekcf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"095355f1-1a28-4ae8-871f-0234f30a7c00","creationTime":"2024-02-19T02:34:17Z","deletionTime":"2024-02-19T02:53:47Z"}]}},{"name":"883477df-d393-4331-8928-fa1f508af521","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521","properties":{"accountName":"clic3wkvhdmabul","apiType":"Table, + Sql","creationTime":"2024-02-19T03:21:01Z","deletionTime":"2024-02-19T03:24:13Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"62e0214b-0232-4fdc-8051-fa54d091ec14","creationTime":"2024-02-19T03:21:02Z","deletionTime":"2024-02-19T03:24:13Z"}]}},{"name":"7520e409-7d4a-4007-b4bd-77858782d86a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a","properties":{"accountName":"clikgh3ts2xwj4b","apiType":"Table, + Sql","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f458f203-4659-4507-85e1-48ced9743410","creationTime":"2024-02-19T03:32:51Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9","properties":{"accountName":"cliz25buaxlkhyu","apiType":"Table, + Sql","creationTime":"2024-02-19T03:14:47Z","deletionTime":"2024-02-19T03:34:47Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1","creationTime":"2024-02-19T03:14:48Z","deletionTime":"2024-02-19T03:34:47Z"}]}},{"name":"134b676d-5450-4f06-8647-1e0a2407312c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c","properties":{"accountName":"cli5cv2iowkho7d","apiType":"Table, + Sql","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"000ffa57-6b77-42bf-9126-7bcd90fbefb9","creationTime":"2024-02-19T03:53:29Z","deletionTime":"2024-02-19T03:55:15Z"}]}},{"name":"79650f71-8204-4be1-b9a7-1301323b2cd4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4","properties":{"accountName":"clivevcj7a5ktji","apiType":"Table, + Sql","creationTime":"2024-02-19T03:35:18Z","deletionTime":"2024-02-19T03:55:16Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f54b5b18-bb02-4513-a6d8-631a23609e89","creationTime":"2024-02-19T03:35:19Z","deletionTime":"2024-02-19T03:55:16Z"}]}},{"name":"52573857-7538-4dc8-9999-6a51df8997df","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df","properties":{"accountName":"cli-continuous7-pn5zy73ak","apiType":"Sql","creationTime":"2024-02-19T15:50:30+00:00","deletionTime":"2024-02-19T15:53:15Z","oldestRestorableTime":"2024-02-12T15:51:22Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d1a994bf-9009-4e89-921c-0745d26ee407","creationTime":"2024-02-19T15:50:31Z","deletionTime":"2024-02-19T15:53:15Z"}]}},{"name":"d85f9636-f42c-468d-baea-2ddc03885b6c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c","properties":{"accountName":"cli-systemid-44nistq5seww-restored","apiType":"Sql","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3","creationTime":"2024-02-19T16:12:55Z","deletionTime":"2024-02-19T16:15:00Z"}]}},{"name":"58380c26-b9e5-407e-b50d-692c5d17e87a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a","properties":{"accountName":"cli-systemid-44nistq5seww","apiType":"Sql","creationTime":"2024-02-19T15:51:35+00:00","deletionTime":"2024-02-19T16:15:01Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"f3ee5f52-de7b-410b-aafb-123b7a1186fe","creationTime":"2024-02-19T15:51:36Z","deletionTime":"2024-02-19T16:15:01Z"}]}},{"name":"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc","properties":{"accountName":"cli43oqhauchpzv","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"52648540-51fd-4d9e-b135-eefc82841b5b","creationTime":"2024-02-19T16:13:00Z","deletionTime":"2024-02-19T16:18:38Z"}]}},{"name":"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b","properties":{"accountName":"cli-systemid-zl4kvyg35ayo","apiType":"Sql","creationTime":"2024-02-19T16:02:40Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"87c3c91c-18cb-4eaa-992c-205852df83d2","creationTime":"2024-02-19T16:02:41Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"382f2921-cd26-44e8-ad44-c56c4313ad59","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59","properties":{"accountName":"cli-systemid-zl4kvyg35ayo-restored","apiType":"Sql","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e8e34703-34b6-46be-937f-4e4a2f155dec","creationTime":"2024-02-19T16:22:10Z","deletionTime":"2024-02-19T16:23:10Z"}]}},{"name":"639f958f-4688-4d48-b3cb-e3e2ff449a65","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65","properties":{"accountName":"cli-periodic-czvkmkcchppa","apiType":"Sql","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z","oldestRestorableTime":"2024-02-19T16:21:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a3f6cf8e-08ce-4286-a0bc-0b4811562be0","creationTime":"2024-02-19T16:21:41Z","deletionTime":"2024-02-19T16:23:26Z"}]}},{"name":"c619b469-2076-4197-b6bc-940b44984e66","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66","properties":{"accountName":"cli-continuous7-qvmrectjh","apiType":"Sql","creationTime":"2024-02-19T16:24:54Z","deletionTime":"2024-02-19T16:26:43Z","oldestRestorableTime":"2024-02-12T16:26:43Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9e040fbe-e47d-49fe-95ed-cbcf6653ce99","creationTime":"2024-02-19T16:24:55Z","deletionTime":"2024-02-19T16:26:43Z"}]}},{"name":"74721a4b-707f-4a3b-b991-72369f8d8561","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561","properties":{"accountName":"cli-continuous30-lwlqcxhk","apiType":"Sql","creationTime":"2024-02-19T16:24:37+00:00","deletionTime":"2024-02-19T16:27:25Z","oldestRestorableTime":"2024-02-12T16:27:25Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"fd936841-9b75-417c-940c-32d2c6a64936","creationTime":"2024-02-19T16:24:38Z","deletionTime":"2024-02-19T16:27:25Z"}]}},{"name":"279abd7a-e74a-47a0-ac62-791f19330425","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425","properties":{"accountName":"clil3ayri5kctmm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a","creationTime":"2024-02-19T16:49:29Z","deletionTime":"2024-02-19T16:51:40Z"}]}},{"name":"1515329b-5d2f-4b72-a5c0-70697a1a007c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c","properties":{"accountName":"clivws7nyipl2lf","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:30:15Z","deletionTime":"2024-02-19T16:51:41Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9176d9f9-a3a1-46d4-bea6-b3532e359c40","creationTime":"2024-02-19T16:30:16Z","deletionTime":"2024-02-19T16:51:41Z"}]}},{"name":"d884c22c-d783-46f4-8f30-4c59f24e6596","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596","properties":{"accountName":"cliqngbliah6jzm","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:04:07Z","deletionTime":"2024-02-19T17:09:18Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"39dbe7db-7441-4141-b06a-4a162cc1fde8","creationTime":"2024-02-19T17:04:08Z","deletionTime":"2024-02-19T17:09:18Z"}]}},{"name":"663f17c5-71d5-4f74-aa9c-409b580e6424","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424","properties":{"accountName":"clicynmhsfrve63","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:52:15Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"169998ef-50f3-47f9-b744-a2ee0caf8ba0","creationTime":"2024-02-19T16:52:16Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"bdf6e18d-9889-431c-938e-f4d091e5b959","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959","properties":{"accountName":"climnrhlpb7z4yb","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"8de31f44-c396-4238-84c1-3893b0c25e0e","creationTime":"2024-02-19T17:10:49Z","deletionTime":"2024-02-19T17:12:48Z"}]}},{"name":"e6517da2-76cd-4410-803e-7479db3ff0e9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9","properties":{"accountName":"cli-continuous7-wzknqvh6z","apiType":"Sql","creationTime":"2024-02-20T01:09:48+00:00","deletionTime":"2024-02-20T01:12:02Z","oldestRestorableTime":"2024-02-13T01:10:41Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33d02b93-3e17-4da3-8a13-2715b966b111","creationTime":"2024-02-20T01:09:49Z","deletionTime":"2024-02-20T01:12:02Z"}]}},{"name":"db960406-b279-479d-9060-bebf720f919b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b","properties":{"accountName":"cli-periodic-7mbkt3u4vfyi","apiType":"Sql","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z","oldestRestorableTime":"2024-02-20T01:15:31Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b911ae04-1ddf-49af-abe8-dc4b717dbd50","creationTime":"2024-02-20T01:15:31Z","deletionTime":"2024-02-20T01:18:01Z"}]}},{"name":"03197662-5b74-4f1f-b25d-dbb4769614fd","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd","properties":{"accountName":"cli-continuous7-67hqwaqip","apiType":"Sql","creationTime":"2024-02-20T01:18:29Z","deletionTime":"2024-02-20T01:21:13Z","oldestRestorableTime":"2024-02-13T01:21:13Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a1c82964-50ef-47c2-bf3e-15c593c7fa56","creationTime":"2024-02-20T01:18:30Z","deletionTime":"2024-02-20T01:21:13Z"}]}},{"name":"8d45cdf4-4215-4256-8669-791f3f783217","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217","properties":{"accountName":"cli-systemid-4snj6q2phqqi","apiType":"Sql","creationTime":"2024-02-20T01:10:55+00:00","deletionTime":"2024-02-20T01:34:14Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"acb6f322-540d-48be-aaed-e75986fba1f8","creationTime":"2024-02-20T01:10:56Z","deletionTime":"2024-02-20T01:34:14Z"}]}},{"name":"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61","properties":{"accountName":"cli-systemid-4snj6q2phqqi-restored","apiType":"Sql","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c9910f4e-940e-49ec-93ee-bbcf0da834d6","creationTime":"2024-02-20T01:32:09Z","deletionTime":"2024-02-20T01:34:15Z"}]}},{"name":"9e86e86b-2c49-4e6d-a415-92f03b4f002c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c","properties":{"accountName":"cli2tmskjuggcdx","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:31:43Z","deletionTime":"2024-02-20T01:37:18Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"13bdfabd-5b0d-40bb-9a6d-eac0612001e6","creationTime":"2024-02-20T01:31:44Z","deletionTime":"2024-02-20T01:37:18Z"}]}},{"name":"a7745f13-1663-4eb9-a3ee-8210b9f6280f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f","properties":{"accountName":"cli-systemid-awdxyctf2ghb-restored","apiType":"Sql","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0f0bc6ca-a110-479a-b766-756190c6c024","creationTime":"2024-02-20T01:41:00Z","deletionTime":"2024-02-20T01:42:54Z"}]}},{"name":"6c2a94cd-4b54-4883-a223-5a02cb9d9723","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723","properties":{"accountName":"cli-systemid-awdxyctf2ghb","apiType":"Sql","creationTime":"2024-02-20T01:22:16Z","deletionTime":"2024-02-20T01:42:58Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6901da97-3785-494f-a90a-e4c4bdf2eaef","creationTime":"2024-02-20T01:22:17Z","deletionTime":"2024-02-20T01:42:58Z"}]}},{"name":"e072a3ae-7b22-4f31-8e8a-e1d87116436d","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d","properties":{"accountName":"cli-continuous30-nkbqygmw","apiType":"Sql","creationTime":"2024-02-20T01:43:27+00:00","deletionTime":"2024-02-20T01:46:09Z","oldestRestorableTime":"2024-02-13T01:46:09Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"94d29162-8a25-4dbc-89f9-e2334255f701","creationTime":"2024-02-20T01:43:28Z","deletionTime":"2024-02-20T01:46:09Z"}]}},{"name":"ac98d041-c25f-4881-9e22-205eed275ea1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1","properties":{"accountName":"clia6qkbt37b3vp","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:49:27Z","deletionTime":"2024-02-20T02:10:31Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2db31b0e-133b-47f6-92c7-e9b52e037fcb","creationTime":"2024-02-20T01:49:28Z","deletionTime":"2024-02-20T02:10:31Z"}]}},{"name":"0342a8fa-28e4-493a-a96e-671b4b9a99b4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4","properties":{"accountName":"cliryaozkwvfect","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"67bc3412-bdbd-44de-b82e-c9305182ceb4","creationTime":"2024-02-20T02:08:09Z","deletionTime":"2024-02-20T02:10:34Z"}]}},{"name":"c86a57aa-00e0-457b-a53a-2b57aabd34d9","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9","properties":{"accountName":"cliptzmst35ml6q","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"584f4890-bd3b-4f90-b126-bd8ac2f1252b","creationTime":"2024-02-20T02:24:19Z","deletionTime":"2024-02-20T02:29:05Z"}]}},{"name":"0b953b74-edba-41ed-92a7-496ef17ae9f2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2","properties":{"accountName":"clivnom7sns56bs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d34b6309-ad50-46e7-97ce-5d538dd2746e","creationTime":"2024-02-20T02:29:41Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"d7945927-ef12-498a-9bc8-fc2adc4f059b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b","properties":{"accountName":"clif6okzm44gjp7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T02:11:04Z","deletionTime":"2024-02-20T02:31:31Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"33976e37-407f-493a-83ba-dc30a882a08a","creationTime":"2024-02-20T02:11:05Z","deletionTime":"2024-02-20T02:31:31Z"}]}},{"name":"b0b26792-8f42-42bc-891c-4719b7bfe9ba","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba","properties":{"accountName":"clipchx3thxmjrj","apiType":"Table, + Sql","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6938b32f-b6e2-41a2-af76-abd596e7dff1","creationTime":"2024-02-20T03:10:32Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"5307cacc-80e8-4de9-a935-c2e8401d177f","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f","properties":{"accountName":"cli4yrdnrio2v3k","apiType":"Table, + Sql","creationTime":"2024-02-20T02:52:28Z","deletionTime":"2024-02-20T03:12:22Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"dca5fd07-2a13-4138-95b8-4c2683693c6d","creationTime":"2024-02-20T02:52:29Z","deletionTime":"2024-02-20T03:12:22Z"}]}},{"name":"1075a68a-4be5-4501-b2e8-dc5727278c5a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a","properties":{"accountName":"cliivnbv6h3myoy","apiType":"Table, + Sql","creationTime":"2024-02-20T03:14:21Z","deletionTime":"2024-02-20T03:18:57Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"bc2009ae-b767-456f-8480-b4b867ad845a","creationTime":"2024-02-20T03:14:22Z","deletionTime":"2024-02-20T03:18:57Z"}]}},{"name":"29ad9527-d55a-4116-8d4c-2e32cd30f35e","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e","properties":{"accountName":"clilsaux4xxbha2","apiType":"Table, + Sql","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb","creationTime":"2024-02-20T03:31:25Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"80b3112c-a12b-41d7-8603-4dcf43a4c25b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b","properties":{"accountName":"clijjriloms7uhx","apiType":"Table, + Sql","creationTime":"2024-02-20T03:13:00Z","deletionTime":"2024-02-20T03:33:20Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe","creationTime":"2024-02-20T03:13:02Z","deletionTime":"2024-02-20T03:33:20Z"}]}},{"name":"900cb5a5-1866-4221-9b52-e37730bcb15b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b","properties":{"accountName":"clirb5ez2xpcyiv","apiType":"Table, + Sql","creationTime":"2024-02-20T03:34:47Z","deletionTime":"2024-02-20T03:39:04Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d300b58f-5933-47cb-a223-9cd0403e0284","creationTime":"2024-02-20T03:34:48Z","deletionTime":"2024-02-20T03:39:04Z"}]}},{"name":"c837345d-924a-4b71-b509-4abae901f335","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335","properties":{"accountName":"cli-continuous7-gz7vxjdnc","apiType":"Sql","creationTime":"2024-02-20T19:21:37+00:00","deletionTime":"2024-02-20T19:24:42Z","oldestRestorableTime":"2024-02-13T19:22:50Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c76afe0c-73bf-4806-a185-5731f6491c28","creationTime":"2024-02-20T19:21:37Z","deletionTime":"2024-02-20T19:24:42Z"}]}},{"name":"75f81175-02ad-40b9-ab07-5845713706c7","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7","properties":{"accountName":"cli-periodic-hhwfqvddlh2d","apiType":"Sql","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z","oldestRestorableTime":"2024-02-20T19:42:55Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"607d85be-cfd3-4997-8e67-f7b94a0b7213","creationTime":"2024-02-20T19:42:55Z","deletionTime":"2024-02-20T19:45:12Z"}]}},{"name":"7637821d-8340-4580-84ed-a63374bd36a6","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6","properties":{"accountName":"cli-systemid-nggmjxyxkvuo-restored","apiType":"Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"74221f69-1b7f-4ce0-8921-00aea6060867","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"391fa770-1f93-463c-b46c-5098587a8ece","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece","properties":{"accountName":"cli-systemid-nggmjxyxkvuo","apiType":"Sql","creationTime":"2024-02-20T19:22:54+00:00","deletionTime":"2024-02-20T19:46:12Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"0bf2805b-b52e-495d-92ec-55603a35fbdb","creationTime":"2024-02-20T19:22:55Z","deletionTime":"2024-02-20T19:46:12Z"}]}},{"name":"a4ae378e-dd91-492f-be08-c60787130078","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078","properties":{"accountName":"cli-continuous7-c3nhu7yb2","apiType":"Sql","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z","oldestRestorableTime":"2024-02-13T19:49:06Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9cfc3590-0a4e-432d-874e-7b6fd8708efd","creationTime":"2024-02-20T19:46:38Z","deletionTime":"2024-02-20T19:49:06Z"}]}},{"name":"29588a21-52b8-4aaa-a115-fa5580ebf4f4","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4","properties":{"accountName":"clilu7knon7i4qs","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d519893b-6d31-4717-8199-b7dadd67d803","creationTime":"2024-02-20T19:44:11Z","deletionTime":"2024-02-20T19:49:22Z"}]}},{"name":"9e3aeb54-4573-4607-9a81-1f0ab77e022b","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b","properties":{"accountName":"cli-systemid-cuqsllkzauqv-restored","apiType":"Sql","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"c2c303e6-ceef-4d85-a085-a08a6787693f","creationTime":"2024-02-20T19:52:14Z","deletionTime":"2024-02-20T19:53:05Z"}]}},{"name":"27e6fed7-27b1-4ad9-8d03-1e855836a7d2","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2","properties":{"accountName":"cli-systemid-cuqsllkzauqv","apiType":"Sql","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"9ee2f005-7f99-41ea-aaf2-20301ce827e4","creationTime":"2024-02-20T19:33:37Z","deletionTime":"2024-02-20T19:53:06Z"}]}},{"name":"954fdcd6-03e7-43fc-a32e-0d3a3484ea61","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61","properties":{"accountName":"cli-continuous30-rcadlk6d","apiType":"Sql","creationTime":"2024-02-20T19:54:40+00:00","deletionTime":"2024-02-20T19:57:26Z","oldestRestorableTime":"2024-02-13T19:57:26Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"698eb122-ec5c-4992-a049-daa56b4f1f88","creationTime":"2024-02-20T19:54:40Z","deletionTime":"2024-02-20T19:57:26Z"}]}},{"name":"ebd12744-8a7d-4635-b9bd-9cd9372793de","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de","properties":{"accountName":"cligwvihpzcocvn","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:01:16Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d3991865-4f04-4993-a50f-f34a1e0b49bd","creationTime":"2024-02-20T20:01:17Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24","properties":{"accountName":"clinp5hfi4l3tb7","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b284224e-717a-4560-826e-69b5210627ea","creationTime":"2024-02-20T20:19:59Z","deletionTime":"2024-02-20T20:22:16Z"}]}},{"name":"3e2eea13-765d-49f5-ba10-531fd1fe244c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c","properties":{"accountName":"clixkmi3ooqh3nk","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:37:41Z","deletionTime":"2024-02-20T20:42:31Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6483d5f3-1a2e-420f-9473-ac317ca12cac","creationTime":"2024-02-20T20:37:42Z","deletionTime":"2024-02-20T20:42:31Z"}]}},{"name":"78338734-9c8e-4d84-b318-4d74bad6b567","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567","properties":{"accountName":"clivx5srkbutwvg","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:22:52Z","deletionTime":"2024-02-20T20:43:23Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d21997c4-cb81-47f1-be56-6186b1e57b78","creationTime":"2024-02-20T20:22:53Z","deletionTime":"2024-02-20T20:43:23Z"}]}},{"name":"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871","properties":{"accountName":"cliqsza5dr6t72o","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"41cd63c4-f9c6-4e31-99d0-7e6665b30f53","creationTime":"2024-02-20T20:41:38Z","deletionTime":"2024-02-20T20:43:25Z"}]}},{"name":"dedf8158-0761-42d9-ac78-e06527179762","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762","properties":{"accountName":"clixojn5dviw4wv","apiType":"Table, + Sql","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"a63c37c0-4235-43e8-977f-d3f335654f24","creationTime":"2024-02-20T21:27:52Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"72bbc1af-9a82-4008-bcb7-80221b15010a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a","properties":{"accountName":"cli7tbh7v5cthof","apiType":"Table, + Sql","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed","creationTime":"2024-02-20T21:09:18Z","deletionTime":"2024-02-20T21:29:39Z"}]}},{"name":"e13f3c07-5894-4c3a-89e8-6fdc7444550a","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a","properties":{"accountName":"clifssjdr5zslum","apiType":"Table, + Sql","creationTime":"2024-02-20T21:35:23Z","deletionTime":"2024-02-20T21:40:03Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"5e226392-8210-4291-bb15-a690999e328c","creationTime":"2024-02-20T21:35:24Z","deletionTime":"2024-02-20T21:40:03Z"}]}},{"name":"aae6a681-4068-4d77-b25f-f25a65d982a1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1","properties":{"accountName":"clilm67sumy7ikf","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"75183656-b8ea-4b11-822b-f95a9f0b21bc","creationTime":"2024-02-20T21:48:24Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"9f6044aa-b2fd-444c-b8d2-722bae2b0680","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680","properties":{"accountName":"cliwnl6bmodzncj","apiType":"Table, + Sql","creationTime":"2024-02-20T21:30:21Z","deletionTime":"2024-02-20T21:50:37Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"45beccf1-1e5d-410e-b25b-987833831a42","creationTime":"2024-02-20T21:30:22Z","deletionTime":"2024-02-20T21:50:37Z"}]}},{"name":"36d80c98-9a49-46ab-8567-78c027efde81","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81","properties":{"accountName":"clihg7tmitl634d","apiType":"Table, + Sql","creationTime":"2024-02-20T21:48:45Z","deletionTime":"2024-02-20T21:52:55Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2ac93df3-8758-48b8-80f7-352944792239","creationTime":"2024-02-20T21:48:46Z","deletionTime":"2024-02-20T21:52:55Z"}]}},{"name":"fde33839-2f49-4fdb-9d7c-0cd19ba4df24","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24","properties":{"accountName":"clibnvwzw5dz6tp","apiType":"Gremlin, + Sql","creationTime":"2023-08-18T18:48:04+00:00","deletionTime":"2024-03-02T21:59:07Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"b91af018-cbd7-4cdf-b2bc-006577d5c735","creationTime":"2023-08-18T18:48:05Z","deletionTime":"2024-03-02T21:59:07Z"}]}},{"name":"9744304c-0e1e-445d-99ed-73d4a5cacf35","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35","properties":{"accountName":"cli-continuous30-gfvhists","apiType":"Sql","creationTime":"2023-08-18T18:44:54+00:00","deletionTime":"2024-03-03T20:51:21Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"83d41889-22d9-450e-a0d1-9b3d4b52cf07","creationTime":"2023-08-18T18:44:57Z","deletionTime":"2024-03-03T20:51:21Z"}]}},{"name":"65654f5f-b777-430b-a153-99bbe12c7098","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098","properties":{"accountName":"cli-continuous30-lcpgoxr5","apiType":"Sql","creationTime":"2023-08-18T18:41:11+00:00","deletionTime":"2024-03-03T20:51:33Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"cce87812-f46f-498f-9f1c-49f156ced6e0","creationTime":"2023-08-18T18:41:12Z","deletionTime":"2024-03-03T20:51:33Z"}]}},{"name":"01599f4e-b899-4884-90d0-7ed8400522c1","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1","properties":{"accountName":"cli-continuous7-cbtuo2lcm","apiType":"Sql","creationTime":"2024-02-14T02:26:54+00:00","deletionTime":"2024-03-03T20:51:45Z","oldestRestorableTime":"2024-02-25T20:51:45Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8","creationTime":"2024-02-14T02:26:55Z","deletionTime":"2024-03-03T20:51:45Z"}]}},{"name":"3d7535af-6f8b-4570-b573-92d0cb8d198c","location":"East + US 2","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c","properties":{"accountName":"cli-continuous7-vd23riclm","apiType":"Sql","creationTime":"2023-08-18T18:44:44+00:00","deletionTime":"2024-03-03T20:51:59Z","oldestRestorableTime":"2024-02-25T20:51:59Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4","creationTime":"2023-08-18T18:44:45Z","deletionTime":"2024-03-03T20:51:59Z"}]}},{"name":"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","location":"Southeast + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e","properties":{"accountName":"dsapaliga-test-sea","apiType":"Sql","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z","oldestRestorableTime":"2024-02-09T17:31:50Z","restorableLocations":[{"locationName":"Southeast + Asia","regionalDatabaseAccountInstanceId":"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965","creationTime":"2024-02-09T17:31:50Z","deletionTime":"2024-02-10T21:17:01Z"}]}},{"name":"f4004a76-8173-4d36-9590-6090cce37a4d","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d","properties":{"accountName":"aholdtest","apiType":"MongoDB","creationTime":"2021-07-01T19:34:24+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + Europe","regionalDatabaseAccountInstanceId":"f7a9416f-25a2-45fd-902d-f3679e08854e","creationTime":"2021-07-01T19:34:25Z"}]}},{"name":"2fb0b3bf-f007-4cc9-b85a-a685edca2f56","location":"West + Europe","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/2fb0b3bf-f007-4cc9-b85a-a685edca2f56","properties":{"accountName":"dsapaliga-enabledsa-flagtest","apiType":"Sql","creationTime":"2024-02-26T23:06:57Z","deletionTime":"2024-03-02T21:55:36Z","oldestRestorableTime":"2024-02-24T21:55:36Z","restorableLocations":[]}},{"name":"40731289-e253-4bb1-bbac-6e61603029ef","location":"East + Asia","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef","properties":{"accountName":"cli3ay5berozwkv","apiType":"Table, + Sql","creationTime":"2024-02-23T01:02:13Z","deletionTime":"2024-02-23T01:04:58Z","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2a1c5293-bb15-40c4-9572-e1339885265f","creationTime":"2024-02-23T01:02:14Z","deletionTime":"2024-02-23T01:04:58Z"}]}},{"name":"3564d9f8-5f2d-4d00-a66f-5d370d970371","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371","properties":{"accountName":"targetacct112","apiType":"Sql","creationTime":"2021-03-01T10:33:41+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7","properties":{"accountName":"pitrmongotest","apiType":"MongoDB","creationTime":"2020-10-01T17:27:22+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3","properties":{"accountName":"pitrmongowithsnapshots","apiType":"MongoDB","creationTime":"2021-01-07T19:45:07+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142","properties":{"accountName":"test0319-r1","apiType":"Sql","creationTime":"2021-07-07T21:28:13Z","oldestRestorableTime":"2024-02-02T21:32: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"}]}},{"name":"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37","properties":{"accountName":"pitracctdemo2","apiType":"Sql","creationTime":"2020-08-11T02:34:23+00:00","oldestRestorableTime":"2024-02-25T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35","properties":{"accountName":"ptr-target","apiType":"Sql","creationTime":"2021-01-05T22:25:24+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74","properties":{"accountName":"pitrmongotest-restore","apiType":"MongoDB","creationTime":"2020-10-01T21:24:45+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf","properties":{"accountName":"pitrdemo1015","apiType":"Sql","creationTime":"2020-10-15T17:28:59+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245","properties":{"accountName":"pitrdemorestored1015","apiType":"Sql","creationTime":"2020-10-15T17:37:20+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995","properties":{"accountName":"subbannageeta","apiType":"Sql","creationTime":"2020-08-08T01:04:53+00:00","oldestRestorableTime":"2024-02-02T21:32: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"}]}},{"name":"afe6a47d-1fbd-41e1-992b-db16beeeae3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c","properties":{"accountName":"scottkirill","apiType":"Sql","creationTime":"2021-04-15T17:21:20+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590","properties":{"accountName":"test0319-pitr-r1","apiType":"Sql","creationTime":"2021-07-07T21:54:07+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca","properties":{"accountName":"onboardingtestaccount0124","apiType":"Sql","creationTime":"2022-01-24T20:24:43+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f","properties":{"accountName":"onboardingtestaccount0124-restored","apiType":"Sql","creationTime":"2022-01-24T20:48:23+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0cfd50fd-bb27-4b8f-9123-20b438a41cb1","creationTime":"2022-01-24T20:48:23Z"}]}},{"name":"4b754475-3b23-4485-9205-87ac1661af13","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13","properties":{"accountName":"vinhpitr30-cli","apiType":"Sql","creationTime":"2022-04-29T23:50:20+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"94b37f83-7256-4645-8cbb-72b101f7a0a1","creationTime":"2022-04-29T23:50:21Z"}]}},{"name":"f8c9b302-e047-4f58-b920-fd92e5fbaa3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d","properties":{"accountName":"ddhamothsqlpitracc","apiType":"Sql","creationTime":"2022-10-12T07:15:50+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb","properties":{"accountName":"ddhamothmongopitracc","apiType":"MongoDB","creationTime":"2022-10-12T07:18:54+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ce33f178-92b2-42a4-9b0e-5aed43d00f6d","creationTime":"2022-10-12T07:18:55Z"}]}},{"name":"3bd6c3ea-33e5-49a7-b67f-be767d228c41","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41","properties":{"accountName":"ddhamothpitrsqlacc2","apiType":"Sql","creationTime":"2022-11-15T21:30:17+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c","properties":{"accountName":"vinkumsql","apiType":"Sql","creationTime":"2022-12-06T19:35:15+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f8e2ead-8114-4853-b60f-30b6b0d8e200","creationTime":"2022-12-06T19:35:16Z"}]}},{"name":"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff","properties":{"accountName":"nikhiltestmig","apiType":"Sql","creationTime":"2022-12-15T19:23:56Z","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5","properties":{"accountName":"nikhil-multi-region-pitr","apiType":"Sql","creationTime":"2022-12-19T06:00:50+00:00","oldestRestorableTime":"2024-02-25T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"930298bb-0c4f-43ee-b7d9-365fbd6e96d5","creationTime":"2022-12-19T06:00:52Z"}]}},{"name":"04f78e7e-2737-4057-9b76-b47fa1a672e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5","properties":{"accountName":"readregionrestore-test","apiType":"Sql","creationTime":"2023-01-09T23:54:38+00:00","oldestRestorableTime":"2024-02-25T21:32:01Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b","creationTime":"2023-01-09T23:54:38Z"}]}},{"name":"4cadd2d6-8f0c-4382-951c-3d9ce509dbef","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef","properties":{"accountName":"cosmosdb-1232","apiType":"Sql","creationTime":"2023-03-28T14:32:50+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b","properties":{"accountName":"cosmosdb-1231","apiType":"Sql","creationTime":"2023-03-28T14:53:31+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5909c49b-017d-4eb7-bac9-afcbe6dea25e","creationTime":"2023-03-28T14:53:32Z"}]}},{"name":"f6d09874-07de-4a66-988b-6fa8f3fa1e28","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:55+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/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:49+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc","properties":{"accountName":"restoredaccount-5362","apiType":"Table, + Sql","creationTime":"2023-04-06T02:03:48+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/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:24+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a","properties":{"accountName":"restoredaccount-9934","apiType":"Table, + Sql","creationTime":"2023-04-06T06:40:38+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cc7821d3-2238-4041-88db-9aae6faee521","creationTime":"2023-04-06T06:40:38Z"}]}},{"name":"3ecb1118-70eb-4fef-b785-77d8b0f45e93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:30+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a","creationTime":"2023-04-06T18:27:31Z"}]}},{"name":"8a7d6175-2174-495f-9147-ade59959d7a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/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:51+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"76ee69fb-0d99-461e-94bf-0d64823293b2","creationTime":"2023-04-06T18:34:52Z"}]}},{"name":"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3","properties":{"accountName":"r-database-account-848","apiType":"Sql","creationTime":"2023-04-21T01:16:43+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753","properties":{"accountName":"r-database-account-5886","apiType":"Sql","creationTime":"2023-04-21T05:49:21+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0c58830e-7439-43f5-90a0-29eef674e0b8","creationTime":"2023-04-21T05:49:22Z"}]}},{"name":"484096b6-e9b7-48e4-aef1-13b9e000613c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c","properties":{"accountName":"pitr-mm-r1","apiType":"Sql","creationTime":"2023-06-14T21:16:32+00:00","oldestRestorableTime":"2024-02-25T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0629111e-e376-40ea-a0ab-3ad45c916859","creationTime":"2023-06-14T21:16:32Z"}]}},{"name":"045bd902-39de-4e25-92f9-4d24bcf90a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c","properties":{"accountName":"vivektest-1","apiType":"Sql","creationTime":"2023-06-15T00:16:26+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7","creationTime":"2023-06-15T00:16:26Z"}]}},{"name":"38be35a6-c721-4426-9ef6-1db94bd3f017","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017","properties":{"accountName":"vivek-acc2","apiType":"Sql","creationTime":"2023-06-15T00:18:54+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ae57c8b5-3c30-4ba6-a0d7-47131d270928","creationTime":"2023-06-15T00:18:54Z"}]}},{"name":"491f2964-7c56-4583-a6e3-55381b7233df","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df","properties":{"accountName":"acctest9433","apiType":"Sql","creationTime":"2023-06-20T23:17:30+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"484e21ec-8960-49c9-b798-c7a14c6cb892","creationTime":"2023-06-20T23:17:31Z"}]}},{"name":"40066502-4c1e-4c09-a80a-dd5ae7706966","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966","properties":{"accountName":"acctest5471","apiType":"Sql","creationTime":"2023-06-20T23:29:33+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"1e585c8c-f05a-4147-8706-e9fc6e475020","creationTime":"2023-06-20T23:29:33Z"}]}},{"name":"35f9cbfb-cdda-413a-b144-58d3693468c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8","properties":{"accountName":"acctest9742","apiType":"Sql","creationTime":"2023-06-21T00:43:58+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e","creationTime":"2023-06-21T00:43:59Z"}]}},{"name":"dd46daec-2c80-44af-a407-9ed6d846be3d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d","properties":{"accountName":"acctest8620","apiType":"Sql","creationTime":"2023-06-21T00:43:57+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"South + Central US","regionalDatabaseAccountInstanceId":"963305c1-44e8-4817-aac3-c0c294218317","creationTime":"2023-06-21T00:43:58Z"}]}},{"name":"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff","properties":{"accountName":"bb-mdb-periodic-2","apiType":"MongoDB","creationTime":"2023-07-14T23:34:56Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"434af62f-8592-44c2-9289-074e62ccf4d5","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"487ec999-d15d-4382-a24d-71f97c5e04b6","creationTime":"2023-07-14T23:34:56Z"},{"locationName":"East + US","regionalDatabaseAccountInstanceId":"55326afa-b663-453b-aa35-761bb0d5ea0c","creationTime":"2023-07-14T23:34:56Z"}]}},{"name":"941a001d-f788-4146-819c-a845208de0b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3","properties":{"accountName":"vinh-hobov1-crossregionwr","apiType":"Sql","creationTime":"2023-08-03T16:52:56+00:00","oldestRestorableTime":"2024-02-25T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2acffc9e-b686-4746-bce0-87147aa66633","creationTime":"2023-08-03T16:52:57Z"}]}},{"name":"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe","properties":{"accountName":"sql-pitr-acc","apiType":"Sql","creationTime":"2023-08-31T16:34:56+00:00","oldestRestorableTime":"2024-02-25T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3635d26f-9e96-4902-9258-d4a8a2579091","creationTime":"2023-08-31T16:34:57Z"}]}},{"name":"49b53a12-896b-4b0b-a31a-721189011a06","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06","properties":{"accountName":"test-cancel-scenario","apiType":"Sql","creationTime":"2023-09-20T16:21:47+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"dae77fa6-b43c-4781-87d2-a18e9642e348","creationTime":"2023-09-20T17:18:05Z"},{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75","creationTime":"2023-09-27T23:41:14Z"}]}},{"name":"bb34f384-a2eb-4050-b227-637331ae4045","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045","properties":{"accountName":"test-cancel-scenario-r","apiType":"Sql","creationTime":"2023-12-06T22:14:01+00:00","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US 2","regionalDatabaseAccountInstanceId":"12bc1f6c-1f2f-4682-866a-441c88364d61","creationTime":"2023-12-06T22:14:01Z"}]}},{"name":"effe52a8-692b-4efb-bdce-e7d777d5bf24","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24","properties":{"accountName":"livesnapshot-rowmode","apiType":"Sql","creationTime":"2023-12-11T23:15:02Z","oldestRestorableTime":"2024-02-25T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"06dff4b2-3a24-443b-b524-9e914bd6b56b","creationTime":"2023-12-11T23:15:02Z"}]}},{"name":"d25a59a9-8b72-4211-bbbf-bca2d943622a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a","properties":{"accountName":"livesnapshot-rowmode-config-enabled","apiType":"Sql","creationTime":"2023-12-12T00:11:51Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34308a5f-2312-4e0f-bb21-8f069a64e5ed","creationTime":"2023-12-12T00:11:51Z"}]}},{"name":"4d7bc642-8ef4-49b1-8650-16c946ee11ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4d7bc642-8ef4-49b1-8650-16c946ee11ee","properties":{"accountName":"sql-stable-ntbr","apiType":"Sql","creationTime":"2024-02-28T22:46:58+00:00","oldestRestorableTime":"2024-02-28T22:46:58+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"812cfc12-2ff0-4729-881d-4ef01f6ec1e9","creationTime":"2024-02-28T22:46:59Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"75f0e8a0-8f30-4457-a30d-4ebd033fba64","creationTime":"2024-02-28T22:49:15Z"}]}},{"name":"88315219-00f3-4d4a-9b9a-efbea3540da2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88315219-00f3-4d4a-9b9a-efbea3540da2","properties":{"accountName":"sql-stable-ntbr2","apiType":"Sql","creationTime":"2024-02-28T23:05:54+00:00","oldestRestorableTime":"2024-02-28T23:05:54+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d68a22ea-0ca6-409b-8492-4987c7b62109","creationTime":"2024-02-28T23:05:55Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a2a3ed36-1ad2-4a47-849d-32c5244a8af5","creationTime":"2024-02-28T23:08:19Z"}]}},{"name":"9ef53ff8-a80c-4da9-9b8d-69395c729b1e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ef53ff8-a80c-4da9-9b8d-69395c729b1e","properties":{"accountName":"mongodb-stable-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T00:16:09+00:00","oldestRestorableTime":"2024-02-29T00:16:09+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a84eedab-64e0-4aa3-8de6-c86eedc077a2","creationTime":"2024-02-29T00:16:10Z"}]}},{"name":"defe6250-80d8-47bf-830d-19713d4f63e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/defe6250-80d8-47bf-830d-19713d4f63e2","properties":{"accountName":"gremlin-stable-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T02:10:24+00:00","oldestRestorableTime":"2024-02-29T02:10:24+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9dfc001d-28bf-4973-ac9c-8f7545f16231","creationTime":"2024-02-29T02:10:24Z"}]}},{"name":"c0e112c9-b37b-4ee1-ae72-a727deac80ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e112c9-b37b-4ee1-ae72-a727deac80ee","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-29T03:25:35+00:00","oldestRestorableTime":"2024-02-29T03:25:35+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ef70af0-f428-4855-945b-38ab3cc67d78","creationTime":"2024-02-29T03:25:36Z"}]}},{"name":"ab38ebb9-62b3-424e-a4aa-6b83b7913a60","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab38ebb9-62b3-424e-a4aa-6b83b7913a60","properties":{"accountName":"table-stable-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T03:34:05+00:00","oldestRestorableTime":"2024-02-29T03:34:05+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd7e90a5-e49b-46e2-884f-46d41f699e9c","creationTime":"2024-02-29T03:34:06Z"}]}},{"name":"f97b7d19-ea91-49a3-a030-6c2cae36dadc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f97b7d19-ea91-49a3-a030-6c2cae36dadc","properties":{"accountName":"sql-previewe-ntbr2","apiType":"Sql","creationTime":"2024-02-29T05:54:13+00:00","oldestRestorableTime":"2024-02-29T05:54:13+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d1f91126-9e30-435a-bdf6-670316ce2cae","creationTime":"2024-02-29T05:54:14Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"371a3545-8534-4b06-8f70-a4b7c6e9a5ee","creationTime":"2024-02-29T05:56:35Z"}]}},{"name":"25cc9c2e-d5a1-4414-998c-be2dc763485f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/25cc9c2e-d5a1-4414-998c-be2dc763485f","properties":{"accountName":"mongodb-preview-ntbr2","apiType":"MongoDB","creationTime":"2024-02-29T06:55:47+00:00","oldestRestorableTime":"2024-02-29T06:55:47+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2cf3fe4-c69b-498b-a97d-a5e4bebc088f","creationTime":"2024-02-29T06:55:48Z"}]}},{"name":"0395d1c4-1883-4fc8-b169-4c92b139c096","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0395d1c4-1883-4fc8-b169-4c92b139c096","properties":{"accountName":"mongodb-preview-ntbr4","apiType":"MongoDB","creationTime":"2024-02-29T07:24:44+00:00","oldestRestorableTime":"2024-02-29T07:24:44+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"72883e5c-c8da-43b7-ba72-0f278c6fa0a2","creationTime":"2024-02-29T07:24:45Z"}]}},{"name":"b69c4152-9240-4e23-87c4-e52c28a9c794","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b69c4152-9240-4e23-87c4-e52c28a9c794","properties":{"accountName":"gremlin-preview-ntbr2","apiType":"Gremlin, + Sql","creationTime":"2024-02-29T08:29:06+00:00","oldestRestorableTime":"2024-02-29T08:29:06+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a62cbbf9-adac-4bb4-b646-37d7c292c9c5","creationTime":"2024-02-29T08:29:07Z"}]}},{"name":"df22e9a6-9109-40a5-9811-7024e8f70321","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df22e9a6-9109-40a5-9811-7024e8f70321","properties":{"accountName":"table-preview-ntbr2","apiType":"Table, + Sql","creationTime":"2024-02-29T14:49:21+00:00","oldestRestorableTime":"2024-02-29T14:49:21+00:00","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b6a1315b-7be2-4935-ad0f-d60ed4816724","creationTime":"2024-02-29T14:49:21Z"}]}},{"name":"2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a7f2317-c7a5-4243-ac9e-5e667ca74ceb","properties":{"accountName":"cli3ltqkko6rz2z","apiType":"Sql","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"56e61b31-6f8b-4085-afa1-b1ed1dae0362","creationTime":"2024-03-03T21:15:39Z"}]}},{"name":"38dc5fc8-1acb-4e31-a4fa-af771e3483c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38dc5fc8-1acb-4e31-a4fa-af771e3483c3","properties":{"accountName":"cliriblqrxtfn2v","apiType":"MongoDB","creationTime":"2024-03-03T21:15:38Z","oldestRestorableTime":"2024-03-03T21:15:38Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"185c4d22-2830-4dbf-86f7-9005a33bc70d","creationTime":"2024-03-03T21:15:38Z"}]}},{"name":"5e32859e-444e-4a94-ae8e-9ed75171d255","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e32859e-444e-4a94-ae8e-9ed75171d255","properties":{"accountName":"clivosfqnrmrjvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:19:59Z","oldestRestorableTime":"2024-03-03T21:19:59Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2042c862-9956-42f3-8199-09e0b669b62c","creationTime":"2024-03-03T21:20:00Z"}]}},{"name":"a34cf23d-167a-4cfb-81f5-092946399ccc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc","properties":{"accountName":"cli000003","apiType":"Table, + Sql","creationTime":"2024-03-03T21:21:48Z","oldestRestorableTime":"2024-03-03T21:21:48Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"135376f1-c696-49eb-80a6-5591d186efd2","creationTime":"2024-03-03T21:21:49Z"}]}},{"name":"56112447-5c36-44e3-a74c-ff90694e6577","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56112447-5c36-44e3-a74c-ff90694e6577","properties":{"accountName":"cliivuscbe3b632","apiType":"Sql","creationTime":"2024-03-03T21:21:29Z","oldestRestorableTime":"2024-03-03T21:21:29Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7322ab6e-fe6e-479e-8810-163484e9eef6","creationTime":"2024-03-03T21:21:30Z"}]}},{"name":"c7ddc326-574d-4595-a1e6-4e24f8737d56","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56","properties":{"accountName":"clis6rx55tdc4ob","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:13Z","deletionTime":"2024-02-15T01:28:01Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8ecbfe93-d8bd-4262-935b-c61f478f52cc","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:28:01Z"}]}},{"name":"198adae8-be25-4ad0-815c-1e8d2809852b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b","properties":{"accountName":"clirg22qeerqsqk","apiType":"Sql","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:28:59Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17","creationTime":"2024-02-15T01:25:08Z","deletionTime":"2024-02-15T01:28:59Z"}]}},{"name":"00c3c6a4-a706-4b84-919e-502744e70c3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a","properties":{"accountName":"cli4h4m3y4am4tk","apiType":"MongoDB","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:01Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77b1c736-299e-4838-a220-a3b510841e1d","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:01Z"}]}},{"name":"28aaec48-250a-4201-9cb6-9bbe58c7c51f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f","properties":{"accountName":"cli74nwrxr3cbd4","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:29:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"af5df050-7864-4208-8170-2254372d159b","creationTime":"2024-02-15T01:25:16Z","deletionTime":"2024-02-15T01:29:31Z"}]}},{"name":"b595a067-9b95-40aa-b03c-a2e331f77883","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883","properties":{"accountName":"cli5mc7falfehh2","apiType":"Sql","creationTime":"2024-02-15T01:29:37Z","deletionTime":"2024-02-15T01:31:51Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46c85f78-a9b7-498f-b47d-337f22a5848a","creationTime":"2024-02-15T01:29:38Z","deletionTime":"2024-02-15T01:31:51Z"}]}},{"name":"52546621-c2a8-44cd-a14a-def2f118e3bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf","properties":{"accountName":"clid7ndpm4qamdj","apiType":"MongoDB","creationTime":"2024-02-15T01:29:42Z","deletionTime":"2024-02-15T01:31:52Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"65c8a506-1718-4f46-83fb-0f5d0d29cea2","creationTime":"2024-02-15T01:29:43Z","deletionTime":"2024-02-15T01:31:52Z"}]}},{"name":"7d126aff-f451-48e5-828a-c4a5491ea383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383","properties":{"accountName":"clidha5op7t5wva","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"983a8502-debc-48b4-a050-97964cb6dfcb","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"31de06f0-66d8-46fe-bcba-c638d8bfecc8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8","properties":{"accountName":"cligh5nvso2h5ix","apiType":"MongoDB","creationTime":"2024-02-15T01:25:14Z","deletionTime":"2024-02-15T01:51:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc","creationTime":"2024-02-15T01:25:15Z","deletionTime":"2024-02-15T01:51:28Z"}]}},{"name":"2310bfec-074b-45cc-9cf4-156df0919080","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080","properties":{"accountName":"cliujh24xje476z","apiType":"Sql","creationTime":"2024-02-15T01:25:06Z","deletionTime":"2024-02-15T01:55:29Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed1fdf6-e591-470b-bb8e-ff2b056d700f","creationTime":"2024-02-15T01:25:07Z","deletionTime":"2024-02-15T01:55:29Z"}]}},{"name":"23396c5b-e87b-4501-a659-9be29771279a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a","properties":{"accountName":"clihvojp4uivbqe","apiType":"Sql","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6954b477-31cc-4fa7-8f54-7b9de86081e4","creationTime":"2024-02-15T01:52:03Z","deletionTime":"2024-02-15T01:56:18Z"}]}},{"name":"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1","properties":{"accountName":"clio6spexkxgjxo","apiType":"Table, + Sql","creationTime":"2024-02-15T01:30:32Z","deletionTime":"2024-02-15T01:58:46Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"36a51c83-e528-4e71-a715-68b417a91a8e","creationTime":"2024-02-15T01:30:33Z","deletionTime":"2024-02-15T01:58:46Z"}]}},{"name":"738ab825-12d9-4eee-8b81-f352a84711bd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd","properties":{"accountName":"clihwbjfpi4dhhr","apiType":"MongoDB","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93360189-5afa-4167-90ab-d3048027e75f","creationTime":"2024-02-15T01:52:12Z","deletionTime":"2024-02-15T02:18:54Z"}]}},{"name":"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a","properties":{"accountName":"cliifw2nazcsyn6","apiType":"Sql","creationTime":"2024-02-15T01:57:03Z","deletionTime":"2024-02-15T02:22:00Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d3666d4-ecdd-4c17-a24e-0c5e382369c4","creationTime":"2024-02-15T01:57:04Z","deletionTime":"2024-02-15T02:22:00Z"}]}},{"name":"c80808b0-915b-4c48-bda0-8126834c3ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1","properties":{"accountName":"clim5evcblingpo","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cd1b531b-570f-4cbb-ba2e-5385bb2dae05","creationTime":"2024-02-15T01:28:41Z","deletionTime":"2024-02-15T02:24:50Z"}]}},{"name":"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8","properties":{"accountName":"cli5zyhxrgr3kqz","apiType":"Sql","creationTime":"2024-02-15T19:53:35Z","deletionTime":"2024-02-15T20:00:35Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b432938c-edbc-4ac9-88dd-1f3971a8c41e","creationTime":"2024-02-15T19:53:36Z","deletionTime":"2024-02-15T20:00:35Z"}]}},{"name":"61ec2f6c-db20-4655-818f-fb89d2de5272","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272","properties":{"accountName":"clidbifmgfp5dx5","apiType":"MongoDB","creationTime":"2024-02-15T20:17:07Z","deletionTime":"2024-02-15T20:21:13Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2078d381-8f76-4c30-aec3-cead46ca53c1","creationTime":"2024-02-15T20:17:08Z","deletionTime":"2024-02-15T20:21:13Z"}]}},{"name":"2ee2cbb4-4668-4664-8764-41871f76fc97","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97","properties":{"accountName":"clikcanjgcqmjyp","apiType":"Sql","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1","creationTime":"2024-02-15T20:22:30Z","deletionTime":"2024-02-15T20:24:29Z"}]}},{"name":"e0c59bab-bd5b-4a44-9d42-f560f2cc79be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be","properties":{"accountName":"cli2k3vzzruyk2s","apiType":"MongoDB","creationTime":"2024-02-15T20:27:09Z","deletionTime":"2024-02-15T20:33:36Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19854de6-49fd-4b94-8a5f-a26d69608e72","creationTime":"2024-02-15T20:27:10Z","deletionTime":"2024-02-15T20:33:36Z"}]}},{"name":"ca4c6377-be0e-4d3e-b9b6-25e809177b82","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82","properties":{"accountName":"clip7bthrhsqhfj","apiType":"MongoDB","creationTime":"2024-02-15T20:22:54Z","deletionTime":"2024-02-15T20:48:22Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6337a143-3c06-423e-bc82-9d65a25ecaec","creationTime":"2024-02-15T20:22:55Z","deletionTime":"2024-02-15T20:48:22Z"}]}},{"name":"9c4532df-07f5-4a37-ad72-859bd0bd9444","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444","properties":{"accountName":"clin2yxat2oi22o","apiType":"MongoDB","creationTime":"2024-02-15T20:18:08Z","deletionTime":"2024-02-15T20:51:43Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64278415-80eb-4eef-9bd2-827a8bf3af9e","creationTime":"2024-02-15T20:18:09Z","deletionTime":"2024-02-15T20:51:43Z"}]}},{"name":"b617a031-84bf-45ec-b764-8fc6c3988269","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269","properties":{"accountName":"clibx2kyigfygty","apiType":"Gremlin, + Sql","creationTime":"2024-02-15T19:56:14Z","deletionTime":"2024-02-15T20:53:58Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46627d5a-0cb0-448e-a4d8-0223818f923e","creationTime":"2024-02-15T19:56:15Z","deletionTime":"2024-02-15T20:53:58Z"}]}},{"name":"51a88551-ff52-4ed7-b40f-0a168e6d7f2c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c","properties":{"accountName":"clihwdvoahv7yzn","apiType":"Sql","creationTime":"2024-02-15T20:43:31Z","deletionTime":"2024-02-15T21:04:24Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4790ec84-ba57-4aab-9723-10b59559bc3e","creationTime":"2024-02-15T20:43:32Z","deletionTime":"2024-02-15T21:04:24Z"}]}},{"name":"fc8e8191-ccf9-46da-95b0-e7358e702c0a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a","properties":{"accountName":"cli6l7q7k3xhi6u","apiType":"Sql","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"105f34c5-12e3-419f-beb2-f62f4b3620d6","creationTime":"2024-02-15T21:03:15Z","deletionTime":"2024-02-15T21:04:25Z"}]}},{"name":"ac3e4278-15a6-42ba-8d90-e91f1161659a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a","properties":{"accountName":"clin745q544bwxg","apiType":"Sql","creationTime":"2024-02-15T20:57:09Z","deletionTime":"2024-02-15T21:17:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d0ae509b-5953-4b5b-b43c-49611c59417f","creationTime":"2024-02-15T20:57:10Z","deletionTime":"2024-02-15T21:17:31Z"}]}},{"name":"40d2a59f-69cd-4893-9ce4-fd3549064228","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228","properties":{"accountName":"clifexogdzvogi3","apiType":"Sql","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4606cff-4d6b-47a7-970a-cdc7aff775ed","creationTime":"2024-02-15T21:16:41Z","deletionTime":"2024-02-15T21:17:32Z"}]}},{"name":"40fdeb29-2978-4f88-a9c4-5cf0592639e2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2","properties":{"accountName":"cli7llvrtyqbxps","apiType":"MongoDB","creationTime":"2024-02-15T23:27:41Z","deletionTime":"2024-02-16T00:00:54Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f31a2272-3257-41fe-987f-e41ced54496f","creationTime":"2024-02-15T23:27:42Z","deletionTime":"2024-02-16T00:00:54Z"}]}},{"name":"667e1780-305f-46a6-a1d5-441d56e90f53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53","properties":{"accountName":"clirudx4onrggfa","apiType":"Sql","creationTime":"2024-02-16T02:47:52Z","deletionTime":"2024-02-16T02:50:19Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fd1897d7-b737-45c4-b0de-e4e31dbf972c","creationTime":"2024-02-16T02:47:53Z","deletionTime":"2024-02-16T02:50:19Z"}]}},{"name":"d6b3939c-1bb8-475f-b671-e54d7479bf7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d","properties":{"accountName":"clizyedyqfb2ged","apiType":"Sql","creationTime":"2024-02-16T02:52:45Z","deletionTime":"2024-02-16T02:58:04Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"92a9aa2a-a560-4dbb-81ca-79c661df6ef3","creationTime":"2024-02-16T02:52:46Z","deletionTime":"2024-02-16T02:58:04Z"}]}},{"name":"b35b460a-4b3e-46ef-a61b-1a9de4e50662","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662","properties":{"accountName":"clin4r67m53au4x","apiType":"Sql","creationTime":"2024-02-16T03:00:28Z","deletionTime":"2024-02-16T03:05:47Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"190385ac-b2d0-42aa-8107-56e411d3c0fc","creationTime":"2024-02-16T03:00:29Z","deletionTime":"2024-02-16T03:05:47Z"}]}},{"name":"39c23946-2a15-4c6f-aa4f-3423c51ae8ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed","properties":{"accountName":"cli6zh5femni3no","apiType":"MongoDB","creationTime":"2024-02-16T02:57:11+00:00","deletionTime":"2024-02-16T03:33:32Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba72711d-77a7-4cbc-9246-add610a17138","creationTime":"2024-02-16T02:57:12Z","deletionTime":"2024-02-16T03:33:32Z"}]}},{"name":"3eccd802-c523-4f0e-85cf-fdd8e7768d1a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a","properties":{"accountName":"cliy34uw53vay3f","apiType":"Sql","creationTime":"2024-02-16T03:29:41+00:00","deletionTime":"2024-02-16T03:34:57Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c8c96eb-6c69-459a-a601-2c79aa7560ab","creationTime":"2024-02-16T03:29:41Z","deletionTime":"2024-02-16T03:34:57Z"}]}},{"name":"282fad4b-98f0-406d-b795-eb86eb4798dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd","properties":{"accountName":"clijdbuc64uf6o3","apiType":"MongoDB","creationTime":"2024-02-16T17:30:40Z","deletionTime":"2024-02-16T18:17:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dc674172-1609-4864-bfb8-5ae9a941b73f","creationTime":"2024-02-16T17:30:41Z","deletionTime":"2024-02-16T18:17:39Z"}]}},{"name":"047c736f-b2b1-42e1-b4a1-5200c669212b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b","properties":{"accountName":"cliz3qoojcoavhn","apiType":"MongoDB","creationTime":"2024-02-16T18:49:52Z","deletionTime":"2024-02-16T19:27:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"71c5b6b6-c80c-400b-b46d-edf105ccf120","creationTime":"2024-02-16T18:49:53Z","deletionTime":"2024-02-16T19:27:14Z"}]}},{"name":"f6052b0b-c673-4ad0-aa72-9a51ab1b56be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be","properties":{"accountName":"clivgpfcxrzxhgg","apiType":"Sql","creationTime":"2024-02-19T01:39:59Z","deletionTime":"2024-02-19T01:47:18Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e510c1c3-6356-437b-9de0-9c37a8961f7e","creationTime":"2024-02-19T01:40:00Z","deletionTime":"2024-02-19T01:47:18Z"}]}},{"name":"0899035f-45c9-482b-9d93-18fe68af7a7f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f","properties":{"accountName":"cliskr5caqzc54k","apiType":"MongoDB","creationTime":"2024-02-19T01:53:26Z","deletionTime":"2024-02-19T01:57:17Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6148114f-90fc-4fdc-89d1-1756439bfbc3","creationTime":"2024-02-19T01:53:27Z","deletionTime":"2024-02-19T01:57:17Z"}]}},{"name":"65af7282-5bd1-4cc2-94ee-dbeeb7728abe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe","properties":{"accountName":"cliiockniaesldr","apiType":"MongoDB","creationTime":"2024-02-19T02:02:59Z","deletionTime":"2024-02-19T02:08:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"391200a5-48a2-4d74-abcf-da88f0a6a931","creationTime":"2024-02-19T02:03:00Z","deletionTime":"2024-02-19T02:08:55Z"}]}},{"name":"35ad5870-ce6c-423f-85ba-7182bc0bce9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c","properties":{"accountName":"cliv5v3dgpah3uh","apiType":"Sql","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1bcb7da-8140-4a04-b602-adf13eab30cf","creationTime":"2024-02-19T02:09:49Z","deletionTime":"2024-02-19T02:11:41Z"}]}},{"name":"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01","properties":{"accountName":"clidmoqffp4gmj4","apiType":"MongoDB","creationTime":"2024-02-19T01:57:20Z","deletionTime":"2024-02-19T02:24:23Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2437236-b0d4-49b5-a666-c8b67e730fb3","creationTime":"2024-02-19T01:57:21Z","deletionTime":"2024-02-19T02:24:23Z"}]}},{"name":"0dc13f27-a857-40e7-9a8b-f46392ddb383","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383","properties":{"accountName":"cliuub2tzdy4cuc","apiType":"Sql","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db68385a-e399-4a2d-bdc2-89610d55df52","creationTime":"2024-02-19T02:19:42Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"3c8a97f5-cef3-40ff-95e8-515d7086d0f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1","properties":{"accountName":"cliu5xwnzsox5z6","apiType":"Sql","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbd19684-bd15-4b6e-b4a0-db469317c5a3","creationTime":"2024-02-19T02:39:17Z","deletionTime":"2024-02-19T02:40:08Z"}]}},{"name":"cae1bfed-7678-49e0-aaee-9996c756549c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c","properties":{"accountName":"clialkpg4bhh6vb","apiType":"MongoDB","creationTime":"2024-02-19T02:02:12Z","deletionTime":"2024-02-19T02:40:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"869c1afc-6f59-448c-ac38-3b83b36e6701","creationTime":"2024-02-19T02:02:13Z","deletionTime":"2024-02-19T02:40:39Z"}]}},{"name":"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59","properties":{"accountName":"climrkh64p5545h","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T01:42:22Z","deletionTime":"2024-02-19T02:42:11Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"99bac57c-44d7-465b-a11e-28c19ffde3b2","creationTime":"2024-02-19T01:42:23Z","deletionTime":"2024-02-19T02:42:11Z"}]}},{"name":"b041b5fc-5baa-4e1a-be9c-a124eb0d267f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f","properties":{"accountName":"clibcxefzb7t2fo","apiType":"Sql","creationTime":"2024-02-19T02:41:42Z","deletionTime":"2024-02-19T02:46:24Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cda9bfa8-867a-4818-9bc8-99145c4f93b7","creationTime":"2024-02-19T02:41:43Z","deletionTime":"2024-02-19T02:46:24Z"}]}},{"name":"be4c9885-48d0-4add-903b-e062c0327735","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735","properties":{"accountName":"cli4kmzrdf7o473","apiType":"Sql","creationTime":"2024-02-19T02:55:06Z","deletionTime":"2024-02-19T03:02:00Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"da7ee018-6d43-4dcc-9a79-a684eed1ce9d","creationTime":"2024-02-19T02:55:07Z","deletionTime":"2024-02-19T03:02:00Z"}]}},{"name":"9a996192-1c3f-4873-a5eb-515edf39cfd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5","properties":{"accountName":"cligpbhf7smwerg","apiType":"Sql","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"521c86a1-7caa-4085-b304-e7b6e00a587c","creationTime":"2024-02-19T03:01:49Z","deletionTime":"2024-02-19T03:03:05Z"}]}},{"name":"cc576724-984a-4039-ac4d-1b31066387ba","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba","properties":{"accountName":"clivrv54bxcyybg","apiType":"Sql","creationTime":"2024-02-19T02:41:48Z","deletionTime":"2024-02-19T03:03:07Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"36ad6249-7287-463f-bb19-ef440ec7c1c9","creationTime":"2024-02-19T02:41:49Z","deletionTime":"2024-02-19T03:03:07Z"}]}},{"name":"070e40a4-0f58-4c63-b75d-c171032d2f36","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36","properties":{"accountName":"clitjlqso7rhouj","apiType":"Sql","creationTime":"2024-02-19T02:59:03Z","deletionTime":"2024-02-19T03:05:40Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64d4adfd-f80b-4677-9993-1e3ce9070695","creationTime":"2024-02-19T02:59:04Z","deletionTime":"2024-02-19T03:05:40Z"}]}},{"name":"0e507992-959a-4d9b-acf4-e981d9c7a767","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767","properties":{"accountName":"cliwazt3cgut26v","apiType":"Sql","creationTime":"2024-02-19T02:52:35Z","deletionTime":"2024-02-19T03:17:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3b3b127a-acb0-4fda-8e67-45156f9d6081","creationTime":"2024-02-19T02:52:36Z","deletionTime":"2024-02-19T03:17:39Z"}]}},{"name":"a874fcb5-7739-4c86-91e2-0ed018cb6193","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193","properties":{"accountName":"clijlqawrc2gort","apiType":"Sql","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1d765844-24ce-4ad9-a27c-3566b7d602e8","creationTime":"2024-02-19T02:55:30Z","deletionTime":"2024-02-19T03:21:12Z"}]}},{"name":"8d42eb0f-4e6b-4672-95fe-f7960eb43367","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367","properties":{"accountName":"cli6cbkyzno5gun","apiType":"Sql","creationTime":"2024-02-19T03:01:35Z","deletionTime":"2024-02-19T03:32:18Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4d9385f5-1c4e-4007-9781-011aec8cb96d","creationTime":"2024-02-19T03:01:36Z","deletionTime":"2024-02-19T03:32:18Z"}]}},{"name":"d83f5f87-56f0-44ab-b864-790d55793922","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922","properties":{"accountName":"cliwpek23nna34d","apiType":"Sql","creationTime":"2024-02-19T03:06:21+00:00","deletionTime":"2024-02-19T03:47:36Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f3cb02e9-e456-41bb-811f-a560b07bb5fa","creationTime":"2024-02-19T03:06:22Z","deletionTime":"2024-02-19T03:47:36Z"}]}},{"name":"82e49c7e-c38c-4f51-93a7-68b91230945a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a","properties":{"accountName":"cliswgfastq6mg6","apiType":"Table, + Sql","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"e2e5e398-2e81-4de5-8301-7af72f923b11","creationTime":"2024-02-19T03:49:59Z","deletionTime":"2024-02-19T04:32:12Z"}]}},{"name":"5362f80c-28d5-412b-ad45-c6fed2a9d4d5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5","properties":{"accountName":"clisxgvjsiw4hky","apiType":"Sql","creationTime":"2024-02-19T15:58:39Z","deletionTime":"2024-02-19T16:05:40Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7340cc70-72e3-4e07-8371-bc198744fb07","creationTime":"2024-02-19T15:58:40Z","deletionTime":"2024-02-19T16:05:40Z"}]}},{"name":"7b4bcd00-ff2d-43b5-ac15-510f402ca663","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663","properties":{"accountName":"clijtly7x3vbjyq","apiType":"MongoDB","creationTime":"2024-02-19T16:21:32Z","deletionTime":"2024-02-19T16:26:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"87e577a3-7521-4215-87d5-4190ea8b5256","creationTime":"2024-02-19T16:21:33Z","deletionTime":"2024-02-19T16:26:14Z"}]}},{"name":"d652d4e9-36d6-4f87-9503-8986d2e3f954","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954","properties":{"accountName":"cli633fscq4hvw4","apiType":"Sql","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8555405b-1195-4ced-9ab3-7e50c6b143ab","creationTime":"2024-02-19T16:27:34Z","deletionTime":"2024-02-19T16:28:35Z"}]}},{"name":"9993acab-a1ab-413a-bd82-90b4a9363e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64","properties":{"accountName":"clip6baaxosya5m","apiType":"MongoDB","creationTime":"2024-02-19T16:33:49Z","deletionTime":"2024-02-19T16:39:45Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"55b5dca4-b700-46b1-837e-bcf7956c0356","creationTime":"2024-02-19T16:33:50Z","deletionTime":"2024-02-19T16:39:45Z"}]}},{"name":"cbdfc9b2-3ca8-433b-8048-44bda95ce144","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144","properties":{"accountName":"clia3yfzx4egmcj","apiType":"MongoDB","creationTime":"2024-02-19T16:28:04Z","deletionTime":"2024-02-19T16:52:40Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7626b378-673b-40c3-857d-9d8726de4d00","creationTime":"2024-02-19T16:28:05Z","deletionTime":"2024-02-19T16:52:40Z"}]}},{"name":"2498b504-559b-418c-a74e-69a5a2c39f3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c","properties":{"accountName":"clig3bmnd3sd3iw","apiType":"Gremlin, + Sql","creationTime":"2024-02-19T16:00:08Z","deletionTime":"2024-02-19T16:58:32Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64dcb12a-c802-4511-ad2a-b2642537d95c","creationTime":"2024-02-19T16:00:09Z","deletionTime":"2024-02-19T16:58:32Z"}]}},{"name":"bca1bcd3-85fe-46b0-a764-5fb038650348","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348","properties":{"accountName":"clif4lhve22ygfq","apiType":"MongoDB","creationTime":"2024-02-19T16:22:46Z","deletionTime":"2024-02-19T17:00:12Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc","creationTime":"2024-02-19T16:22:47Z","deletionTime":"2024-02-19T17:00:12Z"}]}},{"name":"a669f7eb-9c98-4d75-8cda-819318e6c5b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4","properties":{"accountName":"clicrpsbxrgpuyk","apiType":"Sql","creationTime":"2024-02-19T17:06:35Z","deletionTime":"2024-02-19T17:11:20Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2","creationTime":"2024-02-19T17:06:36Z","deletionTime":"2024-02-19T17:11:20Z"}]}},{"name":"66b84816-57df-4a73-80e3-cb92a027fc6b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b","properties":{"accountName":"cligumqjxdmztz6","apiType":"Sql","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c315e020-e030-499b-a390-f9ef180f5dca","creationTime":"2024-02-19T17:11:08Z","deletionTime":"2024-02-19T17:13:08Z"}]}},{"name":"c7c00e4b-af27-4998-8512-3c45490a6056","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056","properties":{"accountName":"clifc43fytxdkg3","apiType":"Sql","creationTime":"2024-02-19T16:51:38Z","deletionTime":"2024-02-19T17:13:09Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4cbd9a21-689d-41eb-a649-c3b38b440207","creationTime":"2024-02-19T16:51:39Z","deletionTime":"2024-02-19T17:13:09Z"}]}},{"name":"8c229f98-b2ff-4c9b-9a67-7c2ec6701408","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408","properties":{"accountName":"cliiquy7iouf7mz","apiType":"Sql","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987","creationTime":"2024-02-19T17:22:41Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"50943c9b-9fd2-4980-a41e-5eba50242bb3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3","properties":{"accountName":"clijkp6cuktxavn","apiType":"Sql","creationTime":"2024-02-19T17:03:12Z","deletionTime":"2024-02-19T17:24:33Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa59f049-437a-49cf-9726-19403a1184b1","creationTime":"2024-02-19T17:03:13Z","deletionTime":"2024-02-19T17:24:33Z"}]}},{"name":"5e9e94a7-20d2-45ad-9be4-933aa106006e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e","properties":{"accountName":"cliasmvbdgixpbo","apiType":"Sql","creationTime":"2024-02-19T17:17:52Z","deletionTime":"2024-02-19T17:25:47Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a295921-2478-4ee9-afaf-05002c2cd7ee","creationTime":"2024-02-19T17:17:53Z","deletionTime":"2024-02-19T17:25:47Z"}]}},{"name":"da81688d-f4ad-4717-9984-e0fd8110eb48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48","properties":{"accountName":"cli6jf3pghxfd6n","apiType":"Sql","creationTime":"2024-02-19T17:26:21Z","deletionTime":"2024-02-19T17:31:54Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f8e86523-824e-469f-bd13-394b2b0a2fd8","creationTime":"2024-02-19T17:26:22Z","deletionTime":"2024-02-19T17:31:54Z"}]}},{"name":"0c304e5f-d994-4c9d-8148-af69a1a202ac","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac","properties":{"accountName":"cli5jmgvpq62vf7","apiType":"Sql","creationTime":"2024-02-19T17:16:53Z","deletionTime":"2024-02-19T17:43:44Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5686e2ff-d855-4581-867f-c1e23737a5a9","creationTime":"2024-02-19T17:16:54Z","deletionTime":"2024-02-19T17:43:44Z"}]}},{"name":"4382d014-4616-4121-9d58-5c9cfa004e80","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80","properties":{"accountName":"cliomtujjgptqnf","apiType":"Sql","creationTime":"2024-02-19T17:18:15Z","deletionTime":"2024-02-19T17:44:51Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7ca4577c-22b6-48a0-a387-42a9de2ce101","creationTime":"2024-02-19T17:18:18Z","deletionTime":"2024-02-19T17:44:51Z"}]}},{"name":"f67098b1-2e2a-410f-a870-eecacfc59e01","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01","properties":{"accountName":"climdsmofsot6wj","apiType":"Sql","creationTime":"2024-02-19T20:56:28Z","deletionTime":"2024-02-19T21:21:50Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fc599c3f-48a2-42db-9c9c-91adc613ebd3","creationTime":"2024-02-19T20:56:29Z","deletionTime":"2024-02-19T21:21:50Z"}]}},{"name":"0f7ed52e-95d0-4bd5-b47a-f158678c4968","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968","properties":{"accountName":"cliq6dbvtqbvjdj","apiType":"Sql","creationTime":"2024-02-19T22:12:06Z","deletionTime":"2024-02-19T22:45:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70","creationTime":"2024-02-19T22:12:07Z","deletionTime":"2024-02-19T22:45:55Z"}]}},{"name":"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c","properties":{"accountName":"clihmmebeycti2o","apiType":"Sql","creationTime":"2024-02-20T01:17:36Z","deletionTime":"2024-02-20T01:24:59Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"763ab4ce-f23f-47ce-82ec-d96d0ae8c437","creationTime":"2024-02-20T01:17:37Z","deletionTime":"2024-02-20T01:24:59Z"}]}},{"name":"97c54ba7-2914-421c-8545-858bcbb5e45c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c","properties":{"accountName":"clibwp7yvij3k7z","apiType":"MongoDB","creationTime":"2024-02-20T01:27:47Z","deletionTime":"2024-02-20T01:32:26Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1227103f-1ed5-4a00-b73a-ff90be9efa48","creationTime":"2024-02-20T01:27:48Z","deletionTime":"2024-02-20T01:32:26Z"}]}},{"name":"88ef4aed-95fe-48cd-b168-c54d0245626b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b","properties":{"accountName":"clidv3gduficfk6","apiType":"MongoDB","creationTime":"2024-02-20T01:41:51Z","deletionTime":"2024-02-20T01:47:23Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1651ad75-40a1-4d6b-9ff2-4331812e7c91","creationTime":"2024-02-20T01:41:52Z","deletionTime":"2024-02-20T01:47:23Z"}]}},{"name":"3a5b24f4-b991-4105-8981-0abda8a6d415","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415","properties":{"accountName":"cliqdtle3andqv7","apiType":"Sql","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbb70ce1-89e2-4293-82a0-d55680d02df0","creationTime":"2024-02-20T01:46:54Z","deletionTime":"2024-02-20T01:47:53Z"}]}},{"name":"cafa46a0-14c7-4d4d-9845-f256940ec6c6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6","properties":{"accountName":"cliexirdoxcdnht","apiType":"MongoDB","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6af15e2e-daf1-4e6d-99b1-1a8004eeb781","creationTime":"2024-02-20T01:38:37Z","deletionTime":"2024-02-20T02:03:10Z"}]}},{"name":"4e12e649-a148-4c59-96bb-f5b6884f2110","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110","properties":{"accountName":"clijeys253yax22","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8b25abe9-477d-4279-9396-c6b75d1270cc","creationTime":"2024-02-20T01:20:01Z","deletionTime":"2024-02-20T02:17:52Z"}]}},{"name":"5ee30be0-a7bf-4992-8e7e-225d404ac165","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165","properties":{"accountName":"clirgjwiaeptcnb","apiType":"MongoDB","creationTime":"2024-02-20T01:36:53Z","deletionTime":"2024-02-20T02:19:06Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0d25bb99-5b41-4c76-9533-eecf9d00a08e","creationTime":"2024-02-20T01:36:54Z","deletionTime":"2024-02-20T02:19:06Z"}]}},{"name":"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5","properties":{"accountName":"cli2twa5wdz2sju","apiType":"Sql","creationTime":"2024-02-20T01:59:02Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81b66a85-be91-4e5c-b207-6a9e8854308a","creationTime":"2024-02-20T01:59:03Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48","properties":{"accountName":"clivs2uysmtvdre","apiType":"Sql","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"de18878d-9cbf-436a-adc9-ac06cdbf80a8","creationTime":"2024-02-20T02:18:49Z","deletionTime":"2024-02-20T02:20:42Z"}]}},{"name":"8f954ba2-c68a-4694-bf81-2773c3a04b23","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23","properties":{"accountName":"cliunazwqhuktay","apiType":"Sql","creationTime":"2024-02-20T02:22:21Z","deletionTime":"2024-02-20T02:27:00Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f3bd64-8ec6-4dec-866c-59988e5ec696","creationTime":"2024-02-20T02:22:22Z","deletionTime":"2024-02-20T02:27:00Z"}]}},{"name":"26ddd9cf-bced-4971-b4ab-88d0d8f64934","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934","properties":{"accountName":"cliz3j35acqr5cp","apiType":"Sql","creationTime":"2024-02-20T02:34:30Z","deletionTime":"2024-02-20T02:41:25Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"64330330-1702-4ceb-829e-63a835a6956e","creationTime":"2024-02-20T02:34:31Z","deletionTime":"2024-02-20T02:41:25Z"}]}},{"name":"6dc98449-789d-46ce-8b98-5258d5206559","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559","properties":{"accountName":"cli7cot37xxt2zt","apiType":"Sql","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb","creationTime":"2024-02-20T02:41:15Z","deletionTime":"2024-02-20T02:43:09Z"}]}},{"name":"81ba2d52-85be-4463-bd90-1eb9a92622be","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be","properties":{"accountName":"clivycitbiqokmd","apiType":"Sql","creationTime":"2024-02-20T02:21:26Z","deletionTime":"2024-02-20T02:43:10Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0e3a7ae-1259-41c1-9765-a60b39491704","creationTime":"2024-02-20T02:21:27Z","deletionTime":"2024-02-20T02:43:10Z"}]}},{"name":"3df3df62-3a1d-4618-9610-aaf9ef1117fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb","properties":{"accountName":"clikgv6gcoxqyz2","apiType":"Sql","creationTime":"2024-02-20T02:32:24Z","deletionTime":"2024-02-20T03:02:33Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"704a8f37-e9c3-470e-920f-2a139b636c84","creationTime":"2024-02-20T02:32:25Z","deletionTime":"2024-02-20T03:02:33Z"}]}},{"name":"770c1e30-8d6e-4812-a820-7b6b33c813fd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd","properties":{"accountName":"clifekwfip43mfj","apiType":"Sql","creationTime":"2024-02-20T02:32:38Z","deletionTime":"2024-02-20T03:05:34Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5ed2d19a-4c30-49f8-a9ae-19fb82696240","creationTime":"2024-02-20T02:32:39Z","deletionTime":"2024-02-20T03:05:34Z"}]}},{"name":"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22","properties":{"accountName":"cliajfixiublblg","apiType":"Sql","creationTime":"2024-02-20T03:07:21Z","deletionTime":"2024-02-20T03:14:13Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8e695683-0920-4e2b-8933-8c49430c3ee2","creationTime":"2024-02-20T03:07:22Z","deletionTime":"2024-02-20T03:14:13Z"}]}},{"name":"82cc8d2c-8dbf-4255-9761-40095b8e759b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b","properties":{"accountName":"cli4s3wdwoe7agv","apiType":"Sql","creationTime":"2024-02-20T02:42:58Z","deletionTime":"2024-02-20T03:14:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"998104a1-a959-4732-998d-26de57ba36f0","creationTime":"2024-02-20T02:42:59Z","deletionTime":"2024-02-20T03:14:39Z"}]}},{"name":"b40babae-37bd-4e88-8287-e60a05c3cd09","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09","properties":{"accountName":"clivzd3mpzmwnlu","apiType":"Sql","creationTime":"2024-02-20T02:40:37Z","deletionTime":"2024-02-20T03:21:30Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"44b1250e-030a-45fb-b77e-734cb863198a","creationTime":"2024-02-20T02:40:38Z","deletionTime":"2024-02-20T03:21:30Z"}]}},{"name":"1773c9e6-2820-45c6-bb6a-9c7e799596a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4","properties":{"accountName":"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz","apiType":"Sql","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z","oldestRestorableTime":"2024-02-20T03:30:48Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6f52075b-e198-428a-80ba-37bf6f52bb85","creationTime":"2024-02-20T03:30:48Z","deletionTime":"2024-02-20T03:31:40Z"}]}},{"name":"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b","properties":{"accountName":"cli3oh7vvm5kqwf","apiType":"Table, + Sql","creationTime":"2024-02-20T02:56:40+00:00","deletionTime":"2024-02-20T03:33:11Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"ade3e720-fef4-48cc-928a-ce6652353840","creationTime":"2024-02-20T02:56:41Z","deletionTime":"2024-02-20T03:33:11Z"}]}},{"name":"12c43c17-0eab-49cb-ab8d-63e81442cd08","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08","properties":{"accountName":"cli3sqx4ekwdqaw","apiType":"Sql","creationTime":"2024-02-20T19:29:19Z","deletionTime":"2024-02-20T19:36:18Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"076d08d2-d1c5-4bb8-9319-60663f87172a","creationTime":"2024-02-20T19:29:20Z","deletionTime":"2024-02-20T19:36:18Z"}]}},{"name":"b52bc5f2-7a8b-480c-8096-690dad8db528","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528","properties":{"accountName":"clio3csgdxzdybh","apiType":"Sql","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbab0a59-333f-4135-ad50-778a40719f13","creationTime":"2024-02-20T19:58:53Z","deletionTime":"2024-02-20T20:00:43Z"}]}},{"name":"db78fb7a-59df-4ecf-8129-8f696d67fdd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3","properties":{"accountName":"cliiqtewxbsqxm3","apiType":"MongoDB","creationTime":"2024-02-20T19:56:08Z","deletionTime":"2024-02-20T20:01:15Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c984acf0-473f-4581-ada7-93905abe2638","creationTime":"2024-02-20T19:56:09Z","deletionTime":"2024-02-20T20:01:15Z"}]}},{"name":"5263cbf0-1220-4648-86d8-75cfa6557c93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93","properties":{"accountName":"cli7nfvyxmbuvig","apiType":"MongoDB","creationTime":"2024-02-20T19:57:08Z","deletionTime":"2024-02-20T20:02:40Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"536a657d-79c6-426f-844f-e2fcd059f551","creationTime":"2024-02-20T19:57:09Z","deletionTime":"2024-02-20T20:02:40Z"}]}},{"name":"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361","properties":{"accountName":"cliogj6h6rhikvj","apiType":"MongoDB","creationTime":"2024-02-20T19:58:03Z","deletionTime":"2024-02-20T20:24:05Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9785b81f-6471-4b94-bf9f-d4e80bf27590","creationTime":"2024-02-20T19:58:04Z","deletionTime":"2024-02-20T20:24:05Z"}]}},{"name":"24b3b830-288c-49f4-9335-d303f1d0edd1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1","properties":{"accountName":"clil6ulf6qnlnp2","apiType":"Gremlin, + Sql","creationTime":"2024-02-20T19:31:19Z","deletionTime":"2024-02-20T20:29:16Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"056b086c-564f-433e-a567-637ee051e969","creationTime":"2024-02-20T19:31:20Z","deletionTime":"2024-02-20T20:29:16Z"}]}},{"name":"b1034911-8aef-4636-aa73-face352e3917","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917","properties":{"accountName":"clih65ddfgkeq2n","apiType":"MongoDB","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e4e190d5-2b99-47e0-8360-fdd07a442feb","creationTime":"2024-02-20T19:51:29Z","deletionTime":"2024-02-20T20:29:40Z"}]}},{"name":"f15825d5-7de0-491e-a5d2-34e1ed5b3dff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff","properties":{"accountName":"clifvuireat7njg","apiType":"Sql","creationTime":"2024-02-20T20:13:57Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"95377ea4-f58a-42d8-ac78-6e8231d07f32","creationTime":"2024-02-20T20:13:58Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"ea79eccc-d368-4bc9-bc6a-21d6452d21ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca","properties":{"accountName":"cli36ek6cmri2dd","apiType":"Sql","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b2804199-5a88-4d3c-af33-b236ba06c032","creationTime":"2024-02-20T20:34:05Z","deletionTime":"2024-02-20T20:35:03Z"}]}},{"name":"3b0a4327-3f7b-4e86-8ac9-a49962c24610","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610","properties":{"accountName":"clixc7t6ezy5p6w","apiType":"Sql","creationTime":"2024-02-20T20:35:07Z","deletionTime":"2024-02-20T20:39:47Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d113086-3edd-4524-bda6-5c56e37c72c7","creationTime":"2024-02-20T20:35:08Z","deletionTime":"2024-02-20T20:39:47Z"}]}},{"name":"fa17b5fb-26aa-4ada-8f49-a4d4251124f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1","properties":{"accountName":"clioobayeobpkn6","apiType":"Sql","creationTime":"2024-02-20T20:47:47Z","deletionTime":"2024-02-20T20:55:40Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9514373-8ea9-478d-8e1d-98a55403a127","creationTime":"2024-02-20T20:47:48Z","deletionTime":"2024-02-20T20:55:40Z"}]}},{"name":"23878217-d1e1-4c50-ac90-97e361e23261","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261","properties":{"accountName":"clihcjsttw2pomt","apiType":"Sql","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"524a7179-b3d6-408c-8434-71b04c7defc2","creationTime":"2024-02-20T20:36:41Z","deletionTime":"2024-02-20T20:57:07Z"}]}},{"name":"48dd0da5-2c28-4b94-9292-688965001e0f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f","properties":{"accountName":"clis6yc3bbbxvn7","apiType":"Sql","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a2bca9a1-637b-4e72-97de-5d5d3e8b1880","creationTime":"2024-02-20T20:56:12Z","deletionTime":"2024-02-20T20:57:08Z"}]}},{"name":"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4","properties":{"accountName":"clijahql7xznc4l","apiType":"Sql","creationTime":"2024-02-20T20:56:19Z","deletionTime":"2024-02-20T21:01:51Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5c8ebefe-982a-4298-9e12-d3f3680ed996","creationTime":"2024-02-20T20:56:20Z","deletionTime":"2024-02-20T21:01:51Z"}]}},{"name":"61c8a6da-cac3-41d2-b223-b267c7fd9691","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691","properties":{"accountName":"clir4v5jaa2i423","apiType":"Sql","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62837bc1-94f2-4e55-add1-8431ebd48531","creationTime":"2024-02-20T20:46:18Z","deletionTime":"2024-02-20T21:13:26Z"}]}},{"name":"6cc86d00-cff4-4287-9c59-3ad65480494d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d","properties":{"accountName":"clipit7avnw3ltb","apiType":"Sql","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3ed33889-9cd2-4dd3-93ef-a8d8304133a4","creationTime":"2024-02-20T20:47:50Z","deletionTime":"2024-02-20T21:24:03Z"}]}},{"name":"ab7b671e-f978-4029-b441-811282599a87","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87","properties":{"accountName":"cli76czwn2fkyyk","apiType":"Sql","creationTime":"2024-02-20T20:52:44Z","deletionTime":"2024-02-20T21:24:52Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"74d7d120-1221-4a81-9d1a-4c7c457dc32e","creationTime":"2024-02-20T20:52:45Z","deletionTime":"2024-02-20T21:24:52Z"}]}},{"name":"2fc8f481-b650-4211-a081-4336f9e227ed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed","properties":{"accountName":"cli4mxsqtvnmgj4","apiType":"Sql","creationTime":"2024-02-20T20:56:01+00:00","deletionTime":"2024-02-20T21:38:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ece59767-83bf-4523-a6b8-b73dd5793874","creationTime":"2024-02-20T20:56:02Z","deletionTime":"2024-02-20T21:38:08Z"}]}},{"name":"39a8ee7b-7acb-413e-bd85-40e1f8211689","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689","properties":{"accountName":"clichmpn7gqep6k","apiType":"Table, + Sql","creationTime":"2024-02-20T21:10:34+00:00","deletionTime":"2024-02-20T21:48:07Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d6a89619-421c-4015-bf12-57a1d8006370","creationTime":"2024-02-20T21:10:35Z","deletionTime":"2024-02-20T21:48:07Z"}]}},{"name":"c3249bc2-13ee-49f8-9de0-26d42f366381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381","properties":{"accountName":"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp","apiType":"Sql","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z","oldestRestorableTime":"2024-02-20T22:10:09Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15","creationTime":"2024-02-20T22:10:09Z","deletionTime":"2024-02-20T22:11:10Z"}]}},{"name":"001392e4-8cba-4427-ba29-ae93dc74feb5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5","properties":{"accountName":"pitr-mm-portal-test2","apiType":"Sql","creationTime":"2023-10-24T23:18:53+00:00","deletionTime":"2024-02-21T18:41:18Z","oldestRestorableTime":"2024-02-14T18:41:18Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"4985604c-3e38-4c08-bf39-f9e15ff49466","creationTime":"2023-10-24T23:18:53Z","deletionTime":"2024-02-21T18:41:18Z"}]}},{"name":"de1bd806-beb7-4586-a22f-1e75c7632740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740","properties":{"accountName":"pitr-mm-portal-testing-satellite-restored","apiType":"Sql","creationTime":"2023-10-18T00:56:04+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4b1caa33-1839-4ce2-88ac-6be41f579147","creationTime":"2023-10-18T00:56:04Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"04a6d582-e72b-42b8-8b4e-18960b5faa94","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94","properties":{"accountName":"pitr-mm-portal-test1","apiType":"Sql","creationTime":"2023-10-24T23:14:55+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"710cc0c4-a3bb-456e-b701-416fc29a99d5","creationTime":"2023-10-24T23:14:55Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"9be40655-0644-469c-a6a2-37480ea992cb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb","properties":{"accountName":"pitr-mm-portal-testing","apiType":"Sql","creationTime":"2023-10-18T00:10:00+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"ca5a2c4d-361e-4307-91f3-847a94543081","creationTime":"2023-10-18T00:29:20Z","deletionTime":"2024-02-21T18:41:19Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"faa5b994-df43-413d-b090-7b2a6b52cbdd","creationTime":"2023-10-18T00:10:00Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"6540f58f-2272-4e9f-8567-64dca0f9359d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d","properties":{"accountName":"pitr-mm-portal-test3","apiType":"Sql","creationTime":"2023-10-24T23:17:53+00:00","deletionTime":"2024-02-21T18:41:19Z","oldestRestorableTime":"2024-02-14T18:41:19Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b01b359d-b489-4481-bb12-9bf4b7220c2e","creationTime":"2023-10-24T23:17:53Z","deletionTime":"2024-02-21T18:41:19Z"}]}},{"name":"f6e5fa9e-f027-430d-abcb-10607d194c37","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37","properties":{"accountName":"clicvt7gsiyjcn3","apiType":"Sql","creationTime":"2024-02-23T02:09:21Z","deletionTime":"2024-02-23T02:35:48Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"a59db63d-98e6-4c61-9bd9-f04cd40d9f69","creationTime":"2024-02-23T02:09:22Z","deletionTime":"2024-02-23T02:35:48Z"}]}},{"name":"88e38f34-e144-4e77-9d20-a471c4f59841","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841","properties":{"accountName":"cliwqbuivygzdj2","apiType":"Sql","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c","creationTime":"2024-02-23T02:37:43Z","deletionTime":"2024-02-23T03:04:09Z"}]}},{"name":"5685740d-1620-46b5-bcbf-7937eb4df77d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d","properties":{"accountName":"cligwu7vupyxdaw","apiType":"Sql","creationTime":"2024-02-23T03:32:05+00:00","deletionTime":"2024-02-23T03:58:29Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"29d9f8ba-6fcf-4aa3-9475-24cc91137e15","creationTime":"2024-02-23T03:32:06Z","deletionTime":"2024-02-23T03:58:29Z"}]}},{"name":"f208fcfc-1d4e-4183-9b7d-f253b484c1d7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7","properties":{"accountName":"cliikyd6pfk46ho","apiType":"Sql","creationTime":"2024-02-23T04:18:07Z","deletionTime":"2024-02-23T04:45:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"46dea429-1081-487b-a2b0-8cf39406f230","creationTime":"2024-02-23T04:18:08Z","deletionTime":"2024-02-23T04:45:03Z"}]}},{"name":"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c","properties":{"accountName":"cliii2nfrhzzrtm","apiType":"Sql","creationTime":"2024-02-23T04:54:01Z","deletionTime":"2024-02-23T04:56:44Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"c30a1b29-6670-4f67-9baa-4db4a79e3953","creationTime":"2024-02-23T04:54:02Z","deletionTime":"2024-02-23T04:56:44Z"}]}},{"name":"4a41066f-2fe9-403a-9d98-9dded6fcbfa6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6","properties":{"accountName":"cliwapfbiws35nl","apiType":"Sql","creationTime":"2024-02-23T05:37:54Z","deletionTime":"2024-02-23T06:04:29Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"fee4fa15-7eeb-4d71-82c1-1c2f272458c6","creationTime":"2024-02-23T05:37:55Z","deletionTime":"2024-02-23T06:04:29Z"}]}},{"name":"42460fce-a5c8-4c20-ae2c-3576309e25e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"be273e9c-c93d-4a72-8932-3b24d6d5c19d","creationTime":"2024-02-23T07:33:43Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"3e3f1571-a6da-490c-8de2-74875782f419","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T07:14:04Z","deletionTime":"2024-02-23T07:35:02Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1b1d736d-b6cf-455a-8a89-c0fda048afff","creationTime":"2024-02-23T07:14:05Z","deletionTime":"2024-02-23T07:35:02Z"}]}},{"name":"ce493209-bf66-4e60-8b3e-304c138015fe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe","properties":{"accountName":"clinpc7akgqmeuu","apiType":"Sql","creationTime":"2024-02-23T08:13:25Z","deletionTime":"2024-02-23T08:39:19Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + Central US","regionalDatabaseAccountInstanceId":"b996d36f-68ce-4caa-8130-985cde24a9dc","creationTime":"2024-02-23T08:13:26Z","deletionTime":"2024-02-23T08:39:19Z"}]}},{"name":"c691e03a-a63b-46ad-8e4c-a65e736bfa21","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7401112b-1401-4040-b87e-9a034bb05f69","creationTime":"2024-02-23T08:39:29Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"fbec6741-5371-4fc5-85cc-042d83f0f7bf","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T08:22:04Z","deletionTime":"2024-02-23T08:40:42Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8a7bba05-10ba-4365-b3b0-b85748444788","creationTime":"2024-02-23T08:22:06Z","deletionTime":"2024-02-23T08:40:42Z"}]}},{"name":"da805740-6e93-49f3-9c8b-0496e04381b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77dbf20f-1799-4c26-8e20-cf42b6de57a9","creationTime":"2024-02-23T08:57:13Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"041c2f49-825f-4d50-b413-68c85f05bd5e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-23T08:42:18Z","deletionTime":"2024-02-23T08:59:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"90a1c7ba-7214-472e-8f6f-fd25906ea22c","creationTime":"2024-02-23T08:42:19Z","deletionTime":"2024-02-23T08:59:08Z"}]}},{"name":"287a9428-1d93-419a-b962-0fbb59b1523e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-23T08:59:46Z","deletionTime":"2024-02-23T09:01:54Z","oldestRestorableTime":"2024-02-16T09:01:54Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b51eb2ab-c977-464d-8008-f267939a753b","creationTime":"2024-02-23T08:59:47Z","deletionTime":"2024-02-23T09:01:54Z"}]}},{"name":"7f507407-ee77-455d-b6a6-515717c3cf45","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-23T09:07:23Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1ca21a6b-653f-4274-b1fa-a357b5be6ce9","creationTime":"2024-02-23T09:07:24Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"f30e0667-0440-4e0c-8170-938bbbc97e3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed75625d-b65b-4136-a36e-3e63b6730d9e","creationTime":"2024-02-23T09:24:32Z","deletionTime":"2024-02-23T09:25:28Z"}]}},{"name":"0cb9d24a-1310-48ab-a869-821e9cfca5dc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608","creationTime":"2024-02-23T09:48:58Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"c3821c51-fca1-4f3b-ad3e-9dd56969a808","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:31:23+00:00","deletionTime":"2024-02-23T09:50:53Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ff3759ef-60db-4f04-9f2d-31bacd6a75c7","creationTime":"2024-02-23T09:31:24Z","deletionTime":"2024-02-23T09:50:53Z"}]}},{"name":"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"29502405-0c71-4a03-bc92-b1d2c29ad387","creationTime":"2024-02-23T10:14:35Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"e2ffa259-3548-4782-8ed0-1cb8bc46d524","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-23T09:59:29Z","deletionTime":"2024-02-23T10:15:41Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a","creationTime":"2024-02-23T09:59:30Z","deletionTime":"2024-02-23T10:15:41Z"}]}},{"name":"8ac3c02e-b36d-45ee-b3df-5b823774e13c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b","creationTime":"2024-02-23T10:34:02Z","deletionTime":"2024-02-23T10:35:54Z"}]}},{"name":"29880c73-d7bf-43cb-8472-cc9497342015","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T10:17:18Z","deletionTime":"2024-02-23T10:35:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c4d5c886-25b4-4382-b637-f06fec45bb95","creationTime":"2024-02-23T10:17:19Z","deletionTime":"2024-02-23T10:35:55Z"}]}},{"name":"3d46fb88-728b-409f-93c9-592a2a151583","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bdfe3751-67c4-48a0-83db-2061f689f830","creationTime":"2024-02-23T10:51:15Z","deletionTime":"2024-02-23T10:53:23Z"}]}},{"name":"8bfe1dd2-1ccb-43ae-85a2-d64f02646996","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T10:36:38Z","deletionTime":"2024-02-23T10:53:24Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8840e55-22da-4ef2-a7d0-1a79b15a0775","creationTime":"2024-02-23T10:36:39Z","deletionTime":"2024-02-23T10:53:24Z"}]}},{"name":"76152770-d956-42ac-8e02-2d18422cd6dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T18:29:37Z","deletionTime":"2024-02-23T18:51:30Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d3196718-aca7-4bdc-9ced-22de7a67c3e8","creationTime":"2024-02-23T18:31:56Z","deletionTime":"2024-02-23T18:51:30Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d427a2f-a7f0-4091-8cde-531f70906285","creationTime":"2024-02-23T18:29:38Z","deletionTime":"2024-02-23T18:51:30Z"}]}},{"name":"c99de258-f5ea-475e-844d-6f2bc0280905","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"91c823f1-afd0-4249-8755-26c617f9ccf4","creationTime":"2024-02-23T19:45:02Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"c2f8de75-158c-4e37-9321-979715e0d00c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"519a4b42-b3a5-4070-a601-3c3d4e07b7f7","creationTime":"2024-02-23T19:16:25Z","deletionTime":"2024-02-23T19:46:59Z"}]}},{"name":"4bb87fca-6507-4599-8725-403847d6c6d6","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T20:52:38Z","deletionTime":"2024-02-23T20:55:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"94a43454-eabb-41e5-ac5e-682bdeb793b2","creationTime":"2024-02-23T20:54:53Z","deletionTime":"2024-02-23T20:55:31Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3","creationTime":"2024-02-23T20:52:39Z","deletionTime":"2024-02-23T20:55:31Z"}]}},{"name":"46d3f2a5-7f75-4961-94b1-bbe864182d17","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-23T21:25:39+00:00","deletionTime":"2024-02-23T21:56:44Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f34866d1-277d-47e5-a49f-b810f3eb147e","creationTime":"2024-02-23T21:27:58Z","deletionTime":"2024-02-23T21:56:44Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bf45f1bd-92c2-4361-847c-4a34f87db6f3","creationTime":"2024-02-23T21:25:40Z","deletionTime":"2024-02-23T21:56:44Z"}]}},{"name":"a3506ab0-0250-4115-be67-f52cda885412","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-23T22:38:16Z","deletionTime":"2024-02-23T23:08:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8cd0eb35-7e53-4ca9-affc-6243a0b413b8","creationTime":"2024-02-23T22:38:17Z","deletionTime":"2024-02-23T23:08:03Z"}]}},{"name":"92f2d3d0-5c7e-4327-8c08-871fd62f563f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"13e98296-3e0f-48e7-b80e-2bb0d3b7a968","creationTime":"2024-02-24T12:48:40Z","deletionTime":"2024-02-24T13:17:23Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"15980abb-1d26-42cb-86ec-8970f55d19ca","creationTime":"2024-02-24T12:46:13Z","deletionTime":"2024-02-24T13:17:23Z"}]}},{"name":"6690a55d-441c-4156-934e-f9a790109937","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T17:15:11Z","deletionTime":"2024-02-24T17:24:26Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"8f945ff0-a74b-4714-b3cc-40dba93e9983","creationTime":"2024-02-24T17:17:39Z","deletionTime":"2024-02-24T17:24:26Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4a7c412f-5795-448e-ab78-1025c2c80f7f","creationTime":"2024-02-24T17:15:12Z","deletionTime":"2024-02-24T17:24:26Z"}]}},{"name":"209fa1ae-e5ed-4811-802b-7eb7739c92fa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa","properties":{"accountName":"dbaccount60-14607","apiType":"Sql","creationTime":"2024-02-24T18:53:49Z","deletionTime":"2024-02-24T19:31:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"45ea5971-bccd-44b3-b37f-8baefd505186","creationTime":"2024-02-24T18:56:13Z","deletionTime":"2024-02-24T19:31:55Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"32f0662c-2d64-43cf-838d-507e5ce0768d","creationTime":"2024-02-24T18:53:50Z","deletionTime":"2024-02-24T19:31:55Z"}]}},{"name":"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-24T20:26:45Z","deletionTime":"2024-02-24T20:47:05Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b","creationTime":"2024-02-24T20:26:46Z","deletionTime":"2024-02-24T20:47:05Z"}]}},{"name":"89dd9a41-bbeb-4a35-83ae-464f06bb4416","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-24T20:47:50Z","deletionTime":"2024-02-24T21:19:38Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1c4cb7cc-8c21-4bf0-909a-45458398a39f","creationTime":"2024-02-24T20:47:51Z","deletionTime":"2024-02-24T21:19:38Z"}]}},{"name":"66f684a2-5207-4df5-ba19-a8e94ad97bf4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T21:19:01+00:00","deletionTime":"2024-02-24T21:49:46Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d","creationTime":"2024-02-24T21:21:21Z","deletionTime":"2024-02-24T21:49:46Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"82674ec4-bc70-4b0c-bb27-6348f67df4f9","creationTime":"2024-02-24T21:19:02Z","deletionTime":"2024-02-24T21:49:46Z"}]}},{"name":"3b38a309-8ecc-482c-a6d1-bab39dc95394","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-24T21:50:27Z","deletionTime":"2024-02-24T22:19:37Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5e040d33-a2d8-4db4-91d8-8ace6e5b399c","creationTime":"2024-02-24T21:50:28Z","deletionTime":"2024-02-24T22:19:37Z"}]}},{"name":"908b25bb-44ba-4ab6-9cda-53c79706cc00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00","properties":{"accountName":"dbaccount69-14607ntbr","apiType":"Sql","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"d2df75de-4e8a-4aba-a579-970e2b5a1ff5","creationTime":"2024-02-24T22:15:56Z","deletionTime":"2024-02-24T22:58:03Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0b37c863-e0a4-4bed-86cf-72b9bf237cd2","creationTime":"2024-02-24T22:13:29Z","deletionTime":"2024-02-24T22:58:03Z"}]}},{"name":"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49","creationTime":"2024-02-24T23:21:06Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"ec9683a8-dcb1-458b-bcf1-8f292c9552c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-24T23:04:24Z","deletionTime":"2024-02-24T23:21:58Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f713f0bd-0cbf-448f-b37b-9d57a16afde4","creationTime":"2024-02-24T23:04:25Z","deletionTime":"2024-02-24T23:21:58Z"}]}},{"name":"667a1737-b89c-4ed7-8890-751ec6ace740","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:23:42Z","deletionTime":"2024-02-24T23:31:54Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96bde16c-0ea0-4d8e-971a-081b87dfbb32","creationTime":"2024-02-24T23:23:43Z","deletionTime":"2024-02-24T23:31:54Z"}]}},{"name":"579f78e2-0459-4ff9-9313-760328f598ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-24T23:32:35Z","deletionTime":"2024-02-24T23:33:40Z","oldestRestorableTime":"2024-02-17T23:33:40Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5f87ffb7-d780-44ed-8cb7-8bdb6db61926","creationTime":"2024-02-24T23:32:36Z","deletionTime":"2024-02-24T23:33:40Z"}]}},{"name":"3e46f1bf-c951-403f-9b36-8b9897cbbf00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1966b491-1e16-416a-819b-940007e9b6a8","creationTime":"2024-02-24T23:38:08Z","deletionTime":"2024-02-24T23:42:50Z"}]}},{"name":"3dd1c2d8-0884-43c1-95b0-662bc694db2b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dd581e80-9714-445d-8f41-e17b05f41cbc","creationTime":"2024-02-24T23:56:29Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-24T23:39:38Z","deletionTime":"2024-02-24T23:58:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de","creationTime":"2024-02-24T23:39:39Z","deletionTime":"2024-02-24T23:58:31Z"}]}},{"name":"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:03:56Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"96a58d19-fb84-474f-a34a-ef090b61cd0f","creationTime":"2024-02-25T00:03:57Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"054c054a-93f8-4ce0-aa63-6b2de973c458","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"85f2d6cc-91d0-4d26-aab0-3d860cfb5717","creationTime":"2024-02-25T00:21:22Z","deletionTime":"2024-02-25T00:23:28Z"}]}},{"name":"97fa50b9-e1a5-422b-908e-efc657a613a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2","properties":{"accountName":"iar-mongodb-ntbrtest","apiType":"MongoDB","creationTime":"2024-02-25T00:31:27Z","deletionTime":"2024-02-25T00:34:40Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"59031187-1a68-460c-87d8-94266fe9873d","creationTime":"2024-02-25T00:31:28Z","deletionTime":"2024-02-25T00:34:40Z"}]}},{"name":"0799acec-f638-4f28-94c6-2aa4e7613521","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c22546ce-f1c9-410f-ac8c-fce456422960","creationTime":"2024-02-25T00:46:52Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"b1d44d2d-1503-476c-8552-4c6190b24420","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T00:31:33Z","deletionTime":"2024-02-25T00:48:48Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"276619c4-0bcc-4785-bc50-fef955303c75","creationTime":"2024-02-25T00:31:34Z","deletionTime":"2024-02-25T00:48:48Z"}]}},{"name":"849664d3-5847-4b1b-9da9-d847f3411a9d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T00:54:45Z","deletionTime":"2024-02-25T00:58:18Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21","creationTime":"2024-02-25T00:54:46Z","deletionTime":"2024-02-25T00:58:18Z"}]}},{"name":"bea1a615-5145-4c79-9665-11cc5d1e1901","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"136a1cac-279c-4b3a-9bbd-06a23d534032","creationTime":"2024-02-25T01:06:16Z","deletionTime":"2024-02-25T01:08:02Z"}]}},{"name":"110e1e07-af5f-436c-b34d-c4291ef4b0a5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T00:49:27Z","deletionTime":"2024-02-25T01:08:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"318a6cf7-299a-42b1-8645-be7cc251b605","creationTime":"2024-02-25T00:49:28Z","deletionTime":"2024-02-25T01:08:03Z"}]}},{"name":"dce95683-bb73-45f3-89a1-3fb7dceea345","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f7940ae5-229c-4eeb-93f2-776214d4d0a5","creationTime":"2024-02-25T01:24:24Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"753d4dd3-bc70-472a-9e23-66c7da2bb671","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T01:08:47Z","deletionTime":"2024-02-25T01:25:34Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"04de3041-185a-4a04-b352-1c73f9723cb8","creationTime":"2024-02-25T01:08:48Z","deletionTime":"2024-02-25T01:25:34Z"}]}},{"name":"7a6a9e2a-5daf-493e-8185-b0d9bece099c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c","properties":{"accountName":"dbaccount-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-25T02:04:14Z","deletionTime":"2024-02-25T02:08:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8895ba48-2932-4de7-874a-78c1e20e9f04","creationTime":"2024-02-25T02:04:15Z","deletionTime":"2024-02-25T02:08:14Z"}]}},{"name":"b22fae75-9692-4a09-b0c9-af781f67d379","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a8d75a50-6d03-476b-a93d-91506f53be2e","creationTime":"2024-02-25T02:13:32Z","deletionTime":"2024-02-25T02:54:31Z"}]}},{"name":"bda21194-8d2d-488b-8a57-35881f5e1546","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T03:45:28Z","deletionTime":"2024-02-25T03:47:57Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3859be45-eab0-47d9-bb73-d2a0d1cbe794","creationTime":"2024-02-25T03:45:29Z","deletionTime":"2024-02-25T03:47:57Z"}]}},{"name":"181efd18-5809-4e4a-828e-1417f7527bed","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T03:32:42+00:00","deletionTime":"2024-02-25T03:51:25Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e2e8b6c9-91f4-4af7-9199-2677c573d5cc","creationTime":"2024-02-25T03:32:43Z","deletionTime":"2024-02-25T03:51:25Z"}]}},{"name":"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T04:07:37+00:00","deletionTime":"2024-02-25T04:50:59Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"659938ae-baec-4191-9059-d5290123491d","creationTime":"2024-02-25T04:10:00Z","deletionTime":"2024-02-25T04:31:05Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8","creationTime":"2024-02-25T04:37:44Z","deletionTime":"2024-02-25T04:50:59Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272","creationTime":"2024-02-25T04:07:38Z","deletionTime":"2024-02-25T04:50:59Z"}]}},{"name":"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T04:51:38Z","deletionTime":"2024-02-25T05:15:43Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4","creationTime":"2024-02-25T04:53:56Z","deletionTime":"2024-02-25T05:15:43Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1af93a21-3af6-4eab-9f96-9d4e81340427","creationTime":"2024-02-25T04:51:39Z","deletionTime":"2024-02-25T05:15:43Z"}]}},{"name":"770e7c96-b14a-4834-a1da-eef840b9e876","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876","properties":{"accountName":"iar-gremlin-ntbrtest","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:15:39Z","deletionTime":"2024-02-25T05:19:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fb1d5548-27f5-48bf-8dfe-c6a631466f5c","creationTime":"2024-02-25T05:15:40Z","deletionTime":"2024-02-25T05:19:39Z"}]}},{"name":"cd10190b-4b4b-4a93-bb31-31ba47fb551c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:23:54Z","deletionTime":"2024-02-25T05:27:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8","creationTime":"2024-02-25T05:23:55Z","deletionTime":"2024-02-25T05:27:55Z"}]}},{"name":"ab8f89d5-48ec-4487-a1df-3b907a97d827","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T05:58:22Z","deletionTime":"2024-02-25T06:39:59Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa133f2-08bc-403b-9fa9-9f3b99a6f928","creationTime":"2024-02-25T05:58:23Z","deletionTime":"2024-02-25T06:39:59Z"}]}},{"name":"9fe79fe4-21ba-4043-9a27-6ff1c43262a2","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T07:03:28Z","deletionTime":"2024-02-25T07:29:00Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a88c37f2-088b-4953-827b-3441153690f2","creationTime":"2024-02-25T07:03:29Z","deletionTime":"2024-02-25T07:29:00Z"}]}},{"name":"f19c5932-5234-49d3-9154-5e5ff83944a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T10:03:33Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"78f6bdc6-8dd5-498e-936f-7010ef7515f4","creationTime":"2024-02-25T10:03:34Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"96a57a39-cc81-409f-9015-250b6cf639c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10eb914f-386b-48c7-94cc-fc281c3bd75d","creationTime":"2024-02-25T10:20:45Z","deletionTime":"2024-02-25T10:22:39Z"}]}},{"name":"d529956d-75e4-493c-a36c-8e7e237b793d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d","properties":{"accountName":"cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:23:22Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1509332d-5d56-4e5a-a310-00534ff85aca","creationTime":"2024-02-25T10:23:23Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106","properties":{"accountName":"restored-cosmosdb-1214","apiType":"Sql","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"12febeec-563e-4bd5-8b74-12b5e8e18455","creationTime":"2024-02-25T10:37:49Z","deletionTime":"2024-02-25T10:39:38Z"}]}},{"name":"859a4c3d-8073-4769-bee5-8f6f976d588e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e","properties":{"accountName":"ps-cosmosdb-1251","apiType":"Sql","creationTime":"2024-02-25T10:40:22Z","deletionTime":"2024-02-25T10:42:21Z","oldestRestorableTime":"2024-02-18T10:42:21Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"45b548fd-07fd-4bbe-b894-baf89af2fb10","creationTime":"2024-02-25T10:40:23Z","deletionTime":"2024-02-25T10:42:21Z"}]}},{"name":"38f0ce00-ba35-445f-8bb5-17c4c3d644dd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd","properties":{"accountName":"restored2-cosmosdb-1817","apiType":"Table, + Sql","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eeca1fed-440a-498f-b550-b8e1d055ccb5","creationTime":"2024-02-25T11:04:49Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"56ada50d-80bf-49e1-b9eb-813f77a9dc93","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93","properties":{"accountName":"cosmosdb-1817-4","apiType":"Table, + Sql","creationTime":"2024-02-25T10:47:23Z","deletionTime":"2024-02-25T11:06:48Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"330d6da3-e951-4c72-91ae-e452bdee3255","creationTime":"2024-02-25T10:47:24Z","deletionTime":"2024-02-25T11:06:48Z"}]}},{"name":"57d0dfd3-325a-4d47-9071-ccb390b65e5a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a","properties":{"accountName":"restored2-cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d9aa692f-d132-4bee-b479-fa98f5f9898a","creationTime":"2024-02-25T11:29:38Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"2e99c1f9-db79-4ee4-be0d-893a885b67c7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7","properties":{"accountName":"cosmosdb-1425-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:11:44Z","deletionTime":"2024-02-25T11:31:44Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"342189dd-23e1-45fb-9ad9-49f4b8695dc5","creationTime":"2024-02-25T11:11:45Z","deletionTime":"2024-02-25T11:31:44Z"}]}},{"name":"fdf5cdda-761a-44f0-9e08-86bd3aabefa7","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7","properties":{"accountName":"restored2-cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c2a467ef-a2c8-4160-98c7-d026555d4839","creationTime":"2024-02-25T11:55:31Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"1860d555-6a18-4d53-b6cb-b90a74c64f2e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e","properties":{"accountName":"cosmosdb-1299","apiType":"Table, + Sql","creationTime":"2024-02-25T11:39:47Z","deletionTime":"2024-02-25T11:56:34Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8f9da4ff-b54f-4b00-893d-c57ddb918509","creationTime":"2024-02-25T11:39:48Z","deletionTime":"2024-02-25T11:56:34Z"}]}},{"name":"fef1cec8-69ec-4156-9402-3b6d38911c00","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00","properties":{"accountName":"restored2-cosmosdb-12103-3","apiType":"Sql","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5d0c12c6-3354-4525-a099-1b5faf29259c","creationTime":"2024-02-25T12:15:20Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"2058bf14-3839-4c4c-9308-ac6286b9ad6a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a","properties":{"accountName":"cosmosdb-12103","apiType":"Sql","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e0362c17-3a34-438a-bf3c-b1c347a0e3c6","creationTime":"2024-02-25T11:58:08Z","deletionTime":"2024-02-25T12:17:14Z"}]}},{"name":"1a3368ae-51e0-434f-8527-8346b634dbbd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd","properties":{"accountName":"restored-cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f59982b7-acc6-4825-bb58-66c83a39ed91","creationTime":"2024-02-25T12:33:10Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b","properties":{"accountName":"cosmosdb-1316","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T12:17:58Z","deletionTime":"2024-02-25T12:35:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"03d73627-8173-43a0-92b7-e9c183047df5","creationTime":"2024-02-25T12:17:59Z","deletionTime":"2024-02-25T12:35:14Z"}]}},{"name":"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a","properties":{"accountName":"dbaccount-mongodb-ntbr4","apiType":"MongoDB","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b","creationTime":"2024-02-25T13:10:30Z","deletionTime":"2024-02-25T13:13:58Z"}]}},{"name":"a6b6e4fc-56c1-4b10-a021-0010e643285d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d","properties":{"accountName":"mongo-db00045","apiType":"MongoDB","creationTime":"2024-02-25T13:14:49Z","deletionTime":"2024-02-25T13:35:01Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9f7db1dd-b756-48ce-b88a-f5d3d5c66804","creationTime":"2024-02-25T13:14:50Z","deletionTime":"2024-02-25T13:35:01Z"}]}},{"name":"70906903-075e-473e-87c2-890c20673134","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134","properties":{"accountName":"mongo-db00048","apiType":"MongoDB","creationTime":"2024-02-25T13:35:58Z","deletionTime":"2024-02-25T14:06:35Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec","creationTime":"2024-02-25T13:35:59Z","deletionTime":"2024-02-25T14:06:35Z"}]}},{"name":"7bc6ec50-6c37-47c4-b29b-dd25ab499237","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-25T14:38:44Z","deletionTime":"2024-02-25T15:07:53Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"469ae6a8-3f92-4809-bd7e-716e3a04bcae","creationTime":"2024-02-25T14:38:45Z","deletionTime":"2024-02-25T15:07:53Z"}]}},{"name":"d4874653-7ca5-47f8-a2e7-d0a810626c40","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:09:40+00:00","deletionTime":"2024-02-25T15:52:10Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c3806f84-d537-480e-bd41-0547051043a6","creationTime":"2024-02-25T15:09:41Z","deletionTime":"2024-02-25T15:52:10Z"}]}},{"name":"9c9f3f77-22d9-4481-b10c-11ac265379c1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1","properties":{"accountName":"dbaccount60-4","apiType":"Sql","creationTime":"2024-02-25T17:43:30Z","deletionTime":"2024-02-25T18:02:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77057cf1-2440-493b-acc6-9445a2dbb17e","creationTime":"2024-02-25T17:43:31Z","deletionTime":"2024-02-25T18:02:14Z"}]}},{"name":"1475e0fd-a95c-4a26-ad07-15ee606c31a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3","properties":{"accountName":"dbaccount60-5","apiType":"Sql","creationTime":"2024-02-25T18:18:55+00:00","deletionTime":"2024-02-25T19:01:18Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"77f4fa79-8993-488c-b49f-a25906fa25a3","creationTime":"2024-02-25T18:21:18Z","deletionTime":"2024-02-25T18:42:17Z"},{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1","creationTime":"2024-02-25T18:49:07Z","deletionTime":"2024-02-25T19:01:18Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"674b2355-5889-4d68-b876-48a973958fe6","creationTime":"2024-02-25T18:18:56Z","deletionTime":"2024-02-25T19:01:18Z"}]}},{"name":"a53b3049-244c-450e-952e-53480ca583af","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-25T19:02:55Z","deletionTime":"2024-02-25T19:34:09Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"f9f01330-e89f-43a8-85b1-b30308ef0abf","creationTime":"2024-02-25T19:05:13Z","deletionTime":"2024-02-25T19:34:09Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3274d9a-809b-4609-a738-fae0537e20b4","creationTime":"2024-02-25T19:02:56Z","deletionTime":"2024-02-25T19:34:09Z"}]}},{"name":"109d24f4-0052-4b38-84a9-f11a74f8e2c9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-25T21:04:23Z","deletionTime":"2024-02-25T21:30:20Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"492048e7-84fc-4af0-a32c-1aacf8229261","creationTime":"2024-02-25T21:04:24Z","deletionTime":"2024-02-25T21:30:20Z"}]}},{"name":"0d441049-2e77-4558-b747-45ce9c9f7967","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-25T22:43:36Z","deletionTime":"2024-02-25T23:31:06Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"135e135e-545c-4f04-9192-129235c987b2","creationTime":"2024-02-25T22:48:57Z","deletionTime":"2024-02-25T23:31:06Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17","creationTime":"2024-02-25T22:43:37Z","deletionTime":"2024-02-25T23:31:06Z"}]}},{"name":"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f","properties":{"accountName":"iar-mongodb-ntbr91","apiType":"MongoDB","creationTime":"2024-02-25T16:14:42+00:00","deletionTime":"2024-02-25T23:40:07Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"743db88f-f6da-4663-b845-c560b5bb0d96","creationTime":"2024-02-25T16:14:43Z","deletionTime":"2024-02-25T23:40:07Z"}]}},{"name":"819319c9-b0c8-439a-a004-3057cff391f8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8","properties":{"accountName":"iar-mongodb-ntbr21","apiType":"MongoDB","creationTime":"2024-02-26T00:00:04Z","deletionTime":"2024-02-26T00:07:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e94bd224-28f6-4a18-8eec-796ac6d65256","creationTime":"2024-02-26T00:00:05Z","deletionTime":"2024-02-26T00:07:08Z"}]}},{"name":"32c30ead-c2fe-489b-ae40-99e83a6a2de9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T00:28:14Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ba1272fc-470b-4faa-8459-db14f248c203","creationTime":"2024-02-26T00:28:15Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"1c364956-e3d4-4714-94cf-1b680b3861cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc","properties":{"accountName":"mongodb-iar24","apiType":"MongoDB","creationTime":"2024-02-26T00:13:32Z","deletionTime":"2024-02-26T01:09:49Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1cecdfb4-0c49-4f79-9f6a-fd34169371fd","creationTime":"2024-02-26T00:13:33Z","deletionTime":"2024-02-26T01:09:49Z"}]}},{"name":"bf76ffe0-786b-4508-9e81-2abe2998bd15","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T04:21:26Z","deletionTime":"2024-02-26T05:04:25Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"97a144d3-6a75-43ce-b538-e2146e5d7141","creationTime":"2024-02-26T04:21:27Z","deletionTime":"2024-02-26T05:04:25Z"}]}},{"name":"6b0a435a-9f31-47d2-969f-21c47d222a58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-26T05:50:15Z","deletionTime":"2024-02-26T06:33:37Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c26803c-973b-4fa7-ae71-58e35d8bfd06","creationTime":"2024-02-26T05:50:16Z","deletionTime":"2024-02-26T06:33:37Z"}]}},{"name":"a5e5227b-4a83-4478-bed5-2a05e038ce58","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5e5227b-4a83-4478-bed5-2a05e038ce58","properties":{"accountName":"mongo-db00049","apiType":"MongoDB","creationTime":"2024-02-27T07:54:11Z","deletionTime":"2024-02-27T08:24:26Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f5ebf3b0-16fa-49b0-bf31-f83e0b039138","creationTime":"2024-02-27T07:54:12Z","deletionTime":"2024-02-27T08:24:26Z"}]}},{"name":"9a2ac44a-0a94-4d92-b143-29e19c2d3efe","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ac44a-0a94-4d92-b143-29e19c2d3efe","properties":{"accountName":"mongodb-iar25","apiType":"MongoDB","creationTime":"2024-02-27T08:49:14Z","deletionTime":"2024-02-27T09:33:22Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7973036e-359f-4f1f-88c9-a1c076d62c1a","creationTime":"2024-02-27T08:49:15Z","deletionTime":"2024-02-27T09:33:22Z"}]}},{"name":"967aeba5-c397-4f60-b8cb-8d24595a6a4f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/967aeba5-c397-4f60-b8cb-8d24595a6a4f","properties":{"accountName":"iar-gremlingraph-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T15:19:22+00:00","deletionTime":"2024-02-27T16:01:52Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"77fd3449-c8a2-4cf4-8372-25f21398d849","creationTime":"2024-02-27T15:19:23Z","deletionTime":"2024-02-27T16:01:52Z"}]}},{"name":"298cd6e4-11e4-4877-86c4-b0169990c5a4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/298cd6e4-11e4-4877-86c4-b0169990c5a4","properties":{"accountName":"dbaccount60-14","apiType":"Sql","creationTime":"2024-02-27T16:02:51Z","deletionTime":"2024-02-27T16:33:08Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"a899875f-9a04-4e09-a0eb-21e7458baa17","creationTime":"2024-02-27T16:05:24Z","deletionTime":"2024-02-27T16:33:08Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2f056c6f-4251-4167-9903-3eac27e24f91","creationTime":"2024-02-27T16:02:52Z","deletionTime":"2024-02-27T16:33:08Z"}]}},{"name":"437c4bec-3393-4785-87b0-6ba520f880ff","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/437c4bec-3393-4785-87b0-6ba520f880ff","properties":{"accountName":"dbaccount-table-ntbr4","apiType":"Table, + Sql","creationTime":"2024-02-27T16:47:44Z","deletionTime":"2024-02-27T17:13:35Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7c4c59c8-c036-4ecc-aeba-e4a08c502ea5","creationTime":"2024-02-27T16:47:45Z","deletionTime":"2024-02-27T17:13:35Z"}]}},{"name":"5c7399fb-c8d8-4660-9a6c-08c2449815fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7399fb-c8d8-4660-9a6c-08c2449815fb","properties":{"accountName":"dbaccount49-sql-ntbr","apiType":"Sql","creationTime":"2024-02-27T17:57:17Z","deletionTime":"2024-02-27T18:44:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"Central + US","regionalDatabaseAccountInstanceId":"853bf18e-ec98-4d2b-8dc5-5dae0389040a","creationTime":"2024-02-27T17:59:38Z","deletionTime":"2024-02-27T18:44:14Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9e40c634-e59e-4c87-b5ad-92b59f11c36c","creationTime":"2024-02-27T17:57:18Z","deletionTime":"2024-02-27T18:44:14Z"}]}},{"name":"891392fd-d274-41cd-b9f2-182ef2d2e445","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/891392fd-d274-41cd-b9f2-182ef2d2e445","properties":{"accountName":"clihk257pzbsthw","apiType":"Sql","creationTime":"2024-03-01T02:06:13Z","deletionTime":"2024-03-01T02:10:20Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d641fd8-7b95-44c1-9ffc-3e7822c41f4f","creationTime":"2024-03-01T02:06:14Z","deletionTime":"2024-03-01T02:10:20Z"}]}},{"name":"00d13684-a2e7-442f-95a2-4cb6c52bda84","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00d13684-a2e7-442f-95a2-4cb6c52bda84","properties":{"accountName":"clic4gwbscv7gd6","apiType":"Sql","creationTime":"2024-03-01T02:13:52Z","deletionTime":"2024-03-01T02:17:35Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5441ddce-a6d1-467b-8622-82c7c1e606ef","creationTime":"2024-03-01T02:13:53Z","deletionTime":"2024-03-01T02:17:35Z"}]}},{"name":"29238e6c-d8ad-4af0-9ef3-fa81c168d99b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29238e6c-d8ad-4af0-9ef3-fa81c168d99b","properties":{"accountName":"cliowdb6c6souvi","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:29:17Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"396694a5-9ab5-448f-a1a9-a080a3e38118","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:29:17Z"}]}},{"name":"4b42ff7e-aae3-4b4e-8e58-870d78e9f454","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b42ff7e-aae3-4b4e-8e58-870d78e9f454","properties":{"accountName":"cliykmntm6v7jhb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:12Z","deletionTime":"2024-03-01T02:29:46Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"46ff0ab7-779b-4970-a470-a298409eff5b","creationTime":"2024-03-01T02:26:13Z","deletionTime":"2024-03-01T02:29:46Z"}]}},{"name":"826c9e16-3b49-484a-97b5-15fef2b6d39d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/826c9e16-3b49-484a-97b5-15fef2b6d39d","properties":{"accountName":"clicadg2hlngzvx","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:29:48Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"863c8da1-66a9-4c04-a442-a12bf52e3f87","creationTime":"2024-03-01T02:26:23Z","deletionTime":"2024-03-01T02:29:48Z"}]}},{"name":"7d851f65-01ca-438d-937c-d6227f8fb5f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d851f65-01ca-438d-937c-d6227f8fb5f1","properties":{"accountName":"clif7ucvbj7e3sx","apiType":"MongoDB","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:17Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ace4f533-90e7-4ebd-979e-bc610fb09c9a","creationTime":"2024-03-01T02:26:19Z","deletionTime":"2024-03-01T02:30:17Z"}]}},{"name":"068ae248-d6c8-4689-bbd7-d66f911b5ec1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/068ae248-d6c8-4689-bbd7-d66f911b5ec1","properties":{"accountName":"climnipetqk444y","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:30:57Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d44cfded-7c5e-45ca-9cd5-895d3da6220d","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:30:57Z"}]}},{"name":"3a042513-fe3f-408a-826e-83760e38b5ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a042513-fe3f-408a-826e-83760e38b5ee","properties":{"accountName":"clixu7hi6dmxaej","apiType":"MongoDB","creationTime":"2024-03-01T02:31:20Z","deletionTime":"2024-03-01T02:33:36Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0e3b07f6-af21-4430-a59d-3f17194802e5","creationTime":"2024-03-01T02:31:21Z","deletionTime":"2024-03-01T02:33:36Z"}]}},{"name":"f3980f9e-9c37-423e-aba8-b0a192d1fad5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3980f9e-9c37-423e-aba8-b0a192d1fad5","properties":{"accountName":"cliffntubjwlmat","apiType":"Sql","creationTime":"2024-03-01T02:30:58Z","deletionTime":"2024-03-01T02:34:06Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"08613639-d6ff-42f9-89ee-e9d16f6a1d4a","creationTime":"2024-03-01T02:30:59Z","deletionTime":"2024-03-01T02:34:06Z"}]}},{"name":"e609f0cd-42eb-4dea-81eb-2a4351e14a81","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e609f0cd-42eb-4dea-81eb-2a4351e14a81","properties":{"accountName":"clijexyvlgiqdqd","apiType":"Sql","creationTime":"2024-03-01T02:26:17Z","deletionTime":"2024-03-01T02:51:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"10afa41f-aea7-4f2b-b93a-dd7137580891","creationTime":"2024-03-01T02:26:18Z","deletionTime":"2024-03-01T02:51:55Z"}]}},{"name":"9a4823a9-2bae-40fd-85c6-4a8d114fe70c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a4823a9-2bae-40fd-85c6-4a8d114fe70c","properties":{"accountName":"clihzinefqow7qs","apiType":"MongoDB","creationTime":"2024-03-01T02:26:20Z","deletionTime":"2024-03-01T02:52:53Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a9bcc32-dc80-47a4-8711-e3b0cbfa561c","creationTime":"2024-03-01T02:26:22Z","deletionTime":"2024-03-01T02:52:53Z"}]}},{"name":"d91968db-a10c-490a-be55-0c3ae5b108f1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d91968db-a10c-490a-be55-0c3ae5b108f1","properties":{"accountName":"clijwm4ohggfkcq","apiType":"Sql","creationTime":"2024-03-01T02:53:33Z","deletionTime":"2024-03-01T02:57:41Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bd46fcfc-9da7-47b4-869d-1407b91de551","creationTime":"2024-03-01T02:53:34Z","deletionTime":"2024-03-01T02:57:41Z"}]}},{"name":"0dc04b8a-3752-4775-b491-ce228c76a15a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc04b8a-3752-4775-b491-ce228c76a15a","properties":{"accountName":"cli5qwznb7o2xtk","apiType":"MongoDB","creationTime":"2024-03-01T02:53:37Z","deletionTime":"2024-03-01T03:18:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"93f1e447-9944-44c1-8b5e-a9384ee5c584","creationTime":"2024-03-01T02:53:38Z","deletionTime":"2024-03-01T03:18:55Z"}]}},{"name":"8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c1c86b7-5fb7-4288-bef0-ec0a8c4d26b3","properties":{"accountName":"cli5sacxcqke33t","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T02:30:52Z","deletionTime":"2024-03-01T03:27:09Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ed9b6e3a-45bd-419a-8405-5c76df1d152d","creationTime":"2024-03-01T02:30:53Z","deletionTime":"2024-03-01T03:27:09Z"}]}},{"name":"c0e85028-dfc8-4f38-acb6-9230bf01f3ad","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad","properties":{"accountName":"testpitr","apiType":"Sql","creationTime":"2022-12-27T20:37:00+00:00","deletionTime":"2024-03-01T20:45:30Z","oldestRestorableTime":"2024-02-23T20:45:30Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf","creationTime":"2022-12-27T20:37:02Z","deletionTime":"2024-03-01T20:45:30Z"}]}},{"name":"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b","properties":{"accountName":"test-account23","apiType":"Sql","creationTime":"2022-12-24T18:24:52+00:00","deletionTime":"2024-03-01T20:45:56Z","oldestRestorableTime":"2024-02-23T20:45:56Z","restorableLocations":[{"locationName":"North + Central US","regionalDatabaseAccountInstanceId":"bcd3a857-d005-4eb9-b83b-d50878cc58a4","creationTime":"2022-12-24T18:27:11Z","deletionTime":"2024-03-01T20:45:56Z"},{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0ecde616-a04b-4a95-8340-69ee01bff25f","creationTime":"2022-12-24T18:24:53Z","deletionTime":"2024-03-01T20:45:56Z"}]}},{"name":"2feae314-18e7-46ba-ad09-423e7bff7159","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2feae314-18e7-46ba-ad09-423e7bff7159","properties":{"accountName":"cli36j3l2d2r3nf","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T20:48:12Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c0bc8ac8-51ed-4c9d-a470-ecb05aedd6e3","creationTime":"2024-03-01T20:46:02Z","deletionTime":"2024-03-01T20:48:12Z"}]}},{"name":"98f42769-d4a3-4f30-86cf-c98aabfcd74e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f42769-d4a3-4f30-86cf-c98aabfcd74e","properties":{"accountName":"clidpiwtoxagstw","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T20:49:15Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"8aee1a34-2d56-4cbf-829e-c952fb5b2f82","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T20:49:15Z"}]}},{"name":"2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fffc79e-6dca-48c8-8e33-0f8ee6b9e978","properties":{"accountName":"cliedwevsf2sble","apiType":"MongoDB","creationTime":"2024-03-01T20:45:38Z","deletionTime":"2024-03-01T20:49:45Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"79bcfef3-e2b6-4157-9917-cc1ab96d6c00","creationTime":"2024-03-01T20:45:39Z","deletionTime":"2024-03-01T20:49:45Z"}]}},{"name":"8c328fbc-a345-4d41-8b17-9cdce97ef9fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c328fbc-a345-4d41-8b17-9cdce97ef9fb","properties":{"accountName":"cliczw3ttjknyl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:46:10Z","deletionTime":"2024-03-01T20:49:47Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2ac5b041-1ee5-4c33-b2ac-19a7245c276c","creationTime":"2024-03-01T20:46:12Z","deletionTime":"2024-03-01T20:49:47Z"}]}},{"name":"99350f26-3825-42fc-8663-4ddf274fb82d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99350f26-3825-42fc-8663-4ddf274fb82d","properties":{"accountName":"cli7tfjbws2jmbz","apiType":"Sql","creationTime":"2024-03-01T20:45:30Z","deletionTime":"2024-03-01T20:49:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"665c6bae-310a-44bd-8d7b-4f115a334049","creationTime":"2024-03-01T20:45:31Z","deletionTime":"2024-03-01T20:49:55Z"}]}},{"name":"a1f4d041-5a70-4da5-a0f2-8592897c071c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1f4d041-5a70-4da5-a0f2-8592897c071c","properties":{"accountName":"cligri2gwqnfdfj","apiType":"MongoDB","creationTime":"2024-03-01T20:50:25Z","deletionTime":"2024-03-01T20:53:45Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6351c53f-6c7d-4386-9730-b01aadbd01b6","creationTime":"2024-03-01T20:50:26Z","deletionTime":"2024-03-01T20:53:45Z"}]}},{"name":"8921ee63-c88b-4acd-bc5f-0f27e0ff918e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8921ee63-c88b-4acd-bc5f-0f27e0ff918e","properties":{"accountName":"clihulqcrtow3bl","apiType":"MongoDB","creationTime":"2024-03-01T20:45:59Z","deletionTime":"2024-03-01T21:12:24Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"4867c2ec-3c97-4910-a092-a4744746ac5c","creationTime":"2024-03-01T20:46:00Z","deletionTime":"2024-03-01T21:12:24Z"}]}},{"name":"d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0ee03b0-3340-4a2a-a9f2-b8e2e19fcecd","properties":{"accountName":"clitvde65fwpz5i","apiType":"Sql","creationTime":"2024-03-01T20:46:23Z","deletionTime":"2024-03-01T21:12:54Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c9d74084-9906-4dc3-b8c4-e21fa45b8ee3","creationTime":"2024-03-01T20:46:24Z","deletionTime":"2024-03-01T21:12:54Z"}]}},{"name":"2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2a6ceff0-b6ef-41b1-a6f7-6bc5e13dc5c8","properties":{"accountName":"cli2xudm3pfcsc3","apiType":"Sql","creationTime":"2024-03-01T21:13:56Z","deletionTime":"2024-03-01T21:23:23Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"13a63383-a902-4fca-bb13-b5f1500ae324","creationTime":"2024-03-01T21:13:57Z","deletionTime":"2024-03-01T21:23:23Z"}]}},{"name":"f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f08f2eb2-b259-44eb-b4c1-9b8dffeb5ca1","properties":{"accountName":"clitsxokdzp3zoy","apiType":"MongoDB","creationTime":"2024-03-01T21:13:33+00:00","deletionTime":"2024-03-01T21:39:25Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9752b3-6735-4a42-84fb-b5d36809efb1","creationTime":"2024-03-01T21:13:34Z","deletionTime":"2024-03-01T21:39:25Z"}]}},{"name":"b4f59b1e-69ff-4a93-bd83-44004021d983","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4f59b1e-69ff-4a93-bd83-44004021d983","properties":{"accountName":"clia6psi7drmsa2","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T20:50:12+00:00","deletionTime":"2024-03-01T21:46:42Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf75f2d7-cf5c-4cfe-89bc-c81662bfe557","creationTime":"2024-03-01T20:50:13Z","deletionTime":"2024-03-01T21:46:42Z"}]}},{"name":"a56980a8-4fe3-47bf-aee7-e2d20e66b276","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56980a8-4fe3-47bf-aee7-e2d20e66b276","properties":{"accountName":"clivbfga7drqcme","apiType":"Sql","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d570611f-9276-416b-8615-17db0b0b3ea7","creationTime":"2024-03-01T23:32:42Z","deletionTime":"2024-03-01T23:35:28Z"}]}},{"name":"23492144-a8bc-4e41-aed8-deb7e1020717","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23492144-a8bc-4e41-aed8-deb7e1020717","properties":{"accountName":"cli2us64waliikb","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:24Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bcdad94c-031f-47f5-a74f-1342b96cf139","creationTime":"2024-03-01T23:33:02Z","deletionTime":"2024-03-01T23:36:24Z"}]}},{"name":"38af9219-f3e1-47df-a7e2-b505c2ef6350","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38af9219-f3e1-47df-a7e2-b505c2ef6350","properties":{"accountName":"cliglxdk6rd7sp7","apiType":"MongoDB","creationTime":"2024-03-01T23:33:00Z","deletionTime":"2024-03-01T23:36:55Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1a9401cf-9f4e-44a9-86e2-8c50e5195f1e","creationTime":"2024-03-01T23:33:01Z","deletionTime":"2024-03-01T23:36:55Z"}]}},{"name":"6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dfb85d8-ad9d-4994-b17c-0fb77bc559cc","properties":{"accountName":"clihuxyhi6pdhvq","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"eebaf864-13e8-4686-b57f-77f5954a7571","creationTime":"2024-03-01T23:32:59Z","deletionTime":"2024-03-01T23:37:28Z"}]}},{"name":"7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b1531f7-026b-4ae7-9b1e-8ff3d4c1ad7d","properties":{"accountName":"clibwmrp25yw4xz","apiType":"Sql","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-01T23:38:04Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"724b2c1b-150f-4f07-abea-5bd823284d0a","creationTime":"2024-03-01T23:32:56Z","deletionTime":"2024-03-01T23:38:04Z"}]}},{"name":"6e290534-2ebb-4d9d-b35f-523372263126","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e290534-2ebb-4d9d-b35f-523372263126","properties":{"accountName":"clix5fokwcsxfef","apiType":"Sql","creationTime":"2024-03-01T23:37:31Z","deletionTime":"2024-03-01T23:40:51Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9487f04a-6ebe-43a3-a74c-b8abcc211816","creationTime":"2024-03-01T23:37:32Z","deletionTime":"2024-03-01T23:40:51Z"}]}},{"name":"7c853440-2d6a-4972-9a88-7df9843a9b9c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c853440-2d6a-4972-9a88-7df9843a9b9c","properties":{"accountName":"clilofoxz7dbj3l","apiType":"MongoDB","creationTime":"2024-03-01T23:38:02Z","deletionTime":"2024-03-01T23:41:16Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bf0e9f8-8802-4028-b05a-22488a093159","creationTime":"2024-03-01T23:38:03Z","deletionTime":"2024-03-01T23:41:16Z"}]}},{"name":"b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3b0b57f-8dcf-44e3-be1f-98d7e5ed30a1","properties":{"accountName":"clima6fenvj4njt","apiType":"MongoDB","creationTime":"2024-03-01T23:33:07Z","deletionTime":"2024-03-01T23:59:37Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e453ed69-5d44-4036-b2b5-9566f4661de3","creationTime":"2024-03-01T23:33:08Z","deletionTime":"2024-03-01T23:59:37Z"}]}},{"name":"9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f2d4ad7-7584-42e7-b6bb-43e7eb71c0d3","properties":{"accountName":"clin5qyihbhkffi","apiType":"Sql","creationTime":"2024-03-01T23:32:54Z","deletionTime":"2024-03-02T00:01:34Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5205ff97-e16c-4db1-b4d7-50969a34c9da","creationTime":"2024-03-01T23:32:55Z","deletionTime":"2024-03-02T00:01:34Z"}]}},{"name":"479ef650-afd2-4ab1-be5e-aeb2e74e0327","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327","properties":{"accountName":"pitr-mm-r2","apiType":"MongoDB","creationTime":"2024-02-25T00:23:02+00:00","deletionTime":"2024-03-02T00:07:57Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"7d58e1a6-2707-490e-bda3-38075517a9fd","creationTime":"2024-02-25T00:23:03Z","deletionTime":"2024-03-02T00:07:57Z"}]}},{"name":"fd9ad8ed-a57a-4386-bba3-706af26d1657","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd9ad8ed-a57a-4386-bba3-706af26d1657","properties":{"accountName":"cliewrp4zjifdc7","apiType":"Table, + Sql","creationTime":"2024-03-01T23:38:54Z","deletionTime":"2024-03-02T00:08:17Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"d51d97de-3b39-4ebd-aa96-b770aefbf8ee","creationTime":"2024-03-01T23:38:55Z","deletionTime":"2024-03-02T00:08:17Z"}]}},{"name":"95bc5bb4-258a-4270-a321-91bda857b9a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95bc5bb4-258a-4270-a321-91bda857b9a3","properties":{"accountName":"clidmkupxiqa7yf","apiType":"Sql","creationTime":"2024-03-01T23:39:55Z","deletionTime":"2024-03-02T00:11:40Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bb0412b3-e1ee-46e9-a30f-a5753066da80","creationTime":"2024-03-01T23:39:56Z","deletionTime":"2024-03-02T00:11:40Z"}]}},{"name":"f7729eab-88f1-4b01-8dea-5cbad1176fd5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f7729eab-88f1-4b01-8dea-5cbad1176fd5","properties":{"accountName":"clinqjm62pl4dzv","apiType":"MongoDB","creationTime":"2024-03-02T00:00:18Z","deletionTime":"2024-03-02T00:25:44Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"bbbbbaa5-3c13-4e15-9bdf-c823a2a7920f","creationTime":"2024-03-02T00:00:19Z","deletionTime":"2024-03-02T00:25:44Z"}]}},{"name":"e7076e23-4853-498e-ae5c-e8006e49e7fb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e7076e23-4853-498e-ae5c-e8006e49e7fb","properties":{"accountName":"cliq2ukuv3iob5m","apiType":"Gremlin, + Sql","creationTime":"2024-03-01T23:37:07Z","deletionTime":"2024-03-02T00:33:52Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"34a068f9-0991-4bde-ad67-1f11864095f5","creationTime":"2024-03-01T23:37:08Z","deletionTime":"2024-03-02T00:33:52Z"}]}},{"name":"85694cde-88a5-4c02-bc80-218a5f01bcd3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85694cde-88a5-4c02-bc80-218a5f01bcd3","properties":{"accountName":"clip54sxzkaqhid","apiType":"Sql","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"62600338-a046-486d-b40d-45767d38e897","creationTime":"2024-03-02T00:02:11Z","deletionTime":"2024-03-02T00:36:28Z"}]}},{"name":"1fff0d4b-b077-4b1e-a562-92445eaf8f46","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fff0d4b-b077-4b1e-a562-92445eaf8f46","properties":{"accountName":"cliywrqfex4l7dm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:42Z","deletionTime":"2024-03-02T19:45:11Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"694ffd77-5dac-4418-a609-570c43b78762","creationTime":"2024-03-02T19:42:43Z","deletionTime":"2024-03-02T19:45:11Z"}]}},{"name":"2cfa59e0-fc69-43b9-9357-386b85618efa","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cfa59e0-fc69-43b9-9357-386b85618efa","properties":{"accountName":"clidcrjjj6lcwcl","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T19:46:42Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"19fe7f94-4408-4271-a831-a3c69fe1ca63","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T19:46:42Z"}]}},{"name":"11f7cc99-357e-47b7-a97c-7ea8bf0184ca","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/11f7cc99-357e-47b7-a97c-7ea8bf0184ca","properties":{"accountName":"clinbwlajd6gvg3","apiType":"MongoDB","creationTime":"2024-03-02T19:42:55Z","deletionTime":"2024-03-02T19:46:46Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"835c9b4d-4f04-4940-acd8-1249b9b6970b","creationTime":"2024-03-02T19:42:56Z","deletionTime":"2024-03-02T19:46:46Z"}]}},{"name":"be5037bd-6f85-42ea-8c3f-8d39699f628b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be5037bd-6f85-42ea-8c3f-8d39699f628b","properties":{"accountName":"clihfvhowwmkhl7","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T19:47:16Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"db7804c3-4771-405f-82f4-9c4d1c0fb288","creationTime":"2024-03-02T19:42:51Z","deletionTime":"2024-03-02T19:47:16Z"}]}},{"name":"b9443d74-98df-4263-8212-77187b5210ab","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9443d74-98df-4263-8212-77187b5210ab","properties":{"accountName":"clirdjm6zgm2q6y","apiType":"Sql","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b14ab15-5ec7-44a8-a105-b799899b94a5","creationTime":"2024-03-02T19:47:19Z","deletionTime":"2024-03-02T19:49:33Z"}]}},{"name":"66022ffd-abbf-46b4-b0b0-67b6da62992a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66022ffd-abbf-46b4-b0b0-67b6da62992a","properties":{"accountName":"cliddy7rniay7rj","apiType":"MongoDB","creationTime":"2024-03-02T19:47:29Z","deletionTime":"2024-03-02T19:50:04Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"cf0b7453-c260-494d-a038-41dbd23c9c6c","creationTime":"2024-03-02T19:47:30Z","deletionTime":"2024-03-02T19:50:04Z"}]}},{"name":"7e9467e6-5475-4917-a09c-cd4844813cf1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e9467e6-5475-4917-a09c-cd4844813cf1","properties":{"accountName":"clic4jk3c66rqxd","apiType":"Sql","creationTime":"2024-03-02T19:42:35Z","deletionTime":"2024-03-02T20:07:52Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"3d0d78a9-45e3-4b7a-a9cc-4c9d8fec489e","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:07:52Z"}]}},{"name":"e43974e3-becf-4d07-907e-9048e4dce59c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43974e3-becf-4d07-907e-9048e4dce59c","properties":{"accountName":"cli246ufpqn2iix","apiType":"MongoDB","creationTime":"2024-03-02T19:42:49Z","deletionTime":"2024-03-02T20:08:26Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fa368dfa-8f27-4af9-8e91-985b12e189b2","creationTime":"2024-03-02T19:42:50Z","deletionTime":"2024-03-02T20:08:26Z"}]}},{"name":"329136bb-36c8-455a-85b7-4d76b00c14b5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/329136bb-36c8-455a-85b7-4d76b00c14b5","properties":{"accountName":"cli7hssqm7yjlrj","apiType":"Sql","creationTime":"2024-03-02T19:42:36Z","deletionTime":"2024-03-02T20:14:24Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6166ab53-b170-4aaa-ab91-d9ffc984eb7b","creationTime":"2024-03-02T19:42:37Z","deletionTime":"2024-03-02T20:14:24Z"}]}},{"name":"175f370e-5f91-4cf7-94f0-3c877bfa9f03","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/175f370e-5f91-4cf7-94f0-3c877bfa9f03","properties":{"accountName":"cliye2736oeka6g","apiType":"Sql","creationTime":"2024-03-02T20:09:33Z","deletionTime":"2024-03-02T20:14:50Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"38765b71-5b4d-405c-abc4-d19c45b6a326","creationTime":"2024-03-02T20:09:34Z","deletionTime":"2024-03-02T20:14:50Z"}]}},{"name":"48769946-5f54-4900-9b9c-1b63f8a213ee","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48769946-5f54-4900-9b9c-1b63f8a213ee","properties":{"accountName":"clik7dul5oat4n5","apiType":"Table, + Sql","creationTime":"2024-03-02T19:48:20Z","deletionTime":"2024-03-02T20:17:38Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"6299a841-86c7-4041-a629-c62d85df6743","creationTime":"2024-03-02T19:48:21Z","deletionTime":"2024-03-02T20:17:38Z"}]}},{"name":"688bfbf9-5724-4bd5-ba05-68322cc8fcd0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688bfbf9-5724-4bd5-ba05-68322cc8fcd0","properties":{"accountName":"clikoqxkcsgv2a2","apiType":"MongoDB","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9ffa38d2-1159-4ff8-afef-4a5f807979e7","creationTime":"2024-03-02T20:10:08Z","deletionTime":"2024-03-02T20:35:58Z"}]}},{"name":"0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d3fb370-cdeb-4fa4-ab3f-7b6532d7e46c","properties":{"accountName":"cli7t6yxlld7jhm","apiType":"Gremlin, + Sql","creationTime":"2024-03-02T19:46:54Z","deletionTime":"2024-03-02T20:42:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5b2ec001-1422-4c32-9810-7a2a478d1774","creationTime":"2024-03-02T19:46:55Z","deletionTime":"2024-03-02T20:42:39Z"}]}},{"name":"c8e2692f-1de8-4b6d-bab5-fc4024fbff71","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8e2692f-1de8-4b6d-bab5-fc4024fbff71","properties":{"accountName":"clie4mm4bg7akwz","apiType":"Sql","creationTime":"2024-03-02T21:35:03+00:00","deletionTime":"2024-03-02T21:37:06Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"caf3848a-52b0-4b63-96d9-7baaab0721fe","creationTime":"2024-03-02T21:35:04Z","deletionTime":"2024-03-02T21:37:06Z"}]}},{"name":"5614c4ff-7c37-4613-9211-16900369022a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5614c4ff-7c37-4613-9211-16900369022a","properties":{"accountName":"cli52uxjq6tprpk","apiType":"Sql","creationTime":"2024-03-02T21:41:38Z","deletionTime":"2024-03-02T21:44:37Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"248fee6f-8e3d-4cb4-a21e-4d66bdfe584f","creationTime":"2024-03-02T21:41:39Z","deletionTime":"2024-03-02T21:44:37Z"}]}},{"name":"9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d98c73c-c269-4ec7-af82-ac0f4f8bb5a9","properties":{"accountName":"clitry6fac2zli3","apiType":"Sql","creationTime":"2024-03-02T21:51:11Z","deletionTime":"2024-03-02T21:52:27Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5bd21088-c13f-450b-8221-92561437621c","creationTime":"2024-03-02T21:51:12Z","deletionTime":"2024-03-02T21:52:27Z"}]}},{"name":"1889280c-c7e1-489c-89c4-095686401861","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1889280c-c7e1-489c-89c4-095686401861","properties":{"accountName":"test1133","apiType":"Sql","creationTime":"2024-03-02T21:58:49Z","deletionTime":"2024-03-02T22:00:53Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c435758d-b4f4-4ef3-a677-8f60d7d3e0c0","creationTime":"2024-03-02T21:58:50Z","deletionTime":"2024-03-02T22:00:53Z"}]}},{"name":"202ba153-de09-4043-8254-62150ab3d170","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/202ba153-de09-4043-8254-62150ab3d170","properties":{"accountName":"ntbrclixyljqvlc","apiType":"Sql","creationTime":"2024-03-02T22:52:09Z","deletionTime":"2024-03-02T22:55:18Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e79212ef-7d88-4287-82c7-b049addf7dea","creationTime":"2024-03-02T22:52:10Z","deletionTime":"2024-03-02T22:55:18Z"}]}},{"name":"5e65f04a-b0f9-4c69-abff-2f06d13bea1c","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e65f04a-b0f9-4c69-abff-2f06d13bea1c","properties":{"accountName":"ntbrcliowwwwntl","apiType":"Sql","creationTime":"2024-03-02T23:29:22Z","deletionTime":"2024-03-02T23:38:24Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a09a8cb4-f8fb-478a-954e-a291f596da37","creationTime":"2024-03-02T23:29:23Z","deletionTime":"2024-03-02T23:38:24Z"}]}},{"name":"9916fd87-5c90-46ed-8944-b1d1e8a078b1","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9916fd87-5c90-46ed-8944-b1d1e8a078b1","properties":{"accountName":"ntbrclifhwngmbl","apiType":"Sql","creationTime":"2024-03-02T23:40:33Z","deletionTime":"2024-03-02T23:57:07Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"346ff65f-a753-442e-8119-51d74afb4367","creationTime":"2024-03-02T23:40:34Z","deletionTime":"2024-03-02T23:57:07Z"}]}},{"name":"5f8e2ab7-52a6-461f-9873-8b519cc46ea4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5f8e2ab7-52a6-461f-9873-8b519cc46ea4","properties":{"accountName":"ntbrclicvyymj2i","apiType":"Sql","creationTime":"2024-03-03T00:18:25Z","deletionTime":"2024-03-03T00:35:11Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fbc6a117-bc31-4009-adf7-defdc72b4441","creationTime":"2024-03-03T00:18:26Z","deletionTime":"2024-03-03T00:35:11Z"}]}},{"name":"82f9c1d1-5985-4194-aeca-cf1f1c1963a3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82f9c1d1-5985-4194-aeca-cf1f1c1963a3","properties":{"accountName":"ntbrclix7iiimdg","apiType":"Sql","creationTime":"2024-03-03T00:38:51Z","deletionTime":"2024-03-03T01:14:25Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ebce8388-1412-43a9-a6c8-72878eaff8ad","creationTime":"2024-03-03T00:38:52Z","deletionTime":"2024-03-03T01:14:25Z"}]}},{"name":"61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c63191-a4e1-4d9f-a7d3-4ad9e5103f0d","properties":{"accountName":"ntbrcli5uumtaa6","apiType":"Sql","creationTime":"2024-03-03T02:57:34Z","deletionTime":"2024-03-03T03:32:58Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"23b78756-341c-45d4-aae4-1402148b8516","creationTime":"2024-03-03T02:57:35Z","deletionTime":"2024-03-03T03:32:58Z"}]}},{"name":"a67d43a3-fe63-489c-9ab6-a33d637098d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a67d43a3-fe63-489c-9ab6-a33d637098d0","properties":{"accountName":"ntbrclin7alx3h7","apiType":"Sql","creationTime":"2024-03-03T03:41:35Z","deletionTime":"2024-03-03T04:18:00Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a04728c3-ba60-41fd-b3ce-b1cc0d638bbc","creationTime":"2024-03-03T03:41:36Z","deletionTime":"2024-03-03T04:18:00Z"}]}},{"name":"30db21a1-fdc0-434e-856d-39634c8e8f2d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/30db21a1-fdc0-434e-856d-39634c8e8f2d","properties":{"accountName":"clis2uigfxkubcu","apiType":"MongoDB","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:52:35Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"b61f3a10-291d-4954-a5f6-bb4001f6c134","creationTime":"2024-03-03T05:50:02Z","deletionTime":"2024-03-03T05:52:35Z"}]}},{"name":"e55423ca-0d86-4c74-87e6-36016a1f7fa5","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e55423ca-0d86-4c74-87e6-36016a1f7fa5","properties":{"accountName":"clipmuyp64z5rlj","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"255beea6-282f-4989-a77c-24985672f884","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:31Z"}]}},{"name":"c5c1fa01-0749-4648-8be8-da7bce9d7ced","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5c1fa01-0749-4648-8be8-da7bce9d7ced","properties":{"accountName":"clihpw2wodx4g55","apiType":"Sql","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T05:53:34Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"e1afb624-f5c1-4aae-bc33-460ac47e0fb3","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T05:53:34Z"}]}},{"name":"f039d2e6-c8e2-42d5-a8a3-52f03c029a53","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f039d2e6-c8e2-42d5-a8a3-52f03c029a53","properties":{"accountName":"cliwc7fyzdnahsy","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:50:00Z","deletionTime":"2024-03-03T05:53:35Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"c526fecc-8d89-455a-8e84-b323ddc2728a","creationTime":"2024-03-03T05:50:01Z","deletionTime":"2024-03-03T05:53:35Z"}]}},{"name":"42262701-041d-4d43-be49-ec132582314d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42262701-041d-4d43-be49-ec132582314d","properties":{"accountName":"cliy2agjiozor6j","apiType":"MongoDB","creationTime":"2024-03-03T05:50:09Z","deletionTime":"2024-03-03T05:54:13Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f37f093b-94d9-4790-8b9c-0becb2a1b0d7","creationTime":"2024-03-03T05:50:10Z","deletionTime":"2024-03-03T05:54:13Z"}]}},{"name":"14b6223d-d924-4306-b542-92bfa0b0157b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b6223d-d924-4306-b542-92bfa0b0157b","properties":{"accountName":"clijmhe2l2os2s5","apiType":"MongoDB","creationTime":"2024-03-03T05:49:58Z","deletionTime":"2024-03-03T06:16:11Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"9384532f-3a72-4332-bbff-ca5911660445","creationTime":"2024-03-03T05:49:59Z","deletionTime":"2024-03-03T06:16:11Z"}]}},{"name":"a8aeca51-d40b-4e9b-be1b-48e788ad7837","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8aeca51-d40b-4e9b-be1b-48e788ad7837","properties":{"accountName":"clilg67othg3ml5","apiType":"Sql","creationTime":"2024-03-03T05:54:10Z","deletionTime":"2024-03-03T06:19:28Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"adf86b7b-be72-433a-b436-1afb39e541fd","creationTime":"2024-03-03T05:54:11Z","deletionTime":"2024-03-03T06:19:28Z"}]}},{"name":"79c0de00-0614-458d-bfb1-070f4f5d173e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c0de00-0614-458d-bfb1-070f4f5d173e","properties":{"accountName":"clim5hsyxo6xvhs","apiType":"Sql","creationTime":"2024-03-03T05:49:49Z","deletionTime":"2024-03-03T06:19:50Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"140f13ac-9894-475e-9b7f-cc4116f9f570","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:19:50Z"}]}},{"name":"d7d585f8-0f3c-4cf6-a76a-af0509c55582","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d585f8-0f3c-4cf6-a76a-af0509c55582","properties":{"accountName":"cli2ovngunf3hdk","apiType":"MongoDB","creationTime":"2024-03-03T05:54:20Z","deletionTime":"2024-03-03T06:20:04Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"484917f7-a95b-4490-83cb-6275190d9739","creationTime":"2024-03-03T05:54:21Z","deletionTime":"2024-03-03T06:20:04Z"}]}},{"name":"85384e56-ae93-4c71-869c-8de718be67c3","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85384e56-ae93-4c71-869c-8de718be67c3","properties":{"accountName":"cliafjo2eecljwu","apiType":"Sql","creationTime":"2024-03-03T06:16:52Z","deletionTime":"2024-03-03T06:20:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"d3ea0e1f-27e4-4376-9229-df80f3fb6475","creationTime":"2024-03-03T06:16:53Z","deletionTime":"2024-03-03T06:20:31Z"}]}},{"name":"5d155ba4-9ce4-427b-a3c6-a592b6718ca8","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d155ba4-9ce4-427b-a3c6-a592b6718ca8","properties":{"accountName":"clif3m4bwnd7vao","apiType":"Sql","creationTime":"2024-03-03T06:20:38Z","deletionTime":"2024-03-03T06:23:10Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"05697cd7-1edf-489f-be66-d71216a44392","creationTime":"2024-03-03T06:20:39Z","deletionTime":"2024-03-03T06:23:10Z"}]}},{"name":"4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aab9115-10f8-4ba2-9292-ffdd0eb29f3a","properties":{"accountName":"cligz3zcuis2d3j","apiType":"MongoDB","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"28b5e30a-552e-455a-9de5-848152ac9509","creationTime":"2024-03-03T06:20:35Z","deletionTime":"2024-03-03T06:23:39Z"}]}},{"name":"3d13433c-3972-401a-bba5-4b0648722d3f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d13433c-3972-401a-bba5-4b0648722d3f","properties":{"accountName":"clizbgfbbix7o22","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:41Z","deletionTime":"2024-03-03T06:24:09Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"0fd682ac-d174-4910-b137-7a1e536145e3","creationTime":"2024-03-03T06:20:42Z","deletionTime":"2024-03-03T06:24:09Z"}]}},{"name":"9c565594-a596-4be2-8455-1dedae012381","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c565594-a596-4be2-8455-1dedae012381","properties":{"accountName":"clidf6323j72az4","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:20:57Z","deletionTime":"2024-03-03T06:24:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"aa92af6c-cc33-4258-80f3-d6f26e230281","creationTime":"2024-03-03T06:20:58Z","deletionTime":"2024-03-03T06:24:14Z"}]}},{"name":"08ee5987-4f93-42e8-a100-1fa01fcbccdc","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08ee5987-4f93-42e8-a100-1fa01fcbccdc","properties":{"accountName":"clibx7gogvlgcko","apiType":"MongoDB","creationTime":"2024-03-03T06:21:14Z","deletionTime":"2024-03-03T06:24:51Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6b4cb477-5840-4905-9238-6293719cb934","creationTime":"2024-03-03T06:21:15Z","deletionTime":"2024-03-03T06:24:51Z"}]}},{"name":"278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/278eebd7-d9f3-4db5-99f2-7d8e2bd865eb","properties":{"accountName":"cli4nvd6evi6m6i","apiType":"Table, + Sql","creationTime":"2024-03-03T05:55:52Z","deletionTime":"2024-03-03T06:25:22Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"37eefb34-7b91-4b2a-89db-f6c3dbce94f3","creationTime":"2024-03-03T05:55:54Z","deletionTime":"2024-03-03T06:25:22Z"}]}},{"name":"ef1afb3f-2e62-48ca-8848-5b0907133ecd","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ef1afb3f-2e62-48ca-8848-5b0907133ecd","properties":{"accountName":"ntbrcliw5b35vsb","apiType":"Sql","creationTime":"2024-03-03T05:49:50Z","deletionTime":"2024-03-03T06:26:20Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"6a04afc5-c7d4-4afd-82b2-e7465a7c192f","creationTime":"2024-03-03T05:49:51Z","deletionTime":"2024-03-03T06:26:20Z"}]}},{"name":"063ab513-aa2b-44b0-9ba1-676d0408c74a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/063ab513-aa2b-44b0-9ba1-676d0408c74a","properties":{"accountName":"cliertmse4npipb","apiType":"Table, + Sql","creationTime":"2024-03-03T06:26:15Z","deletionTime":"2024-03-03T06:45:34Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"East + US 2","regionalDatabaseAccountInstanceId":"2e991f15-4268-422c-a149-f415a073529c","creationTime":"2024-03-03T06:26:16Z","deletionTime":"2024-03-03T06:45:34Z"}]}},{"name":"88fffa7d-f50a-48f2-9ad9-71997f33a7d0","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88fffa7d-f50a-48f2-9ad9-71997f33a7d0","properties":{"accountName":"clixt7gdgsfr63w","apiType":"MongoDB","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"1179585f-bd1f-4bea-b304-35d108847fcf","creationTime":"2024-03-03T06:20:40Z","deletionTime":"2024-03-03T06:46:47Z"}]}},{"name":"b8d3e769-73b1-4e19-9155-741890152771","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8d3e769-73b1-4e19-9155-741890152771","properties":{"accountName":"cli73ftechb2rap","apiType":"MongoDB","creationTime":"2024-03-03T06:24:23Z","deletionTime":"2024-03-03T06:50:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"fdba8fb4-20d0-4fc9-9fc7-d0d418d839dc","creationTime":"2024-03-03T06:24:24Z","deletionTime":"2024-03-03T06:50:03Z"}]}},{"name":"816d6903-5dcd-4a18-8a19-bfc7eb3f487b","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/816d6903-5dcd-4a18-8a19-bfc7eb3f487b","properties":{"accountName":"cliybixizlsam6x","apiType":"Sql","creationTime":"2024-03-03T06:25:04Z","deletionTime":"2024-03-03T06:50:31Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"003152e0-4644-486c-a62e-2ff7fd43a1ce","creationTime":"2024-03-03T06:25:05Z","deletionTime":"2024-03-03T06:50:31Z"}]}},{"name":"90473e25-cd33-4b27-a79d-f4e1b3d6cd10","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90473e25-cd33-4b27-a79d-f4e1b3d6cd10","properties":{"accountName":"clic5r6xzpexyb5","apiType":"Sql","creationTime":"2024-03-03T06:47:47Z","deletionTime":"2024-03-03T06:50:37Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"43039f44-1035-4b96-9d6f-fcd94ec1b073","creationTime":"2024-03-03T06:47:49Z","deletionTime":"2024-03-03T06:50:37Z"}]}},{"name":"56394aa9-b346-4b40-b6e6-a32fda4c249d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56394aa9-b346-4b40-b6e6-a32fda4c249d","properties":{"accountName":"cli22ekyyygvmhw","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T05:54:18Z","deletionTime":"2024-03-03T06:51:01Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"ea108737-e5b9-46e9-a55f-a983bf1159bd","creationTime":"2024-03-03T05:54:19Z","deletionTime":"2024-03-03T06:51:01Z"}]}},{"name":"223712a5-1ccd-4727-afb6-4d0d34a6a243","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/223712a5-1ccd-4727-afb6-4d0d34a6a243","properties":{"accountName":"clipd7wivs7ufzh","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"123b0ce0-afa0-4a2a-bcac-43f4855497cd","creationTime":"2024-03-03T06:24:51Z","deletionTime":"2024-03-03T07:21:03Z"}]}},{"name":"e0dff380-0b48-4378-8473-ad62a9f0da8a","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0dff380-0b48-4378-8473-ad62a9f0da8a","properties":{"accountName":"clic6qnyyausrap","apiType":"Sql","creationTime":"2024-03-03T06:51:42Z","deletionTime":"2024-03-03T07:23:00Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"27d841b4-923a-4fc8-8a70-6a37f62bf34c","creationTime":"2024-03-03T06:51:43Z","deletionTime":"2024-03-03T07:23:00Z"}]}},{"name":"d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9bdf43c-d37b-4d46-a8bc-40ff9c19b47d","properties":{"accountName":"clilydrif3lqiy2","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:40Z","deletionTime":"2024-03-03T21:18:12Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"efd52361-71be-462d-bb01-132b1cbbe134","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:18:12Z"}]}},{"name":"7ca93ebc-928a-49ed-a10c-fa956a63f40d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ca93ebc-928a-49ed-a10c-fa956a63f40d","properties":{"accountName":"clitigtch7zke3a","apiType":"Sql","creationTime":"2024-03-03T21:15:37Z","deletionTime":"2024-03-03T21:19:43Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5a00461d-74ea-49e8-90ef-b106a5b88e4a","creationTime":"2024-03-03T21:15:38Z","deletionTime":"2024-03-03T21:19:43Z"}]}},{"name":"d0c2218c-e462-4fce-a87f-2413cad2689f","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0c2218c-e462-4fce-a87f-2413cad2689f","properties":{"accountName":"clirkicqsorzgck","apiType":"MongoDB","creationTime":"2024-03-03T21:15:41Z","deletionTime":"2024-03-03T21:19:44Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"705bc48f-a42a-4926-aec8-9500d462b734","creationTime":"2024-03-03T21:15:42Z","deletionTime":"2024-03-03T21:19:44Z"}]}},{"name":"e5344b97-62a1-43d0-8415-f0d04cbd3336","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5344b97-62a1-43d0-8415-f0d04cbd3336","properties":{"accountName":"cli4mganmnlbuz3","apiType":"Sql","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"f0c2677e-1ecc-4c26-b91a-325d85b0ac54","creationTime":"2024-03-03T21:15:36Z","deletionTime":"2024-03-03T21:19:52Z"}]}},{"name":"396c6484-675a-46d9-b464-212634fa7db4","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/396c6484-675a-46d9-b464-212634fa7db4","properties":{"accountName":"cli4rzud4nfoom7","apiType":"Gremlin, + Sql","creationTime":"2024-03-03T21:15:44Z","deletionTime":"2024-03-03T21:20:14Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"2c3caa17-928f-4a60-896f-a7b5fdf287d3","creationTime":"2024-03-03T21:15:45Z","deletionTime":"2024-03-03T21:20:14Z"}]}},{"name":"41f6a705-b195-48fc-98ca-cc00be3bc60d","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41f6a705-b195-48fc-98ca-cc00be3bc60d","properties":{"accountName":"cli2nw765jz5xjw","apiType":"Sql","creationTime":"2024-03-03T21:20:24Z","deletionTime":"2024-03-03T21:22:30Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"5727a5d1-8831-4f88-9ecb-d54e1bb704e7","creationTime":"2024-03-03T21:20:25Z","deletionTime":"2024-03-03T21:22:30Z"}]}},{"name":"9f286144-7a64-4714-88e9-e857f34ef65e","location":"West + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f286144-7a64-4714-88e9-e857f34ef65e","properties":{"accountName":"cliywzk2xdf2i4v","apiType":"MongoDB","creationTime":"2024-03-03T21:20:30Z","deletionTime":"2024-03-03T21:24:09Z","oldestRestorableTime":"2024-02-02T21:32:03Z","restorableLocations":[{"locationName":"West + US","regionalDatabaseAccountInstanceId":"a360a584-eb52-475a-8b7d-b8d226ecc1b4","creationTime":"2024-03-03T21:20:31Z","deletionTime":"2024-03-03T21:24:09Z"}]}},{"name":"83caf7f5-b220-4b0a-980a-2e8e7e6184d3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3","properties":{"accountName":"drop-continuous7","apiType":"Sql","creationTime":"2022-05-26T18:49:51+00:00","oldestRestorableTime":"2024-02-25T21:32:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3","properties":{"accountName":"periodicacctdrop","apiType":"Sql","creationTime":"2022-08-24T22:57:51Z","oldestRestorableTime":"2024-02-25T21:32:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0","properties":{"accountName":"periodicacctdrop2","apiType":"Sql","creationTime":"2022-05-26T20:16:50Z","oldestRestorableTime":"2024-02-02T21:32:00Z","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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004","properties":{"accountName":"readregionrestore-1","apiType":"Sql","creationTime":"2023-03-02T00:15:37+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","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":"55106896-6653-4bd8-9f96-3e5390eb7a5b","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b","properties":{"accountName":"chucks-sql-ptoc","apiType":"Sql","creationTime":"2023-05-11T23:06:57Z","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14","creationTime":"2023-05-11T23:06:57Z"}]}},{"name":"bdb84e66-b995-4fae-ab85-17f6e790b5f0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0","properties":{"accountName":"chucks-sql-cont7","apiType":"Sql","creationTime":"2023-05-09T20:00:45+00:00","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32","creationTime":"2023-05-09T20:00:46Z"}]}},{"name":"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d","properties":{"accountName":"chucks-sql-cont7-restored","apiType":"Sql","creationTime":"2023-05-11T23:36:04+00:00","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"458fde5b-5a10-40f9-9add-4d28e5d9c904","creationTime":"2023-05-11T23:36:04Z"}]}},{"name":"52651ff3-e3fa-4e33-8d70-8f889c42c103","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103","properties":{"accountName":"test-rbac","apiType":"Sql","creationTime":"2024-02-13T21:56:55Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac82b8bc-75b4-4e24-9176-be9005785192","creationTime":"2024-02-13T21:56:56Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"bc9bd829-430a-4123-9ecf-4cee61ebf32f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f","properties":{"accountName":"test-rbac-mongo","apiType":"MongoDB","creationTime":"2024-02-14T00:38:44Z","deletionTime":"2024-02-14T01:18:16Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"071b2352-9fab-417d-bf2e-91a9f87943c8","creationTime":"2024-02-14T00:38:45Z","deletionTime":"2024-02-14T01:18:16Z"}]}},{"name":"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3","properties":{"accountName":"test-rbac-table","apiType":"Table, + Sql","creationTime":"2024-02-14T01:24:30Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ac280c89-7754-4188-aed6-e8114d84dee2","creationTime":"2024-02-14T01:24:31Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"f4a8a322-3a53-432d-a398-6ee29f7bf3ce","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce","properties":{"accountName":"test-rbac-gremlin","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"23334c8c-678f-4461-86b1-f87bb26c233d","creationTime":"2024-02-14T01:23:25Z","deletionTime":"2024-02-14T01:55:30Z"}]}},{"name":"cda9640e-bd21-4d01-b1ad-2f0679798960","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T06:52:59Z","deletionTime":"2024-02-23T06:55:35Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0e6d717f-6074-4993-8b8a-6f9af40aef9e","creationTime":"2024-02-23T06:53:00Z","deletionTime":"2024-02-23T06:55:35Z"}]}},{"name":"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z","oldestRestorableTime":"2024-02-23T08:16:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c48fa26f-1a28-4a9b-b155-f8973f93fc7b","creationTime":"2024-02-23T08:16:01Z","deletionTime":"2024-02-23T08:20:25Z"}]}},{"name":"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-23T09:02:45Z","deletionTime":"2024-02-23T09:05:36Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4","creationTime":"2024-02-23T09:02:46Z","deletionTime":"2024-02-23T09:05:36Z"}]}},{"name":"0c5658a5-26ce-4ec3-a088-064304d05799","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-23T09:27:02Z","deletionTime":"2024-02-23T09:29:36Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd","creationTime":"2024-02-23T09:27:03Z","deletionTime":"2024-02-23T09:29:36Z"}]}},{"name":"64b6fb97-890c-492b-aa7d-705d87080c49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-23T09:51:31Z","deletionTime":"2024-02-23T09:53:30Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"00025bd1-940a-4ca4-8201-29f9c40f159a","creationTime":"2024-02-23T09:51:32Z","deletionTime":"2024-02-23T09:53:30Z"}]}},{"name":"3464e917-b43f-4ded-b854-b15243c61224","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-23T09:55:06Z","deletionTime":"2024-02-23T09:57:09Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad","creationTime":"2024-02-23T09:55:07Z","deletionTime":"2024-02-23T09:57:09Z"}]}},{"name":"c92c0395-4d38-4a9b-910e-532a3b157367","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z","oldestRestorableTime":"2024-02-23T11:22:17Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"0591b191-a4de-4341-85c0-b8fc52e51387","creationTime":"2024-02-23T11:22:17Z","deletionTime":"2024-02-23T11:25:46Z"}]}},{"name":"54889762-4cb9-429d-82a3-e9149cb73e34","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-23T11:27:13Z","deletionTime":"2024-02-23T11:29:53Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b54b8742-c4c9-481d-abf1-16104de29851","creationTime":"2024-02-23T11:27:14Z","deletionTime":"2024-02-23T11:29:53Z"}]}},{"name":"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"a76ec799-b47d-4292-919f-a0c38dffbe63","creationTime":"2024-02-23T14:10:36Z","deletionTime":"2024-02-23T14:26:15Z"}]}},{"name":"50640765-42dc-4a42-9514-cb87d05034cc","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f","creationTime":"2024-02-23T14:25:24Z","deletionTime":"2024-02-23T14:26:16Z"}]}},{"name":"a7646555-7c25-4ba6-a24c-a7c1246a96f1","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T13:52:46Z","deletionTime":"2024-02-24T14:10:41Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"42996580-03d3-4430-adb6-2ccd6c6d99b0","creationTime":"2024-02-24T13:52:47Z","deletionTime":"2024-02-24T14:10:41Z"}]}},{"name":"d84f6508-6e23-4388-975c-ab819f500873","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T14:34:21Z","deletionTime":"2024-02-24T15:04:35Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"81d29b70-0f62-4482-af29-2d160b12be91","creationTime":"2024-02-24T14:34:22Z","deletionTime":"2024-02-24T15:04:35Z"}]}},{"name":"f4d4151c-0429-4f0d-801a-95a244b08bc9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T15:13:17+00:00","deletionTime":"2024-02-24T15:41:22Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ec65d37f-945c-4c0a-892a-829e4e57e34a","creationTime":"2024-02-24T15:13:17Z","deletionTime":"2024-02-24T15:41:22Z"}]}},{"name":"77d30b93-9b92-47ca-b4fa-50cacd1101e0","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T18:36:19Z","deletionTime":"2024-02-24T18:55:11Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"e674fa67-6e52-4c2a-832a-9fddf3a02ab6","creationTime":"2024-02-24T18:36:20Z","deletionTime":"2024-02-24T18:55:11Z"}]}},{"name":"bdcfe234-d7ad-44d4-bf82-c961333fc23f","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"ea57204a-4f39-471c-a79e-28d0eaf83c0f","creationTime":"2024-02-24T19:17:52Z","deletionTime":"2024-02-24T19:48:11Z"}]}},{"name":"8b982c09-8524-4ebe-9dc2-46b593fc66b7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9a639f5c-1179-4111-8b3f-43a6365f5525","creationTime":"2024-02-24T19:57:00Z","deletionTime":"2024-02-24T20:25:03Z"}]}},{"name":"ab3685cd-9a6d-4d0e-b135-65e395d44bb5","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2c4e6315-fe99-4ea4-910f-d72c4476f4dd","creationTime":"2024-02-24T22:21:06Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206","creationTime":"2024-02-24T22:35:34Z","deletionTime":"2024-02-24T22:36:22Z"}]}},{"name":"7c4ff66b-77a5-44b5-9316-8dc8d465d037","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z","oldestRestorableTime":"2024-02-24T22:58:14Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7","creationTime":"2024-02-24T22:58:14Z","deletionTime":"2024-02-24T23:02:42Z"}]}},{"name":"fa249425-7dc5-4614-8939-31bb384aac45","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b5fd2d4a-e9bb-4b02-a98d-49e129030c71","creationTime":"2024-02-24T23:35:11Z","deletionTime":"2024-02-24T23:37:48Z"}]}},{"name":"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-24T23:59:14Z","deletionTime":"2024-02-25T00:02:12Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"809b66f3-c1b0-46d6-9ccd-d07910dbb659","creationTime":"2024-02-24T23:59:15Z","deletionTime":"2024-02-25T00:02:12Z"}]}},{"name":"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f17dfc7f-5aad-43b5-8629-3f1156e49611","creationTime":"2024-02-25T00:23:52Z","deletionTime":"2024-02-25T00:26:06Z"}]}},{"name":"40bee9eb-e4d4-4936-b0d9-665426606bf9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T00:27:34Z","deletionTime":"2024-02-25T00:30:48Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"3e8d6091-a55b-4057-b588-69019931cd54","creationTime":"2024-02-25T00:27:35Z","deletionTime":"2024-02-25T00:30:48Z"}]}},{"name":"a13452d8-b142-4f21-8517-3d368b272f79","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z","oldestRestorableTime":"2024-02-25T01:28:51Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"b3eedff6-4e79-42be-a997-5f6c223ae99f","creationTime":"2024-02-25T01:28:51Z","deletionTime":"2024-02-25T01:32:24Z"}]}},{"name":"42fab966-6658-4fd8-b240-f041808931d9","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T01:33:49Z","deletionTime":"2024-02-25T01:36:32Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"62ae487a-a0b0-46d3-88a0-48bc206feb62","creationTime":"2024-02-25T01:33:50Z","deletionTime":"2024-02-25T01:36:32Z"}]}},{"name":"700caac1-9d80-402a-96a0-33edbb503370","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T05:48:53Z","deletionTime":"2024-02-25T06:15:07Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8b908cdf-dbda-4389-96cd-5b73cd728ec8","creationTime":"2024-02-25T05:48:54Z","deletionTime":"2024-02-25T06:15:07Z"}]}},{"name":"23a89947-ea3b-4d4d-bf81-0c204c1ee23a","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a","properties":{"accountName":"mongo-continuous-1474","apiType":"MongoDB","creationTime":"2024-02-25T09:10:17Z","deletionTime":"2024-02-25T09:25:37Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6366fe73-1653-492d-a940-4bc3ec061af6","creationTime":"2024-02-25T09:10:18Z","deletionTime":"2024-02-25T09:25:37Z"}]}},{"name":"959f8ca4-2979-4c88-9859-0f19b1a9e280","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280","properties":{"accountName":"mongo-continuous-1474-res","apiType":"MongoDB","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"cacb2ee4-8ef5-4acd-a562-c7bf99673e15","creationTime":"2024-02-25T09:24:50Z","deletionTime":"2024-02-25T09:25:38Z"}]}},{"name":"779fd119-9675-40ae-9e38-c5ad7547ad84","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84","properties":{"accountName":"ps-cosmosdb-1220","apiType":"Sql","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z","oldestRestorableTime":"2024-02-25T09:57:27Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9102ccac-3ce6-41d1-b10f-c9bbf87459f5","creationTime":"2024-02-25T09:57:27Z","deletionTime":"2024-02-25T10:01:52Z"}]}},{"name":"419a5378-0dad-4cda-a73b-60ccb9bdd926","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926","properties":{"accountName":"cosmosdb-1215","apiType":"MongoDB","creationTime":"2024-02-25T10:42:57Z","deletionTime":"2024-02-25T10:45:34Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"28460a94-4003-4ffc-bb1a-3032243b7866","creationTime":"2024-02-25T10:42:58Z","deletionTime":"2024-02-25T10:45:34Z"}]}},{"name":"edbed0a7-8286-4e0e-bde8-9508661ee1c7","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7","properties":{"accountName":"cosmosdb-1216","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T11:07:20Z","deletionTime":"2024-02-25T11:10:00Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"d2f5ed44-0d29-488f-8ac8-711842167e61","creationTime":"2024-02-25T11:07:21Z","deletionTime":"2024-02-25T11:10:00Z"}]}},{"name":"ccaa3f0e-c8c8-4821-8132-b634f60b14bd","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd","properties":{"accountName":"cosmosdb-1917","apiType":"Table, + Sql","creationTime":"2024-02-25T11:32:16Z","deletionTime":"2024-02-25T11:34:25Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"9e001550-b2fd-48ac-8323-750c85a86cfd","creationTime":"2024-02-25T11:32:17Z","deletionTime":"2024-02-25T11:34:25Z"}]}},{"name":"ec7eaaca-81e9-4700-8a3c-61330105a9da","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da","properties":{"accountName":"mongo-continuous-1274","apiType":"MongoDB","creationTime":"2024-02-25T11:35:55Z","deletionTime":"2024-02-25T11:38:02Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"4893051c-ede8-42ae-ba26-5b50b31cb67a","creationTime":"2024-02-25T11:35:56Z","deletionTime":"2024-02-25T11:38:02Z"}]}},{"name":"3d1b9742-2c87-410a-8d78-7af0c3c6c947","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947","properties":{"accountName":"ps-cosmosdb-1250","apiType":"Sql","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z","oldestRestorableTime":"2024-02-25T13:01:05Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"80498a86-0181-47d4-8668-e08006441574","creationTime":"2024-02-25T13:01:05Z","deletionTime":"2024-02-25T13:04:36Z"}]}},{"name":"0f72e0e7-000d-4b6d-b7aa-55c1e2630072","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072","properties":{"accountName":"cosmosdb-1414","apiType":"Sql","creationTime":"2024-02-25T13:06:04Z","deletionTime":"2024-02-25T13:08:47Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"60473d71-f27e-418c-bd32-d26dfd31e330","creationTime":"2024-02-25T13:06:05Z","deletionTime":"2024-02-25T13:08:47Z"}]}},{"name":"54e4885b-5b09-470e-95a6-90114af71a86","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86","properties":{"accountName":"gremlin-db1051-3","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T15:52:38Z","deletionTime":"2024-02-25T16:10:41Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"f83ff934-33e8-4229-a9e1-f5888e436770","creationTime":"2024-02-25T15:52:39Z","deletionTime":"2024-02-25T16:10:41Z"}]}},{"name":"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2","properties":{"accountName":"gremlin-db1051-2","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T16:23:13Z","deletionTime":"2024-02-25T16:53:29Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"2e454444-a363-4d0b-8a31-076b452d9029","creationTime":"2024-02-25T16:23:14Z","deletionTime":"2024-02-25T16:53:29Z"}]}},{"name":"951b6462-4621-4d6c-b0e5-9624cf43ef68","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-25T17:02:54Z","deletionTime":"2024-02-25T17:30:56Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1","creationTime":"2024-02-25T17:02:55Z","deletionTime":"2024-02-25T17:30:56Z"}]}},{"name":"3ad24bdf-36a9-48f6-9491-3a0af8947a18","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18","properties":{"accountName":"table-db2530","apiType":"Table, + Sql","creationTime":"2024-02-25T20:36:22Z","deletionTime":"2024-02-25T21:02:35Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6069c112-af8a-4c0d-b1dc-a932ca507e73","creationTime":"2024-02-25T20:36:23Z","deletionTime":"2024-02-25T21:02:35Z"}]}},{"name":"fe0f195a-c7a2-4e78-bd23-7622e240d748","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"c34f4ade-7c39-44c2-982b-7244a8a5200d","creationTime":"2024-02-26T01:30:36Z","deletionTime":"2024-02-26T01:43:05Z"}]}},{"name":"5db38459-a2a0-4ecc-a575-3dd8f3497b2e","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"6987c0e5-227a-4473-8608-7f5450e55d57","creationTime":"2024-02-26T01:59:02Z","deletionTime":"2024-02-26T02:28:33Z"}]}},{"name":"3eabac33-113f-4a84-8b7c-110c4befaff6","location":"East + US","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eabac33-113f-4a84-8b7c-110c4befaff6","properties":{"accountName":"gremlin-db1051-5","apiType":"Gremlin, + Sql","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z","oldestRestorableTime":"2024-02-02T21:32:01Z","restorableLocations":[{"locationName":"East + US","regionalDatabaseAccountInstanceId":"06fa23b5-90f6-4a72-bc05-b565c0160588","creationTime":"2024-02-27T14:42:04Z","deletionTime":"2024-02-27T15:11:37Z"}]}},{"name":"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199","properties":{"accountName":"vinhiar","apiType":"Sql","creationTime":"2024-01-16T21:10:51+00:00","oldestRestorableTime":"2024-02-02T21:32:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"3e8417f1-a71a-45fe-b538-59a6b8109629","creationTime":"2024-01-16T21:10:51Z"}]}},{"name":"ad9c8d77-c225-476d-9fb8-50857101b54c","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c","properties":{"accountName":"iar-gremlin-ntbr","apiType":"Gremlin, + Sql","creationTime":"2024-02-14T20:54:43Z","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"93607df7-f800-4b91-a7d5-46f4b5c04c10","creationTime":"2024-02-14T20:54:43Z"}]}},{"name":"14541c2f-cd1b-4e01-badf-9fa2609805f5","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5","properties":{"accountName":"iar-mongodb-ntbr","apiType":"MongoDB","creationTime":"2024-02-14T20:56:17Z","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8c4b1f72-d3d2-4082-81bf-464d98ddccb0","creationTime":"2024-02-14T20:56:17Z"}]}},{"name":"411873af-84ea-4eeb-ba48-e748ab671021","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021","properties":{"accountName":"iar-table-ntbr","apiType":"Table, + Sql","creationTime":"2024-02-15T02:24:15Z","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa5e02cf-1303-4999-899f-da4c0514ddd8","creationTime":"2024-02-15T02:24:15Z"}]}},{"name":"71b6e82e-0fa5-4a96-aa85-a402f6099267","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267","properties":{"accountName":"test-ttl-disable","apiType":"Sql","creationTime":"2024-02-17T01:28:01Z","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"8f0de18d-5572-4399-af43-1fadabf18dda","creationTime":"2024-02-17T01:28:01Z"}]}},{"name":"bf6597cf-431e-4f97-b953-a422b05512a8","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8","properties":{"accountName":"amisitestpitracc","apiType":"Sql","creationTime":"2024-02-15T20:11:00+00:00","oldestRestorableTime":"2024-02-25T21:32:00Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df","creationTime":"2024-02-15T20:11:01Z"}]}},{"name":"9f72482f-4988-4fb2-a7cf-46a766098c33","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/9f72482f-4988-4fb2-a7cf-46a766098c33","properties":{"accountName":"amisitestpitracc-r1","apiType":"Sql","creationTime":"2024-02-28T18:13:35+00:00","oldestRestorableTime":"2024-02-28T18:13:35+00:00","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"f2a1b697-19fb-4285-bbaa-9dcf9ad49cad","creationTime":"2024-02-28T18:13:35Z"}]}},{"name":"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a","properties":{"accountName":"test-ttl-disable-restored2","apiType":"Sql","creationTime":"2024-02-21T02:02:12+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"aa557477-592e-47b2-815d-d5cd371fa5da","creationTime":"2024-02-21T02:02:12Z","deletionTime":"2024-02-21T18:41:23Z"}]}},{"name":"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","location":"West + US 3","type":"Microsoft.DocumentDB/locations/restorableDatabaseAccounts","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944","properties":{"accountName":"test-ttl-disable-restored1","apiType":"Sql","creationTime":"2024-02-17T01:49:32+00:00","deletionTime":"2024-02-21T18:41:23Z","oldestRestorableTime":"2024-02-14T18:41:23Z","restorableLocations":[{"locationName":"West + US 3","regionalDatabaseAccountInstanceId":"afe910fe-b1b2-4cde-b3d2-84439b7606b9","creationTime":"2024-02-17T01:49:32Z","deletionTime":"2024-02-21T18:41:23Z"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '428196' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:32:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: B1F5B4EC62274F08A7DA1F60D2F33AC1 Ref B: BL2AA2030102037 Ref C: 2024-03-03T21:32:00Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"resource": {"id": "cli000002", "restoreParameters": {"restoreSource": + "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a34cf23d-167a-4cfb-81f5-092946399ccc", + "restoreTimestampInUtc": "2024-03-03T21:23:08.149756Z"}, "createMode": "Restore"}, + "options": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:06 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983272111240&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=rbOyLF5u9zODJSS81TCusSkZLWwxDZmRA0BS790ey_M4jY5Dj-IAId28IO_ZsQJsNkSVE3B2Lomsv5fiZpL06x78vMZMLXoKS26V_BmkzMKGc3dlOLehRY3Glo6Xw3SINnNPaLXAJDX9eCb1dvZYt792NuADwMDaPAOVAZFaGWjNgEJ462D_uiIvDg4WuXbzsgprx6TH6D3Ewc7kDe0_AIw9soArQW2p3jGk3WboMI5CQsU5uqGJXpuOfGPggK06xGD38BGoFvYuBT-CAziWMwK5pOihEFSgSteVYCNaL2L8AY3Faia_6krTisCpsKi5Xn2wrt-P6E6nHUuPumNRjA&h=--ud4FeoeNKKwu4MMLEcJfDgCb2dmhCLxCAYNnE87hc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 3E4EA839AFD243CDAF7F6DDF324D19C0 Ref B: BL2AA2030102009 Ref C: 2024-03-03T21:32:05Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8B97803D24664D5784A362298EC75F47 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:32:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 12A1C866FF5F408F99353C065CCF940F Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:32:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9A089E2EC93E4111BD199FDE6F01EE0C Ref B: BL2AA2010202023 Ref C: 2024-03-03T21:33:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 26003F7F3EE24263AE55F5A15C8DB601 Ref B: BL2AA2030103019 Ref C: 2024-03-03T21:33:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 74AE67FB6D994D3A84E6799717E7E55B Ref B: BL2AA2010205005 Ref C: 2024-03-03T21:34:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4EEAAB219F61493494978F1E3F04FCF0 Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:34:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CF9503F48B954F5B900CD75D65855B02 Ref B: BL2AA2010205021 Ref C: 2024-03-03T21:35:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DD4F61D646AD40F7A35B806013387BC3 Ref B: BL2AA2030102023 Ref C: 2024-03-03T21:35:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2AF6A3EBDB414EE4B1844E90CE1E9D58 Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:36:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: FB97E31C65CD46B09903655030AAF928 Ref B: BL2AA2010202053 Ref C: 2024-03-03T21:36:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CFD80C3170EA481AA4AB5041BCEF87EE Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:37:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: ED4C86BD7D8F491B9FBE46BBE8138E17 Ref B: BL2AA2030101029 Ref C: 2024-03-03T21:37:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E4D055E10226418882CDC23FB01336B0 Ref B: BL2AA2010202017 Ref C: 2024-03-03T21:38:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:39 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DA8757D041E14C438D509B9F3730B035 Ref B: BL2AA2030101023 Ref C: 2024-03-03T21:38:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:09 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6F2AA20E313F44CA99A54C91B62EDCCD Ref B: BL2AA2030101037 Ref C: 2024-03-03T21:39:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: AB24636620C9485180389BC60AEEB4DD Ref B: BL2AA2010203035 Ref C: 2024-03-03T21:39:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 949943B9816246A6B1C9BBA10465A517 Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:40:10Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a24207df-ecf4-46c2-bc2e-e1eeee6c2a28?api-version=2024-02-15-preview&t=638450983271954960&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HNtKrKSAecGdZec9qQrHLtFvVm-jIhJS-i2MQQ1nhxSDlIaQYM3xP-ECp5RwJ3ZYvOIwSAkOOYgjX4bHz6rGYwZ9uia7fkpXGutHKx2jOENN-1-s-Zk4G9QI7CN_h3IlF9Ja0HJxthoq7RzlK6Iz4k6ETZg02QHhAf31Fi347Iqkops4DlD0zvdJPzksj-zJY41Le1cxRJQWcpfGOFDyHTDDPWNaazhdN3hUNFfjjiKajGYi2vhYhRya1Y8ZQLB6brqJk8kbUEkkvTLft1h6m5ubwFTyiSeYoNc5alEEoRDE3sgcuEYBmE8NwY2ziJdg4ao1sAldDKmrsCSsUmAHTQ&h=gk7Jw1WC10cgIk0WzoYxfL5yTCMHtMuCo_E_PuiiW3Q + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 52E4F8D255EF46A786EBB44911F3DB3B Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:40:40Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table restore + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --restore-timestamp + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"BYhnAJ9Ad7g=","_etag":"\"00000000-0000-0000-6db2-e8739c0201da\"","_ts":1709501813}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '396' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D3CA9F79BD7F4F65842D6533165F0800 Ref B: BL2AA2010205021 Ref C: 2024-03-03T21:40:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"BYhnAJ9Ad7g=","_etag":"\"00000000-0000-0000-6db2-e8739c0201da\"","_ts":1709501813}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '396' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B9AEFFB8544B4340B9AA8AE5826D7EAC Ref B: BL2AA2010204049 Ref C: 2024-03-03T21:49:01Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2023-11-15 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"BYhnAJ9Ad7g=","_etag":"\"00000000-0000-0000-6db2-e8739c0201da\"","_ts":1709501813}}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '408' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CD3B592090034B7192EEC5205A45A19A Ref B: BL2AA2030101033 Ref C: 2024-03-03T21:49:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table exists + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"BYhnAJ9Ad7g=","_etag":"\"00000000-0000-0000-6db2-e8739c0201da\"","_ts":1709501813}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '396' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 516D11D22A1245B9AB38762231437ED4 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:49:03Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2023-11-15 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c120ddb4-5775-4965-83a5-e5364e092a51?api-version=2023-11-15&t=638450993444462059&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qgbmVt4NGfJE0xv_U7-ormYQju3_KgMdSSTN_m2LAtfNP734RaLeMQlCheOEYSVfT0SfNFGbUjCtlLTj3btjEAxEMHL8JKYool-F5SpOLSP_vjMEfyEpK7Rt1SSylJgguC-N2yy1p5D66fKsq8DalJdk4Bp_oW9kHJOW9AeRRNN5WfBYJbZmdopYtMT1upjJ4EgRRPx2QVfCIZ4m0g51nu4PeHlUkr3ZzKN3cloBttlhz0B4Q610j5CAvjL8kgXJgLoUV7oGMNNdz5DZLrOJTnN-dJWpWq4BwFaHab8F6Ogx13P4GG_pQpShqgIErQKkx7ryNCbh7rbIqxyUWcLbFA&h=sO7slTEEErwpaVwCdUjta-5ezHWBkmFLqZlhjy9v9zc + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:04 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/c120ddb4-5775-4965-83a5-e5364e092a51?api-version=2023-11-15&t=638450993444618199&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=p-74o7WAevgWp4JobMEJQKsxGE1mAxE4BgCQ4oTrsnQ2hDlAEN0YNUS3WZzSAcIWi7P6yY6g5KjoadXhqMMa82-a6pdcMWuPsjM38WbjRh26TqmmTdvRG0MT2apUp-wDT6vQDOn0dbRvnTb9PFgZnPKlIzVt_AeD3ciCJGyQP05RfpY3rN7bguGw_ZPY5m3HrjJ2kybvqmR6PXhaau6JOnvdUFYi8D2Sw_9ihYT6_KZ741zQZ04mjp9wYAh6j-CyfGo0CaKF-1-ohzB-r1jdKVWXZNFP2GD1fYQRhNxQuhK_N9FnsdS_G_OS0u4S-gzfgCTK3Dxomx69-LGdiQhOEg&h=RxIkqywlQ1uhRwjk4E57pX8eyQBZCG90q-OZyGE7FTU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-msedge-ref: + - 'Ref A: 7E0516DD124D4D1F8ED985C4C725C71C Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:49:03Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c120ddb4-5775-4965-83a5-e5364e092a51?api-version=2023-11-15&t=638450993444462059&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qgbmVt4NGfJE0xv_U7-ormYQju3_KgMdSSTN_m2LAtfNP734RaLeMQlCheOEYSVfT0SfNFGbUjCtlLTj3btjEAxEMHL8JKYool-F5SpOLSP_vjMEfyEpK7Rt1SSylJgguC-N2yy1p5D66fKsq8DalJdk4Bp_oW9kHJOW9AeRRNN5WfBYJbZmdopYtMT1upjJ4EgRRPx2QVfCIZ4m0g51nu4PeHlUkr3ZzKN3cloBttlhz0B4Q610j5CAvjL8kgXJgLoUV7oGMNNdz5DZLrOJTnN-dJWpWq4BwFaHab8F6Ogx13P4GG_pQpShqgIErQKkx7ryNCbh7rbIqxyUWcLbFA&h=sO7slTEEErwpaVwCdUjta-5ezHWBkmFLqZlhjy9v9zc + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:03 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 950BD4CD74854702A530F5D960B784B1 Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:49:04Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c120ddb4-5775-4965-83a5-e5364e092a51?api-version=2023-11-15&t=638450993444462059&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=qgbmVt4NGfJE0xv_U7-ormYQju3_KgMdSSTN_m2LAtfNP734RaLeMQlCheOEYSVfT0SfNFGbUjCtlLTj3btjEAxEMHL8JKYool-F5SpOLSP_vjMEfyEpK7Rt1SSylJgguC-N2yy1p5D66fKsq8DalJdk4Bp_oW9kHJOW9AeRRNN5WfBYJbZmdopYtMT1upjJ4EgRRPx2QVfCIZ4m0g51nu4PeHlUkr3ZzKN3cloBttlhz0B4Q610j5CAvjL8kgXJgLoUV7oGMNNdz5DZLrOJTnN-dJWpWq4BwFaHab8F6Ogx13P4GG_pQpShqgIErQKkx7ryNCbh7rbIqxyUWcLbFA&h=sO7slTEEErwpaVwCdUjta-5ezHWBkmFLqZlhjy9v9zc + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:34 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 90ABF447A6564DAABD4B639B06D5CCAB Ref B: BL2AA2010201039 Ref C: 2024-03-03T21:49:34Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb table list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/9.4.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_restore000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2023-11-15 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 85BE3BE14F164F7186D597543E1FBE44 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:49:35Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml new file mode 100644 index 00000000000..bc9a7ba73c7 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml @@ -0,0 +1,1806 @@ +interactions: +- request: + body: '{"location": "eastus2", "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, + "subnets": [{"name": "cli000004", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '237' + Content-Type: + - application/json + ParameterSetName: + - -g -l -n --subnet-name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n + \ \"etag\": \"W/\\\"3e1b9610-8c58-4b63-9f34-65fee8579633\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"a54b6ab1-0817-4c41-90e3-59523106fb97\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n + \ \"etag\": \"W/\\\"3e1b9610-8c58-4b63-9f34-65fee8579633\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/82b9b563-1e61-4cf0-a4d1-6cae4d85fa74?api-version=2022-01-01&t=638451009228985924&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=N2espoBapJbAK6jaKl5QhN8xC8-h9GO1rLM-W6AshAPpQoyyMOcXId_m6qBmrBUfvGY8ziP9uznELDDh4JhassljSdYyFGgaDGPpe-PPDxH10RSM_IcTxr9g9Umgc0L7eGWc_Td3khy7Np1S-NUjmkXJlfx_H6OGhPxgK2ZKSEJBbgqQQlCI2uBUjbn8uZD6ca28IlEjWtedmDeigTd_R-I20wvBhXz6rY0RPO5EHmdUQufqAt0Mup_SDtyznrh4T8YTitbFllDPgJRj3mI4VdwWkJUYdZWmwUczKuZf0aCTBC0Bl_VnfRg4LPGQOltMO-NyE9qhEohmO5KugmvsZQ&h=JoIARmhTMFR0Lpr4HYy-cW2wRC4mF0JuuKlSxIgGV3E + cache-control: + - no-cache + content-length: + - '1256' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1c936556-b2a8-4fef-9a1a-95116107d978 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: AF4518B1DAA149E48C4E5D87FC5F6E77 Ref B: MNZ221060609029 Ref C: 2024-03-03T22:15:22Z' + status: + code: 201 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -l -n --subnet-name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/82b9b563-1e61-4cf0-a4d1-6cae4d85fa74?api-version=2022-01-01&t=638451009228985924&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=N2espoBapJbAK6jaKl5QhN8xC8-h9GO1rLM-W6AshAPpQoyyMOcXId_m6qBmrBUfvGY8ziP9uznELDDh4JhassljSdYyFGgaDGPpe-PPDxH10RSM_IcTxr9g9Umgc0L7eGWc_Td3khy7Np1S-NUjmkXJlfx_H6OGhPxgK2ZKSEJBbgqQQlCI2uBUjbn8uZD6ca28IlEjWtedmDeigTd_R-I20wvBhXz6rY0RPO5EHmdUQufqAt0Mup_SDtyznrh4T8YTitbFllDPgJRj3mI4VdwWkJUYdZWmwUczKuZf0aCTBC0Bl_VnfRg4LPGQOltMO-NyE9qhEohmO5KugmvsZQ&h=JoIARmhTMFR0Lpr4HYy-cW2wRC4mF0JuuKlSxIgGV3E + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 98a1e5f0-f0bd-46cd-909a-b528c94280a4 + x-msedge-ref: + - 'Ref A: 70F86BB5564A42EE857E01363813FD98 Ref B: MNZ221060610031 Ref C: 2024-03-03T22:15:23Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -l -n --subnet-name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/82b9b563-1e61-4cf0-a4d1-6cae4d85fa74?api-version=2022-01-01&t=638451009228985924&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=N2espoBapJbAK6jaKl5QhN8xC8-h9GO1rLM-W6AshAPpQoyyMOcXId_m6qBmrBUfvGY8ziP9uznELDDh4JhassljSdYyFGgaDGPpe-PPDxH10RSM_IcTxr9g9Umgc0L7eGWc_Td3khy7Np1S-NUjmkXJlfx_H6OGhPxgK2ZKSEJBbgqQQlCI2uBUjbn8uZD6ca28IlEjWtedmDeigTd_R-I20wvBhXz6rY0RPO5EHmdUQufqAt0Mup_SDtyznrh4T8YTitbFllDPgJRj3mI4VdwWkJUYdZWmwUczKuZf0aCTBC0Bl_VnfRg4LPGQOltMO-NyE9qhEohmO5KugmvsZQ&h=JoIARmhTMFR0Lpr4HYy-cW2wRC4mF0JuuKlSxIgGV3E + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 084921f2-f9cf-49aa-8a14-a7989498712f + x-msedge-ref: + - 'Ref A: C74C54717F0A4FBCA693F1D17509FBB9 Ref B: MNZ221060608037 Ref C: 2024-03-03T22:15:33Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -l -n --subnet-name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n + \ \"etag\": \"W/\\\"86613a9d-d52d-4683-b47f-fafd4df3f2cf\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"a54b6ab1-0817-4c41-90e3-59523106fb97\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n + \ \"etag\": \"W/\\\"86613a9d-d52d-4683-b47f-fafd4df3f2cf\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1258' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:33 GMT + etag: + - W/"86613a9d-d52d-4683-b47f-fafd4df3f2cf" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4a4858af-b055-4235-987a-0c7a6d8f7281 + x-msedge-ref: + - 'Ref A: 1FC10E5170B24095A162EFAD7EA1E049 Ref B: MNZ221060608039 Ref C: 2024-03-03T22:15:33Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n + \ \"etag\": \"W/\\\"86613a9d-d52d-4683-b47f-fafd4df3f2cf\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"a54b6ab1-0817-4c41-90e3-59523106fb97\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n + \ \"etag\": \"W/\\\"86613a9d-d52d-4683-b47f-fafd4df3f2cf\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1258' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:33 GMT + etag: + - W/"86613a9d-d52d-4683-b47f-fafd4df3f2cf" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 408eed7a-9dda-4579-bfcd-e02dfc67f898 + x-msedge-ref: + - 'Ref A: 2B6D50E8E385414BABA63EFD87D7149F Ref B: MNZ221060609021 Ref C: 2024-03-03T22:15:34Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment create + Connection: + - keep-alive + ParameterSetName: + - --assignee --role --scope + User-Agent: + - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.57.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27e5007d2c-4b13-4a74-9b6a-605d99f03501%27%29 + response: + body: + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '92' + content-type: + - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; + charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:35 GMT + odata-version: + - '4.0' + request-id: + - bf6c2186-dace-41c3-a297-8556f4fdebf5 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"003","RoleInstance":"BL6PEPF0001178B"}}' + x-ms-resource-unit: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"ids": ["e5007d2c-4b13-4a74-9b6a-605d99f03501"], "types": ["user", "group", + "servicePrincipal", "directoryObjectPartnerReference"]}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment create + Connection: + - keep-alive + Content-Length: + - '132' + Content-Type: + - application/json + ParameterSetName: + - --assignee --role --scope + User-Agent: + - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.57.0 + method: POST + uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds + response: + body: + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"e5007d2c-4b13-4a74-9b6a-605d99f03501","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"Azure + Cosmos DB","appDescription":null,"appId":"a232010e-820c-4083-83bb-3ace5fc29d0b","applicationTemplateId":null,"appOwnerOrganizationId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"createdDateTime":"2020-01-03T02:38:32Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"Azure + Cosmos DB","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["a232010e-820c-4083-83bb-3ace5fc29d0b"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[{"adminConsentDescription":"Allow + the application to access Azure Cosmos DB on behalf of the signed-in user.","adminConsentDisplayName":"Access + Azure Cosmos DB","id":"8741c20d-e8c0-41ff-8adf-b7b9ba168197","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access Azure Cosmos DB on your behalf.","userConsentDisplayName":"Access + Azure Cosmos DB as the Signed-in User","value":"user_impersonation"}],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1778' + content-type: + - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; + charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:35 GMT + location: + - https://graph.microsoft.com/ + odata-version: + - '4.0' + request-id: + - 64de7ff5-1410-45de-bc63-18b46b3afdbe + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"003","RoleInstance":"BL6PEPF0000FD78"}}' + x-ms-resource-unit: + - '3' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "e5007d2c-4b13-4a74-9b6a-605d99f03501", "principalType": "ServicePrincipal"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment create + Connection: + - keep-alive + Content-Length: + - '270' + Content-Type: + - application/json + ParameterSetName: + - --assignee --role --scope + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-authorization/4.0.0 Python/3.10.11 + (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003","condition":null,"conditionVersion":null,"createdOn":"2024-03-03T22:15:35.9342011Z","updatedOn":"2024-03-03T22:15:36.3902076Z","createdBy":null,"updatedBy":"e8597856-0a27-43e0-be98-289d28c02f7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + headers: + cache-control: + - no-cache + content-length: + - '1017' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:38 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 99893DB9118E47B083181EEFD9CBE833 Ref B: MNZ221060610027 Ref C: 2024-03-03T22:15:35Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet show + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name --name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004?api-version=2023-09-01 + response: + body: + string: '{"name":"cli000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","etag":"W/\"86613a9d-d52d-4683-b47f-fafd4df3f2cf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + cache-control: + - no-cache + content-length: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 22:15:39 GMT + etag: + - W/"86613a9d-d52d-4683-b47f-fafd4df3f2cf" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9167ebf2-e698-4862-9aa1-ecd22dbca740 + x-msedge-ref: + - 'Ref A: B2DA6E649BA94B9687217F9DAF6280E3 Ref B: MNZ221060608037 Ref C: 2024-03-03T22:15:39Z' + status: + code: 200 + message: '' +- request: + body: '{"location": "eastus2", "identity": {"type": "None"}, "properties": {"delegatedManagementSubnetId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004", + "initialCassandraAdminPassword": "cassandra", "clusterType": "Production"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + Content-Length: + - '345' + Content-Type: + - application/json + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T22:15:40.5806122Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T22:15:40.5806122Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 + 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","extensions":[],"externalDataCenters":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{},"provisioningState":"Creating","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRAHNE4F67GNE7AVMZWPD5WODGRQXM3JJEMJIMO3OVQR335JXT2IY7DSS/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLIUPUXRWK","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + cache-control: + - no-store, no-cache + content-length: + - '1652' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:15:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 0CC0418D2BA943DE8CCF09FC44E11F66 Ref B: MNZ221060609053 Ref C: 2024-03-03T22:15:39Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:15:40 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BAD40B04DB04401EB5758286D57998E8 Ref B: MNZ221060610031 Ref C: 2024-03-03T22:15:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:16:10 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C7A0764309494136BCDC5E26E2E4CA22 Ref B: MNZ221060609037 Ref C: 2024-03-03T22:16:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:16:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 03086EDCACCE4B1B9A69B152BFC503E6 Ref B: MNZ221060609039 Ref C: 2024-03-03T22:16:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:17:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E73A37400FC34728AF38E9315FF0989E Ref B: MNZ221060609007 Ref C: 2024-03-03T22:17:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:17:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8C628FAE9CD540A089EE5507A6636060 Ref B: MNZ221060610011 Ref C: 2024-03-03T22:17:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:18:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B0A5E21F60D64B0292A39DEE76CC5EEC Ref B: MNZ221060609037 Ref C: 2024-03-03T22:18:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:18:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6DE04232777E4708BD70F189FFBC7E20 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:18:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:19:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8E80D706D37F43A0A766E051D6CB1C82 Ref B: MNZ221060608049 Ref C: 2024-03-03T22:19:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:19:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9A41BB7D28FA44189150CC47BA1B5D38 Ref B: MNZ221060610021 Ref C: 2024-03-03T22:19:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:20:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0561253CCA484E2BBB8268148FA74B95 Ref B: MNZ221060608035 Ref C: 2024-03-03T22:20:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:20:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 49193D17FF4F448BB89D2BDC23A13D58 Ref B: MNZ221060610017 Ref C: 2024-03-03T22:20:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:21:13 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A22A3B8864D145DB8DB935D116809068 Ref B: MNZ221060610019 Ref C: 2024-03-03T22:21:14Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/a85ef38f-b73a-45d7-9ba7-3d96157024fd?api-version=2024-02-15-preview&t=638451009411899943&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FsYpINNh8-RoPy-eJn0xPjZ0XcpNQAVqpOZIPADcgs5937fCJv-r48GmKD1IDYGInSDlPG6hB4mbyZVKJqe5TNfs6Li7PYjzQfAECbgenGjKpSCxeMx9jk-EwSTdjKbC1BfeTt70o_IvjPUOM6qwfC3jc7PCLCCn4Qq_3vU4lzKH-GPqUxcNIavGPXvAmo3yDScLpgQf8GquU77BmPrd60uC7KIDP_i_9hLGj306fC79oz2BpKU1Y8OuU91DII3n4gnFuk2FbYTQxBj-muZ5ef83VO770Y-DbR5JTv0BZKzYSYU2ROGNxyBZ4EoWZE4lC47xscuankC67uWCGhScyg&h=8i8AKv_b3sUT18rgUVNFOj5bAdo5-WdvSuYnzOfwypE + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:21:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0D723D03B4B441949BF9974CEA239E89 Ref B: MNZ221060609053 Ref C: 2024-03-03T22:21:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T22:15:40.5806122Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T22:15:40.5806122Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 + 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","extensions":[],"externalDataCenters":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN + CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRAHNE4F67GNE7AVMZWPD5WODGRQXM3JJEMJIMO3OVQR335JXT2IY7DSS/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLIUPUXRWK","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '91482' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:21:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2BA4A3CBBB8747F480EAE5C2763D9DAC Ref B: MNZ221060609037 Ref C: 2024-03-03T22:21:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster show + Connection: + - keep-alive + ParameterSetName: + - -c -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T22:15:40.5806122Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T22:15:40.5806122Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 + 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","extensions":[],"externalDataCenters":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN + CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRAHNE4F67GNE7AVMZWPD5WODGRQXM3JJEMJIMO3OVQR335JXT2IY7DSS/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLIUPUXRWK","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '91482' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:21:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 55531AE9EB814448A8EED4B3B4DB2C20 Ref B: MNZ221060609049 Ref C: 2024-03-03T22:21:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:21:46 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070898848&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MpKCJmu033p3Z9qGYLTV4hBQtRvhp5O69RxjKYh3mdJUhFJhwUoJQ3tD0NjB-ImpgCR1O7ko1SoU3K7sJaAExL3YI4rzkKUrtKZr2N6stHZONtSX-opEyB3u3pe_zyEXEfeA_gpHN_0iUbvtL0-W18J6pOaL8thy-3og0kzUA6_M6pCTXKsbD9Ya0CMli_5qigmBv_Mqa7VRQjLtLtgxhHytFNqHA68mLH9LTS6w-bnJVZltpuhXsAYfoZlWcSmpRmnrI1rUP2gfYrNtfCj1FDNrabDcDVWQpk5s9MqZaIuztXg1yQg632g2T6fIFbxzW9nj4nXhCeL1Fe8Yv6_HoQ&h=TNblFrIOjKJ0LJigJ4BwjWot-AdKzzJaqf60j_OhZkc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: DD852B45EB5A42FAB16F60C507E9ED91 Ref B: MNZ221060608039 Ref C: 2024-03-03T22:21:46Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:21:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 22E2395745364EEA8676AF687F6E0A5D Ref B: MNZ221060609037 Ref C: 2024-03-03T22:21:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:22:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 88B08FD7967C4A3C9D5116DA9FC379FD Ref B: MNZ221060609023 Ref C: 2024-03-03T22:22:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:22:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 62B9E02A4F9D452A9B2DEC0A5C80B1E8 Ref B: MNZ221060609011 Ref C: 2024-03-03T22:22:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:23:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A29D40C8125B4C27A52E03BC4A1B7C1E Ref B: MNZ221060609007 Ref C: 2024-03-03T22:23:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:23:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 17EA7DBC6471482BAEE91B47C485F5B1 Ref B: MNZ221060609037 Ref C: 2024-03-03T22:23:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:24:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 67D9E88BCE3D4BCBADE2C4B8B4F5126C Ref B: MNZ221060610011 Ref C: 2024-03-03T22:24:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:24:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7C1EB52CC5464D61B373CB04AD4273D6 Ref B: MNZ221060610023 Ref C: 2024-03-03T22:24:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:25:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C4A79FCCF75C424592B5A35350472E83 Ref B: MNZ221060608049 Ref C: 2024-03-03T22:25:18Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:25:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 496D27DB602646F98931EA0FAFE2F20A Ref B: BL2AA2010203025 Ref C: 2024-03-03T22:25:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/16c27dcf-2357-48e1-a5fc-ca3ddaa6b818?api-version=2024-02-15-preview&t=638451013070741676&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Tjsxnq5saA6gymZls3_FjV7O3mIIRQrF8ywDU-N-w24ygaABrajePZAR4n50v-_iuJgJ22zd4V6U2vAzvgsTKy9Y6VO4d-GPPNcZ23rQhAKi8fuYLiDUqVztX-WNveydqvBRxmNOYvjSndUhUav3-9IXNJH7EwWb5Er7ssws9YsFmsZIO7_Yv3hvbbAw5Ujf7D4yBXQ9I9nLY5N1r5yTQe-dn_8ofAtAG2JaZ2nxYxOI2xZZM_UXHJXZKdzeXWZEKe5bYsQlXKLQtzA2d13-No3TpVQfX-NQ1BGNlD8GA23lumu6aQtbnPTmreLnFLKkhYfe9cK38gS0hpX8fZH5sQ&h=TIKy9Jg4ov7SL-zpt_iR4YZ7MAPDQkKVqLrfx1skDsg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 22:26:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F694A709701E406EA49B422FA47CACE4 Ref B: MNZ221060610021 Ref C: 2024-03-03T22:26:18Z' + status: + code: 200 + message: Ok +version: 1 diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml new file mode 100644 index 00000000000..819c3a7cdf9 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml @@ -0,0 +1,4427 @@ +interactions: +- request: + body: '{"location": "eastus2", "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, + "subnets": [{"name": "cli000006", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '237' + Content-Type: + - application/json + ParameterSetName: + - -g -l -n --subnet-name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n + \ \"etag\": \"W/\\\"ffe8a44d-c8dd-455e-a029-aa1344d86e5a\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"e7f4f5b8-2c2a-4a5e-8c95-4145c54c0339\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"cli000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n + \ \"etag\": \"W/\\\"ffe8a44d-c8dd-455e-a029-aa1344d86e5a\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/74388c9f-1d58-4cf8-8cda-598988427f9d?api-version=2022-01-01&t=638450977339333487&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PC2T9Z3vaRiQrVAX_BRVL6A1ZKN3ZiSUtDcrdDaexAyDLC7x2t5MW_dXOfHfMVgYwSgwmFnk31fQs3c3yN1dR6ecfzqOkCBiH5ePuv9PyKsAKVVLfSHc3shOqn97aS93KHT_NKtultsi694IbK1q76B3Xpt3mHgT8FTVTIgByGvFbHZ1xzO6x6dGX6e5huGHYZwXS2X-EMY5WeQnqd0cdLo0nPBv_C7D9SyoewvoXHbFey2D7FlZ0QhyAfPi8myhh8JkT-M82PaHU-sRpNofkDl1vgxLhQ3y6zh4ZFFDso_42t6U6xWWDnQyIBn3Kn083x3rUXgGABtQ-4ZPcgLEaQ&h=PsNlfOHNlhoQTbHOKt222dFsI8hbOeQss-lBhlqm_ck + cache-control: + - no-cache + content-length: + - '1256' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 72c965c0-3d63-4d7a-a92c-8df5769cd63e + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: AD8ACBB8B1C0497BB2B82922DE185083 Ref B: BL2AA2010201047 Ref C: 2024-03-03T21:22:12Z' + status: + code: 201 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -l -n --subnet-name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/74388c9f-1d58-4cf8-8cda-598988427f9d?api-version=2022-01-01&t=638450977339333487&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PC2T9Z3vaRiQrVAX_BRVL6A1ZKN3ZiSUtDcrdDaexAyDLC7x2t5MW_dXOfHfMVgYwSgwmFnk31fQs3c3yN1dR6ecfzqOkCBiH5ePuv9PyKsAKVVLfSHc3shOqn97aS93KHT_NKtultsi694IbK1q76B3Xpt3mHgT8FTVTIgByGvFbHZ1xzO6x6dGX6e5huGHYZwXS2X-EMY5WeQnqd0cdLo0nPBv_C7D9SyoewvoXHbFey2D7FlZ0QhyAfPi8myhh8JkT-M82PaHU-sRpNofkDl1vgxLhQ3y6zh4ZFFDso_42t6U6xWWDnQyIBn3Kn083x3rUXgGABtQ-4ZPcgLEaQ&h=PsNlfOHNlhoQTbHOKt222dFsI8hbOeQss-lBhlqm_ck + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6621dc4e-e24d-409f-a36e-5ae7bd658202 + x-msedge-ref: + - 'Ref A: 043A72052EC74073A74207951099BAE9 Ref B: BL2AA2010204009 Ref C: 2024-03-03T21:22:14Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -l -n --subnet-name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/74388c9f-1d58-4cf8-8cda-598988427f9d?api-version=2022-01-01&t=638450977339333487&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=PC2T9Z3vaRiQrVAX_BRVL6A1ZKN3ZiSUtDcrdDaexAyDLC7x2t5MW_dXOfHfMVgYwSgwmFnk31fQs3c3yN1dR6ecfzqOkCBiH5ePuv9PyKsAKVVLfSHc3shOqn97aS93KHT_NKtultsi694IbK1q76B3Xpt3mHgT8FTVTIgByGvFbHZ1xzO6x6dGX6e5huGHYZwXS2X-EMY5WeQnqd0cdLo0nPBv_C7D9SyoewvoXHbFey2D7FlZ0QhyAfPi8myhh8JkT-M82PaHU-sRpNofkDl1vgxLhQ3y6zh4ZFFDso_42t6U6xWWDnQyIBn3Kn083x3rUXgGABtQ-4ZPcgLEaQ&h=PsNlfOHNlhoQTbHOKt222dFsI8hbOeQss-lBhlqm_ck + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e22b949b-4c66-4ba7-aed9-f8f624895ebc + x-msedge-ref: + - 'Ref A: 0DE7D98FF04D4FC290C6FF3C8BD274DA Ref B: BL2AA2010202047 Ref C: 2024-03-03T21:22:24Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -l -n --subnet-name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n + \ \"etag\": \"W/\\\"93e85fae-e591-4e9b-9d63-4875ae93044b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"e7f4f5b8-2c2a-4a5e-8c95-4145c54c0339\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"cli000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n + \ \"etag\": \"W/\\\"93e85fae-e591-4e9b-9d63-4875ae93044b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1258' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:23 GMT + etag: + - W/"93e85fae-e591-4e9b-9d63-4875ae93044b" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - bb4a224e-1b8c-407f-acc1-4e449d67a827 + x-msedge-ref: + - 'Ref A: 68D57712BE4E429398156EB42BD8E842 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:22:24Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n + \ \"etag\": \"W/\\\"93e85fae-e591-4e9b-9d63-4875ae93044b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"e7f4f5b8-2c2a-4a5e-8c95-4145c54c0339\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"cli000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n + \ \"etag\": \"W/\\\"93e85fae-e591-4e9b-9d63-4875ae93044b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1258' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:24 GMT + etag: + - W/"93e85fae-e591-4e9b-9d63-4875ae93044b" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7750d15a-a371-4bf0-b431-c1fe26b9572a + x-msedge-ref: + - 'Ref A: DD80EF082F51455183C4E508F1B2D094 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:22:24Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment create + Connection: + - keep-alive + ParameterSetName: + - --assignee --role --scope + User-Agent: + - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.57.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27e5007d2c-4b13-4a74-9b6a-605d99f03501%27%29 + response: + body: + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '92' + content-type: + - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; + charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:25 GMT + odata-version: + - '4.0' + request-id: + - 89201220-81e8-4bbe-9b4d-df7128fb7dc8 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"006","RoleInstance":"BL6PEPF0001B9A9"}}' + x-ms-resource-unit: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"ids": ["e5007d2c-4b13-4a74-9b6a-605d99f03501"], "types": ["user", "group", + "servicePrincipal", "directoryObjectPartnerReference"]}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment create + Connection: + - keep-alive + Content-Length: + - '132' + Content-Type: + - application/json + ParameterSetName: + - --assignee --role --scope + User-Agent: + - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.57.0 + method: POST + uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds + response: + body: + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"e5007d2c-4b13-4a74-9b6a-605d99f03501","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"Azure + Cosmos DB","appDescription":null,"appId":"a232010e-820c-4083-83bb-3ace5fc29d0b","applicationTemplateId":null,"appOwnerOrganizationId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"createdDateTime":"2020-01-03T02:38:32Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"Azure + Cosmos DB","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["a232010e-820c-4083-83bb-3ace5fc29d0b"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[{"adminConsentDescription":"Allow + the application to access Azure Cosmos DB on behalf of the signed-in user.","adminConsentDisplayName":"Access + Azure Cosmos DB","id":"8741c20d-e8c0-41ff-8adf-b7b9ba168197","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access Azure Cosmos DB on your behalf.","userConsentDisplayName":"Access + Azure Cosmos DB as the Signed-in User","value":"user_impersonation"}],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1778' + content-type: + - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; + charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:25 GMT + location: + - https://graph.microsoft.com/ + odata-version: + - '4.0' + request-id: + - da973406-e50f-4721-bd78-2b2a6b09a62b + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"006","RoleInstance":"BL6PEPF0001B8AA"}}' + x-ms-resource-unit: + - '3' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "e5007d2c-4b13-4a74-9b6a-605d99f03501", "principalType": "ServicePrincipal"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment create + Connection: + - keep-alive + Content-Length: + - '270' + Content-Type: + - application/json + ParameterSetName: + - --assignee --role --scope + User-Agent: + - AZURECLI/2.57.0 azsdk-python-azure-mgmt-authorization/4.0.0 Python/3.10.11 + (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005","condition":null,"conditionVersion":null,"createdOn":"2024-03-03T21:22:26.3684411Z","updatedOn":"2024-03-03T21:22:26.7304499Z","createdBy":null,"updatedBy":"e8597856-0a27-43e0-be98-289d28c02f7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + headers: + cache-control: + - no-cache + content-length: + - '1017' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:30 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 00CE0EB8F29E4AD8A5078F2503BE8A49 Ref B: BL2AA2030101033 Ref C: 2024-03-03T21:22:26Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet show + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name --name + User-Agent: + - AZURECLI/2.57.0 (AAZ) azsdk-python-core/1.30.1 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006?api-version=2023-09-01 + response: + body: + string: '{"name":"cli000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","etag":"W/\"93e85fae-e591-4e9b-9d63-4875ae93044b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + cache-control: + - no-cache + content-length: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 03 Mar 2024 21:22:30 GMT + etag: + - W/"93e85fae-e591-4e9b-9d63-4875ae93044b" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8f9aeb16-1308-470b-84ef-ac17944ed4df + x-msedge-ref: + - 'Ref A: CE635CC147AB4B6A91A65051B9B12896 Ref B: BL2AA2010201003 Ref C: 2024-03-03T21:22:30Z' + status: + code: 200 + message: '' +- request: + body: '{"location": "eastus2", "identity": {"type": "None"}, "properties": {"delegatedManagementSubnetId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006", + "initialCassandraAdminPassword": "password", "clusterType": "Production"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + Content-Length: + - '344' + Content-Type: + - application/json + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:22:31.1856757Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:22:31.1856757Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 + 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalDataCenters":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{},"provisioningState":"Creating","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2QNM3GJNUI66R3ZK4LRQBFAMCCHUF4RZDOBPQVZMVCQLLBFNB4IAJT/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLINGOHHN7","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + cache-control: + - no-store, no-cache + content-length: + - '1652' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 60FC0AAC4066451D882DF26D559EF1A3 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:22:30Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:22:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: BFF91E149726460ABCDB93694C33018B Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:22:31Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 46826B1E956A41EFA4DD834A6518BEFB Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:23:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:23:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5C09EEED8F8F485E89F1273941E40B61 Ref B: BL2AA2010202019 Ref C: 2024-03-03T21:23:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:01 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7734835F43DD40629B8BC8C30376297D Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:24:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:24:31 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DC9D12226CDC41A7A1E17777B6D5AEA4 Ref B: BL2AA2030104003 Ref C: 2024-03-03T21:24:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:25:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C45627AFB7BB493291C15F511FD48CD5 Ref B: BL2AA2010202003 Ref C: 2024-03-03T21:25:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:25:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D19D1EF8C07D48ABBEF60A46555C84AC Ref B: BL2AA2030102049 Ref C: 2024-03-03T21:25:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 067B46E338E646B788D5993BE54F0A5C Ref B: BL2AA2030102053 Ref C: 2024-03-03T21:26:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:26:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E681AE29B4434E6AA6F4EB883A808D45 Ref B: BL2AA2030104029 Ref C: 2024-03-03T21:26:32Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DB5E3FDBFAD84DBCB69C85B7EF21F8B2 Ref B: BL2AA2030104049 Ref C: 2024-03-03T21:27:02Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:27:32 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DA76EA3631D848DEBF50BDD842919C08 Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:27:33Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:02 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 7DF6C9492A284BEE83EDCCB4295F902D Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:28:03Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/13e07b32-b5fb-4546-88aa-62c5723e7e8c?api-version=2024-02-15-preview&t=638450977517951498&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tHxmwMp3oed27NVfR5rznUiStJrz9qdhV1EU_ut21lLZ6vSIT2RN2iwf_UAM9yHpcPe4M2y1CJXWmloigWzN5UfJkd1ivulXlPknKLGMBFpLhD26yH-QIj736-WOyZEj5wivgQm65aUZ_S7fJv_YhmjIw1uB5X8X52r9FU7wFRSIq8SnFSV8mrVGL5X5w1VIEJzzyZpa3fl3eSGCV2kOrf9wvStaZxySG8npSFEvmNceGif4ThSMT6isSpTALtAf3am5YOV10XsY8JCBmhmVnBlH9hXAJr_4V-F7e7MiZsoA_vn138ODieTr8MTPYMYiYoPsDdWkZCW0gnJAsZYHYg&h=hhvOITyMYveg0LFX8qk8IEXQSmVTgoj5ENZcTKim1qk + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:33 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9100FC578BEB4F058BA4DEF48DBC498C Ref B: BL2AA2030101051 Ref C: 2024-03-03T21:28:33Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster create + Connection: + - keep-alive + ParameterSetName: + - -c -l -g -s -i + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:22:31.1856757Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:22:31.1856757Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 + 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalDataCenters":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN + CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2QNM3GJNUI66R3ZK4LRQBFAMCCHUF4RZDOBPQVZMVCQLLBFNB4IAJT/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLINGOHHN7","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '91482' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:33 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B7325DB0EDAF4AC2942D6F2A6C917BEC Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:28:33Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster show + Connection: + - keep-alive + ParameterSetName: + - -c -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:22:31.1856757Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:22:31.1856757Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 + 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalDataCenters":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN + CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2QNM3GJNUI66R3ZK4LRQBFAMCCHUF4RZDOBPQVZMVCQLLBFNB4IAJT/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLINGOHHN7","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '91482' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:34 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F5DD9F40052B4E80B992535F3B73EE8D Ref B: BL2AA2010201049 Ref C: 2024-03-03T21:28:34Z' + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"dataCenterLocation": "eastus2", "delegatedSubnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006", + "nodeCount": 3, "authenticationMethodLdapProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + Content-Length: + - '298' + Content-Type: + - application/json + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:28:35.1732418Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:28:35.1732418Z"},"properties":{"provisioningState":"Creating","dataCenterLocation":"East + US 2","deallocated":false,"delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + cache-control: + - no-store, no-cache + content-length: + - '937' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 9622D9FC63714224B3AE18080027D301 Ref B: BL2AA2010201051 Ref C: 2024-03-03T21:28:34Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:28:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 770AA2786D6E42998B2FAA7B9981EE6B Ref B: BL2AA2030102033 Ref C: 2024-03-03T21:28:35Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CEFCB8D21CEB49E995A072163A5043E2 Ref B: BL2AA2030101033 Ref C: 2024-03-03T21:29:05Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:29:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3BC2E637904F442F9DC25127BAEB6E47 Ref B: BL2AA2030103017 Ref C: 2024-03-03T21:29:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 782B1257330D4B9CA6331E20D2DD7511 Ref B: BL2AA2030104045 Ref C: 2024-03-03T21:30:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:30:35 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 25953D4896FE4CBD9631265E9198D67C Ref B: BL2AA2030104051 Ref C: 2024-03-03T21:30:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0EE464BEA83D456A92BEB1F8B4A8264F Ref B: BL2AA2030101007 Ref C: 2024-03-03T21:31:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:31:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 329BB923B9754B6FA93FCC00E0CD6DA4 Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:31:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:05 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 134AE43CD41D4927A2C453236497BEAD Ref B: BL2AA2030104029 Ref C: 2024-03-03T21:32:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:32:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 63133C1A8A5E455AA313DFB4158F3462 Ref B: BL2AA2010202051 Ref C: 2024-03-03T21:32:36Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 331A1067F4AE45B0B3B84A2626690375 Ref B: BL2AA2030101023 Ref C: 2024-03-03T21:33:06Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:33:36 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D0ED6E2BEC024C09842FA6B701DDF982 Ref B: BL2AA2030101037 Ref C: 2024-03-03T21:33:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:06 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 142EF34AFD6F48C9B70BE982949E0D46 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:34:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:34:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8B2F3CD2CB1B4BBB8AC20EC2820F7934 Ref B: BL2AA2010201051 Ref C: 2024-03-03T21:34:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C7B1025C3C5A40C1AE6BF26A7FE3FAB8 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:35:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:35:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 9AA9FEABBB284761BE992CB331B29E0B Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:35:37Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F8D90333E5D6414EBE92725ED12E2361 Ref B: BL2AA2010203017 Ref C: 2024-03-03T21:36:07Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:36:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 967537BD8B724268AA530896C5D87391 Ref B: BL2AA2010201029 Ref C: 2024-03-03T21:36:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DE20BAF05A6844DAB7EAA8B00C5D7F5D Ref B: BL2AA2030103005 Ref C: 2024-03-03T21:37:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:37:37 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B819B45FB61341C587B24813E9D2E4E1 Ref B: BL2AA2010204033 Ref C: 2024-03-03T21:37:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:07 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A82D99149F6F4909811A724BC2E986E7 Ref B: BL2AA2010202037 Ref C: 2024-03-03T21:38:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:38:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D225FED4D1B94BC99C40BCBB97A6378F Ref B: BL2AA2010204035 Ref C: 2024-03-03T21:38:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 1F6410F2749743A48762D63A66614833 Ref B: BL2AA2030104029 Ref C: 2024-03-03T21:39:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:39:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4DB33F3470D546019CD583D6425DE912 Ref B: BL2AA2030104029 Ref C: 2024-03-03T21:39:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 188E5C7ED8A64CAC97BC54F354765B86 Ref B: BL2AA2030102047 Ref C: 2024-03-03T21:40:08Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:40:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 14C4700B695647979AFF887FC9FA625C Ref B: BL2AA2010201003 Ref C: 2024-03-03T21:40:38Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:08 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 284BDD8BA0EE405DAE7913E68375CC05 Ref B: MNZ221060609011 Ref C: 2024-03-03T21:41:09Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:41:38 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 682327E9270E46E38ECCA1914483C6AD Ref B: BL2AA2010204025 Ref C: 2024-03-03T21:41:39Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 0350F774D388460585D6AD8C566B9851 Ref B: MNZ221060610031 Ref C: 2024-03-03T21:42:11Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:42:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2F14190F86A84D399A69ADBB9F893FD3 Ref B: BL2AA2010205011 Ref C: 2024-03-03T21:42:41Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 3A26E14F8AE94FF9B718DD64079F9B87 Ref B: BL2AA2030103031 Ref C: 2024-03-03T21:43:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:43:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: E5BAE88251814E7C96903386FE478E90 Ref B: MNZ221060609029 Ref C: 2024-03-03T21:43:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:11 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A6C1A6D7C13B471997C687AA456962F7 Ref B: MNZ221060608011 Ref C: 2024-03-03T21:44:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:44:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5F39F7BA60304C308B63B9D59489E0CC Ref B: MNZ221060609037 Ref C: 2024-03-03T21:44:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 826765D0041648DEAA4503E44ED8F9F2 Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:45:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:45:41 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 87A709274AC741D697C2AFC4A8078789 Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:45:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:46:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 44BDFFB9B42642348185E9E4178F3338 Ref B: BL2AA2030104009 Ref C: 2024-03-03T21:46:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:46:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 917B7E546C2D41718B93D17EC11DB12B Ref B: MNZ221060609017 Ref C: 2024-03-03T21:46:42Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:47:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DC885199F4F5481D9C9A2C3783C409BB Ref B: BL2AA2010201035 Ref C: 2024-03-03T21:47:12Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:47:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D49FEBDE08DE4ADF86CBB8F648C8D117 Ref B: BL2AA2010202009 Ref C: 2024-03-03T21:47:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:48:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 49B2F196B2F640F9A7581B26155C8EDA Ref B: BL2AA2010201003 Ref C: 2024-03-03T21:48:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:48:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6000334A19494376800DB950B594AA4C Ref B: BL2AA2010205021 Ref C: 2024-03-03T21:48:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 960D1310BAB4422D836DC2AA70688C26 Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:49:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:49:42 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 4B186C9B1186492F8D5E668735935920 Ref B: BL2AA2030101025 Ref C: 2024-03-03T21:49:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:12 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: ABF55A06C4BD4EDAB4A4CBC656C0A2BC Ref B: BL2AA2030104031 Ref C: 2024-03-03T21:50:13Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f6e2d28d-7059-4d5b-b242-defe191ee64e?api-version=2024-02-15-preview&t=638450981157512484&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tI1QVQQ4lUCy0Xb1rTz2tXamQmieO8IKIo2fqoR52L7zHwMbNCNZ5jsuzELVvcz8yeA2T0N5OGpzHeRQsnysa2rgZ-O3FczHjQtQeDDQ529lzOxmvQNOm2WhJlwJnhr8E9ILzWRlS1F2KnZW-6qXSHSi4bZrDDXVO7vbHXiUgkDrr4IatJeaABOxKl1VJCKdJjUgjzfdyqWmNknd1iUlmH11sBBhFvmTfbJRj-cgbWcKA292FDwjjfiZTlgUjxH4ahc2pJrNDdzMNvYjHzoAxBvKCet_5G7RDl4xBdNxdplIedYXwR0oSm6w0EP0xmfk4BodJ_eIV3Lhag7fx8oG7g&h=PXeqkjqL8DcSoFbuEtojWgsnlY0k6olKmpPLcIpp2aM + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 5D10747C16DD4C7C82100882CAA88A28 Ref B: MNZ221060610017 Ref C: 2024-03-03T21:50:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter create + Connection: + - keep-alive + ParameterSetName: + - -c -d -l -g -n -s + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:28:35.1732418Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:28:35.1732418Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"East + US 2","deallocated":false,"delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_E16s_v5","diskSku":"P30","diskCapacity":4}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1070' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:43 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 685C16B956AE4028AA966CFD1DB4ACBD Ref B: MNZ221060608035 Ref C: 2024-03-03T21:50:43Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter show + Connection: + - keep-alive + ParameterSetName: + - -c -d -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2024-02-15-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:28:35.1732418Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:28:35.1732418Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"East + US 2","deallocated":false,"delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_E16s_v5","diskSku":"P30","diskCapacity":4}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1070' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: CE8952D8ED2F437DBB618084FA14492F Ref B: MNZ221060610051 Ref C: 2024-03-03T21:50:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra datacenter list + Connection: + - keep-alive + ParameterSetName: + - -c -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters?api-version=2024-02-15-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:28:35.1732418Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:28:35.1732418Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"East + US 2","deallocated":false,"delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_E16s_v5","diskSku":"P30","diskCapacity":4}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1082' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:44 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 714A7C2B448743F6AEEA8B8E9647D714 Ref B: MNZ221060610011 Ref C: 2024-03-03T21:50:44Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2024-02-15-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:22:31.1856757Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:22:31.1856757Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 + 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalDataCenters":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN + CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2QNM3GJNUI66R3ZK4LRQBFAMCCHUF4RZDOBPQVZMVCQLLBFNB4IAJT/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLINGOHHN7","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '91568' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:45 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 65CFEA3816CE49B7BBDF5A6492002406 Ref B: MNZ221060609035 Ref C: 2024-03-03T21:50:45Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2024-02-15-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"agarwalvivek@microsoft.com","createdByType":"User","createdAt":"2024-03-03T21:22:31.1856757Z","lastModifiedBy":"agarwalvivek@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-03T21:22:31.1856757Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","azureConnectionMethod":"None","autoReplicate":"None","backupSchedules":[{"scheduleName":"DailyBackup-02:00UTC","cronExpression":"0 + 2 * * *","retentionInHours":48}],"cassandraVersion":"4.0","clientCertificates":[],"deallocated":false,"clusterType":"Production","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","extensions":[],"externalDataCenters":[],"externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"-----BEGIN + CERTIFICATE-----\r\nMIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgx\r\nMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQI\r\nMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0\r\ncDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYI\r\nKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHV\r\nLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB\r\nCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyY\r\noiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gz\r\nbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8s\r\njX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopY\r\nJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw\r\nMDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn\r\nTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5\r\nBmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H\r\n4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y\r\n7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB\r\no2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm\r\n8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF\r\nBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr\r\nEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt\r\ntep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886\r\nUAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk\r\nCAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6DCCA9CgAwIBAgIQAnQuqhfKjiHHF7sf/P0MoDANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRp\r\nZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC\r\nggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSv\r\nx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1\r\nm5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatE\r\np0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJ\r\nTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAa4wggGqMB0GA1UdDgQWBBQP\r\ngGEcgjFh1S8o541GOLQs4cbZ4jAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3RVTAOBgNV\r\nHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5j\r\nb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2Jh\r\nbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0Rp\r\nZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAECATAIBgZn\r\ngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBCwUAA4IBAQB3MR8Il9cSm2PSEWUIpvZlubj6kgPL\r\noX7hyA2MPrQbkb4CCF6fWXF7Ef3gwOOPWdegUqHQS1TSSJZI73fpKQbLQxCgLzwWji3+HlU87MOY\r\n7hgNI+gH9bMtxKtXc1r2G1O6+x/6vYzTUVEgR17vf5irF0LKhVyfIjc0RXbyQ14AniKDrN+v0ebH\r\nExfppGlkTIBn6rakf4994VH6npdn6mkus5CkHBXIrMtPKex6XF2firjUDLuU7tC8y7WlHgjPxEED\r\nDb0Gw6D0yDdVSvG/5XlCNatBmO/8EznDu1vr72N8gJzISUZwa6CCUD7QBLbKJcXBBVVf8nwvV9Gv\r\nlW+sbXlr\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIE6jCCA9KgAwIBAgIQCjUI1VwpKwF9+K1lwA/35DANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjQwMDAwMDBaFw0zMDA5MjMy\r\nMzU5NTlaME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERp\r\nZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0ExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAwUuzZUdwvN1PWNvsnO3DZuUfMRNUrUpmRh8sCuxkB+Uu3Ny5CiDt3+PE0J6aqXodgojl\r\nEVbbHp9YwlHnLDQNLtKS4VbL8Xlfs7uHyiUDe5pSQWYQYE9XE0nw6Ddng9/n00tnTCJRpt8OmRDt\r\nV1F0JuJ9x8piLhMbfyOIJVNvwTRYAIuE//i+p1hJInuWraKImxW8oHzf6VGo1bDtN+I2tIJLYrVJ\r\nmuzHZ9bjPvXj1hJeRPG/cUJ9WIQDgLGBAfr5yjK7tI4nhyfFK3TUqNaX3sNk+crOU6JWvHgXjkkD\r\nKa77SU+kFbnO8lwZV21reacroicgE7XQPUDTITAHk+qZ9QIDAQABo4IBrjCCAaowHQYDVR0OBBYE\r\nFLdrouqoqoSMeeq02g+YssWVdrn0MB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4G\r\nA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgw\r\nBgEB/wIBADB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\r\nLmNvbTBABggrBgEFBQcwAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xv\r\nYmFsUm9vdENBLmNydDB7BgNVHR8EdDByMDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDegNaAzhjFodHRwOi8vY3JsNC5kaWdpY2VydC5jb20v\r\nRGlnaUNlcnRHbG9iYWxSb290Q0EuY3JsMDAGA1UdIAQpMCcwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgG\r\nBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQADggEBAHert3onPa679n/gWlbJhKrKW3EX\r\n3SJH/E6f7tDBpATho+vFScH90cnfjK+URSxGKqNjOSD5nkoklEHIqdninFQFBstcHL4AGw+oWv8Z\r\nu2XHFq8hVt1hBcnpj5h232sb0HIMULkwKXq/YFkQZhM6LawVEWwtIwwCPgU7/uWhnOKK24fXSuhe\r\n50gG66sSmvKvhMNbg0qZgYOrAKHKCjxMoiWJKiKnpPMzTFuMLhoClw+dj20tlQj7T9rxkTgl4Zxu\r\nYRiHas6xuwAwapu3r9rxxZf+ingkquqTgLozZXq8oXfpf2kUCwA/d5KxTVtzhwoT0JzI8ks5T1KE\r\nSaZMkE4f97Q=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQDxSWXyAgaZlP1ceseIlB4jANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCq\r\nYnfPmmOyBoTzkDb0mfMUUavqlQo7Rgb9EUEf/lsGWMk4bgj8T0RIzTqk970eouKVuL5RIMW/snBj\r\nXXgMQ8ApzWRJCZbar879BV8rKpHoAW4uGJssnNABf2n17j9TiFy6BWy+IhVnFILyLNK+W2M3zK9g\r\nheiWa2uACKhuvgCca5Vw/OQYErEdG7LBEzFnMzTmJcliW1iCdXby/vI/OxbfqkKD4zJtm45DJvC9\r\nDh+hpzqvLMiK5uo/+aXSJY+SqhoIEpz+rErHw+uAlKuHFtEjSeeku8eR3+Z5ND9BSqc6JtLqb0bj\r\nOHPm5dSRrgt4nnil75bjc9j3lWXpBb9PXP9Sp/nPCK+nTQmZwHGjUnqlO9ebAVQD47ZisFonnDAm\r\njrZNVqEXF3p7laEHrFMxttYuD81BdOzxAbL9Rb/8MeFGQjE2Qx65qgVfhH+RsYuuD9dUw/3wZAhq\r\n05yO6nk07AM9c+AbNtRoEcdZcLCHfMDcbkXKNs5DJncCqXAN6LhXVERCw/usG2MmCMLSIx9/kwt8\r\nbwhUmitOXc6fpT7SmFvRAtvxg84wUkg4Y/Gx++0j0z6StSeN0EJz150jaHG6WV4HUqaWTb98Tm90\r\nIgXAU4AW2GBOlzFPiU5IY9jt+eXC2Q6yC/ZpTL1LAcnL3Qa/OgLrHN0wiw1KFGD51WRPQ0Sh7QID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFLV2DDARzseSQk1Mx1wsyKkM6AtkMB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCfK76SZ1vae4qt6P+dTQUO7bYNFUHR\r\n5hXcA2D59CJWnEj5na7aKzyowKvQupW4yMH9fGNxtsh6iJswRqOOfZYC4/giBO/gNsBvwr8uDW7t\r\n1nYoDYGHPpvnpxCM2mYfQFHq576/TmeYu1RZY29C4w8xYBlkAA8mDJfRhMCmehk7cN5FJtyWRj2c\r\nZj/hOoI45TYDBChXpOlLZKIYiG1giY16vhCRi6zmPzEwv+tk156N6cGSVm44jTQ/rs1sa0JSYjzU\r\naYngoFdZC4OfxnIkQvUIA4TOFmPzNPEFdjcZsgbeEz4TcGHTBPK4R28F44qIMCtHRV55VMX53ev6\r\nP3hRddJb\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE\r\nChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li\r\nZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC\r\nSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs\r\ndGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME\r\nuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB\r\nUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C\r\nG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9\r\nXbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr\r\nl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI\r\nVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB\r\nBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh\r\ncL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5\r\nhbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa\r\nY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H\r\nRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFWjCCBEKgAwIBAgIQD6dHIsU9iMgPWJ77H51KOjANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIwMDcyMTIzMDAwMFoXDTI0MTAwODA3MDAwMFow\r\nTzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEgMB4GA1UEAxMX\r\nTWljcm9zb2Z0IFJTQSBUTFMgQ0EgMDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQD0\r\nwBlZqiokfAYhMdHuEvWBapTj9tFKL+NdsS4pFDi8zJVdKQfR+F039CDXtD9YOnqS7o88+isKcgOe\r\nQNTri472mPnn8N3vPCX0bDOEVk+nkZNIBA3zApvGGg/40Thv78kAlxibMipsKahdbuoHByOB4ZlY\r\notcBhf/ObUf65kCRfXMRQqOKWkZLkilPPn3zkYM5GHxeI4MNZ1SoKBEoHa2E/uDwBQVxadY4SRZW\r\nFxMd7ARyI4Cz1ik4N2Z6ALD3MfjAgEEDwoknyw9TGvr4PubAZdqU511zNLBoavar2OAVTl0Tddj+\r\nRAhbnX1/zypqk+ifv+d3CgiDa8Mbvo1u2Q8nuUBrKVUmR6EjkV/dDrIsUaU643v/Wp/uE7xLDdhC\r\n5rplK9siNlYohMTMKLAkjxVeWBWbQj7REickISpc+yowi3yUrO5lCgNAKrCNYw+wAfAvhFkOeqPm\r\n6kP41IHVXVtGNC/UogcdiKUiR/N59IfYB+o2v54GMW+ubSC3BohLFbho/oZZ5XyulIZK75pwTHma\r\nuCIeE5clU9ivpLwPTx9b0Vno9+ApElrFgdY0/YKZ46GfjOC9ta4G25VJ1WKsMmWLtzyrfgwbYopq\r\nuZd724fFdpvsxfIvMG5m3VFkThOqzsOttDcUfyMTqM2pan4txG58uxNJ0MjR03UCEULRU+qMnwID\r\nAQABo4IBJTCCASEwHQYDVR0OBBYEFP8vf+EG9DjzLe0ljZjC/g72bPz6MB8GA1UdIwQYMBaAFOWd\r\nWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYI\r\nKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGG\r\nGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vY3JsMy5k\r\naWdpY2VydC5jb20vT21uaXJvb3QyMDI1LmNybDAqBgNVHSAEIzAhMAgGBmeBDAECATAIBgZngQwB\r\nAgIwCwYJKwYBBAGCNyoBMA0GCSqGSIb3DQEBCwUAA4IBAQCg2d165dQ1tHS0IN83uOi4S5heLhsx\r\n+zXIOwtxnvwCWdOJ3wFLQaFDcgaMtN79UjMIFVIUedDZBsvalKnx+6l2tM/VH4YAyNPx+u1LFR0j\r\noPYpQYLbNYkedkNuhRmEBesPqj4aDz68ZDI6fJ92sj2q18QvJUJ5Qz728AvtFOat+AjgK0PFqPYE\r\nAviUKr162NB1XZJxf6uyIjUlnG4UEdHfUqdhl0R84mMtrYINksTzQ2sHYM8fEhqICtTlcRLr/FEr\r\nUaPUe9648nziSnA0qKH7rUZqP/Ifmbo+WNZSZG1BbgOhlk+521W+Ncih3HRbvRBE0LWYT8vWKnfj\r\ngZKxwHwJ\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyrRygnavXL\r\n7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6nl/jYvZnVeJXjtsKYcXIf\r\n/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdmGW/JI0C/7U/E7evXn9XDio8SYkGSM63a\r\nLO5BtLCv092+1d4GGBSQYolRq+7Pd1kREkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVs\r\niUeE7F5sY8Me96WVxQcbOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi\r\n9r5UrvYoo19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO4bCk\r\n1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc47IxyVccHHq1FzGyg\r\nOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cjWGVGtMZHwzVvX1HvSFG771sskcEj\r\nJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpRGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g3\r\n7Y72qHzidwtyW7rBetZJAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5y\r\ngHYwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBAWxKJoi8YYQafpMTkMqeu\r\nzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBsK9KcStQGGZRfmWU07hPXHnFz+5gTXqzC\r\nE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8J\r\nGqMU/UjAdh1pFyTnnHElY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDT\r\njHaQcs2J+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx\r\nMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3\r\ndy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq\r\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ\r\nkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO\r\n3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV\r\nBJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM\r\nUNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB\r\no0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu\r\n5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr\r\nF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U\r\nWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH\r\nQRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/\r\niyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+XbwjEz+5Ci\r\npDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMYiwdRd3Y39b/lcGpiuP2d\r\n23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99ThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lR\r\neUnd1aNjRYVzPOoifgSx2fRyy1+pO1UzaMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUED\r\nqQuBfBxReL5mXiu1O7WG0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA\r\n5fl6JB0Qgs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0ssRfF\r\nJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjhlxuoK2n5/2aVR3BM\r\nTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60N2oV7vQ17wjMN+LXa2rjj/b4ZlZg\r\nXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2CZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHj\r\nzwW/9FxGqry57i71c2cDAgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVo\r\nu6UwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF+rA2LUK5IOQOgcUSTGKS\r\nqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+cS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7R\r\nIAAUW6EzDflUoDHKv83zOiPfYGcpHc9skxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5\r\nhwRlGhBJwps6fEVi1Bt0trpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0G\r\nMXlHqThy8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GKDnwygZdK\r\n6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5tq1WdKsPkitPws6V8MWa\r\n5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1MfsitAWVp6hiWANkWKINfRcdt3Z2A23hm\r\nMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgObJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/z\r\nr2Wet5KEcUDtUBhA4dUUoaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kx\r\nWkH6kgO5gTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02r5q5\r\nB/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB5nw0cJY1QHOr3nIv\r\nJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pCHeiXCNpv+fadwP0k8czaf2Vs19nY\r\nsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4HGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte\r\n/bsuAEF4ajkPEES3GHP9AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZS\r\namgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu+oZaKaIu7U3NidykFr99\r\n4jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kOvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DL\r\nKTp2Ox0+jYBCPxla5FO252qpk7/6wt8SZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5\r\nFPzqKoSqN75byLjsIKJEdNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6T\r\nGu1moh4aE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2Mjcy\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo\r\nBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEB\r\nBQADggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra3VBo7Qzn\r\nC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPSu6D804ri0NFZ1SOP9Izj\r\nYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1dskMuVpT4z0MpgEMmxQnrSZ615rBQ25vn\r\nVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5xq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Q\r\nc34RgxQdZsLXMUrWuL1JLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVD\r\niIiXWF0c9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHyis01\r\nzkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ/nV94l+hYp+GLW7j\r\nSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInPoi1PqN4TudNv0GyBF5tRC/aBjUqp\r\nly1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bnKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfL\r\nUFc4hYb3YyIIYGmqm2/3AgMBAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKli\r\nZ/0wHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEB\r\nBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRo\r\ndHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1Ud\r\nHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMA0G\r\nCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfeZd7TR1837H6DSkFa/mGM\r\n1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGHiyx5421+HpRxMQIRjligePtOtRGXwaNO\r\nQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCq\r\nuAV0PksZj7EC4nK6e/UVbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0Es\r\nO3MgjS3eDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQDo2+XqYQ5su1acc29tcASzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDIwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlxJr7ThHOTChFtITU0Taop1bFSVf3h9toLKI7bi0GVWd3a3uQVIImulk4pdVuOkoC\r\nI+wEIBkrsEnNUrH28+uUXb48SnwzdhArFcG3zygvZEnBYdcWNlOLKZ5XZhqUZKKjggGtMIIBqTAd\r\nBgNVHQ4EFgQUneUOdzdHngkz2ZC+KgnCEn9O0qMwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMCIdzL1WliSNxC+uX8Iz\r\ngfyxdmELlX0I7TtWowrKUov8QSfi57irRIGpHvmxoFW7XQIxAPdJJZ/jAbKJ5lS21mLnKcdsctXO\r\ntl2eFVqGSfIFWbJUihZCKesfoSMThZ4fa/Ir8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw\r\nMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k\r\naWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C\r\nAQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O\r\nYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y\r\n3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34\r\nVOKa5Vt8sycX\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqDCCAy6gAwIBAgIQBm55zXYkxjEwx3q+tqi7lDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDYwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARodFftKDyrox+TSSyDI1N0mihPAZTht8YaqlSbw8xGGrHBU6msYCcfjOdsbxmOyYv4\r\naF1IlXQWxionC+Z4BuqhQobPhgmB6sFxES9K441KK9QLTUWQYapoCbyfodkT/JqjggGtMIIBqTAd\r\nBgNVHQ4EFgQUH87HnWRTX7b8lQeulSYzUcEn2SYwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2gAMGUCMC6mseL4nziiCiMxO4ZV\r\nukItZ0JU3nZqpHmDkw3apBtupflaKdHeRqDc/jYXJJagnAIxAPTYJFPD55v1mmssDLRzYpB1DIJT\r\nasbhYvJr69O4PdqSjyrJzduOGHdE3+5NmWy/Ag==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQCdxCpfV0/zo4nuBtXU3kQDAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDEwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAAS2l9suuS4cCc6TIq49UKNhdFf8aqX+bCNy9qS+Z6oMvojY9juMwieyeWnamryKdYYm\r\nm/Gp7dLAJdOqbDPkpjf1hwFpXzfHvMS7dkYAOZznH9xAXB2DhYZtyhGqcyE6j5yjggGtMIIBqTAd\r\nBgNVHQ4EFgQUqv0wDdei1e+KencxqmamwmwRu28wHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQDQRUmslOjL+aU3alpy\r\neQ9dwKPz1wGGCTBQqaB/99pLQQEjTd3qyc9dX2Pw8ZRnR4oCMQC+BRXUqY73PRgE7vNdX6Jwrwof\r\nyl27okJaXLVbi6O96eB3a59r8IytP2M8Pubw0hM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDqTCCAy6gAwIBAgIQDOWcMP16g1MuLQFGszL5ZTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMDA4MTIwMDAwMDBaFw0yNDA2MjcyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDUwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATMpLWI9tiXgEukKWh1kjMYAKbaq50AY1+CBCU/yuChcnzPTKO8Jgj00Z4y2Ic41I59\r\nkHUW7v10Ug2eFNaW6LEwnKkab33I+nswrHlTK0009agqhbSVs1LByY/g26RvTt2jggGtMIIBqTAd\r\nBgNVHQ4EFgQUVd/uHies8p4rnoA5NXlWRzrOsxAwHwYDVR0jBBgwFoAUs9tIpPmhxdiuNkHMEWNp\r\nYim8S8YwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNV\r\nHRMBAf8ECDAGAQH/AgEAMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMBAGCSsGAQQBgjcVAQQDAgEAMAoGCCqGSM49BAMDA2kAMGYCMQCu22LB4kPjxpFT4OeZ\r\nuLnvAnjQe7bEn4xSyqCz+N54fjhE0lWrh80BvbiKtL0RQTsCMQDvmxaAuzNlRJctCgdw8UUAS4Jg\r\nj0Z1YCj/1pNDE/Jvfb3T81ELCvjeXnMjIlgYNP8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEQzCCAyugAwIBAgIQCidf5wTW7ssj1c1bSxpOBDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMDA5MjMwMDAwMDBaFw0zMDA5MjIy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAa4wggGqMB0GA1Ud\r\nDgQWBBQKvAgpF4ylOW16Ds4zxy6z7fvDejAfBgNVHSMEGDAWgBQD3lA1VtFMu2bwo+IbG8OXsj3R\r\nVTAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwewYDVR0fBHQwcjA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA3oDWgM4YxaHR0cDovL2NybDQuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDAwBgNVHSAEKTAnMAcGBWeBDAEBMAgGBmeBDAEC\r\nATAIBgZngQwBAgIwCAYGZ4EMAQIDMA0GCSqGSIb3DQEBDAUAA4IBAQDeOpcbhb17jApY4+PwCwYA\r\neq9EYyp/3YFtERim+vc4YLGwOWK9uHsu8AjJkltz32WQt960V6zALxyZZ02LXvIBoa33llPN1d9R\r\nJzcGRvJvPDGJLEoWKRGC5+23QhST4Nlg+j8cZMsywzEXJNmvPlVv/w+AbxsBCMqkBGPI2lNM8hkm\r\nxPad31z6n58SXqJdH/bYF462YvgdgbYKOytobPAyTgr3mYI5sUjeCzqJx1+NLyc8nAK8Ib2HxnC+\r\nIrrWzfRLvVNve8KaN9EtBH7TuMwNW4SpDCmGr6fY1h3tDjHhkTb9PA36zoaJzu0cIw265vZt6hCm\r\nYWJC+/j+fgZwcPwL\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEFzCCAv+gAwIBAgIQB/LzXIeod6967+lHmTUlvTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0yMTA0MTQwMDAwMDBaFw0zMTA0MTMy\r\nMzU5NTlaMFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0Rp\r\nZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMTB2MBAGByqGSM49AgEGBSuBBAAi\r\nA2IABMEbxppbmNmkKaDp1AS12+umsmxVwP/tmMZJLwYnUcu/cMEFesOxnYeJuq20ExfJqLSDyLiQ\r\n0cx0NTY8g3KwtdD3ImnI8YDEe0CPz2iHJlw5ifFNkU3aiYvkA8ND5b8vc6OCAYIwggF+MBIGA1Ud\r\nEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFAq8CCkXjKU5bXoOzjPHLrPt+8N6MB8GA1UdIwQYMBaA\r\nFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcD\r\nAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdp\r\nY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy\r\ndEdsb2JhbFJvb3RDQS5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQu\r\nY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdENBLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVn\r\ngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQwFAAOCAQEAR1mB\r\nf9QbH7Bx9phdGLqYR5iwfnYr6v8ai6wms0KNMeZK6BnQ79oU59cUkqGS8qcuLa/7Hfb7U7CKP/zY\r\nFgrpsC62pQsYkDUmotr2qLcy/JUjS8ZFucTP5Hzu5sn4kL1y45nDHQsFfGqXbbKrAjbYwrwsAZI/\r\nBKOLdRHHuSm8EdCGupK8JvllyDfNJvaGEwwEqonleLHBTnm8dqMLUeTF0J5q/hosVq4GNiejcxwI\r\nfZMy0MJEGdqN9A57HSgDKwmKdsp33Id6rHtSJlWncg+d0ohP/rEhxRqhqjn1VtvChMQ1H3Dau0bw\r\nhr9kAMQ+959GG50jBbl9s08PqUU643QwmA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrTCCBJWgAwIBAgIQB9JqWPDx4GjFlGd8ZBuA+DANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQG\r\nEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlC\r\nYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTIyMDQwNzAwMDAwMFoXDTI1MDUxMTIzNTk1OVow\r\nSjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEbMBkGA1UEAxMS\r\nTVNGVCBCQUxUIFJTMjU2IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwTgQW2vE\r\ntqjPda6g6ZwoqAqb1mdoiFEqeYB8nex6Y0mSgW8NnF4C+MiF1MCFjSlWYgkIVycQ4E86g7znUL1u\r\nVdkEol39U6UiogypLAsQh58fDe7goJrTE36BfQBeS9qx/rvfUPv/PhR74miZsc7nOUsaoMMS76LN\r\nymDhXD+imVseHynsmN2D2AJQZ/7nompXsn/NHIdQF2hqFdLqb6tanGSZuCqCvnf9kJ7RNQipq8lo\r\nzQhWSIQu6tQh2Rs+1iv2wEH7XJgSq8rcsnk4qI9uzfcvhPUNwU14a2rtnahcfUBHrjsaCsB7Ubgj\r\nqi+s9j3POkBCcBDW4x84kAwhpGNYIp1abupXdBPPZYZ6VI3ViA9xeoql/ig8tlGLHsalfYb69Hbm\r\nMGdrwDYmf4YIuLmWSBBynmOJUcNSaDSEtKxERNwcUHzrrp9A9SaC4eg8ZK6J5R5mbVr5eegELzWT\r\nvPtXjiCXlfDvpr+PXLchwEkV3xjymdZd7eq+NmaSafY5mCm/C/KF5eQOhgaXomERa2brYyUazJPQ\r\nzoyHwFOdKpfNINqRg+TnzwXoapbZzVXdquafgUYuHOa28T8/nv85tV20kxQMUy+ICV4anHsAibEp\r\nzgLuDV1Cl9CpoDMOL7fFYOpKXn/zLAG5ZyWW6h426JHq5SKWV4z4utoSDiqMGsZpL1UCAwEAAaOC\r\nAX0wggF5MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEa78CwfKmRLIeiu3crbctSqIShc\r\nMB8GA1UdIwQYMBaAFOWdWTCCR1jMrPoIVDaGezq1BE3wMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUE\r\nFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRw\r\nOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0\r\nLmNvbS9CYWx0aW1vcmVDeWJlclRydXN0Um9vdC5jcnQwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov\r\nL2NybDMuZGlnaWNlcnQuY29tL09tbmlyb290MjAyNS5jcmwwPQYDVR0gBDYwNDALBglghkgBhv1s\r\nAgEwBwYFZ4EMAQEwCAYGZ4EMAQIBMAgGBmeBDAECAjAIBgZngQwBAgMwDQYJKoZIhvcNAQELBQAD\r\nggEBADOP/3F1jZdadZfbmTfTRjJXHHjisxhiFlVL87cG9PLYIgn5E3xfuGKBnaGXnfdGlPBQuwB2\r\nlKIUA1/JuE5CYF//6Kpa087EDV+Vn3pJ04VkIibNi48Efjs6ROSWPeSd/CzqXB15LbeLB8v7tm4f\r\nsD7CRhERJJUfVkGP8s9249cy7V63SovqP6EYQhFxP0lwJUbzhmMNx37mjnK9dMiKhNKhGQ2KUBdH\r\n/NuiuBL11h2mFowSiuNq6sGBNv9JwwKBHQQ05jhzxXEJiw9lcCYg+2yIk5p6IY4ArdAwi4oZ4knE\r\noyyUmOQy/MkTEdsSptaEbOoBncTBFX2YkXulNYTPyz4=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEtjCCA56gAwIBAgIQCv1eRG9c89YADp5Gwibf9jANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMjA0MjgwMDAwMDBaFw0zMjA0Mjcy\r\nMzU5NTlaMEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAW\r\nBgNVBAMTD01TRlQgUlMyNTYgQ0EtMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMiJ\r\nV34oeVNHI0mZGh1Rj9mdde3zSY7IhQNqAmRaTzOeRye8QsfhYFXSiMW25JddlcqaqGJ9GEMcJPWB\r\nIBIEdNVYl1bB5KQOl+3m68p59Pu7npC74lJRY8F+p8PLKZAJjSkDD9ExmjHBlPcRrasgflPom3D0\r\nXB++nB1y+WLn+cB7DWLoj6qZSUDyWwnEDkkjfKee6ybxSAXq7oORPe9o2BKfgi7dTKlOd7eKhotw\r\n96yIgMx7yigE3Q3ARS8m+BOFZ/mx150gdKFfMcDNvSkCpxjVWnk//icrrmmEsn2xJbEuDCvtoSNv\r\nGIuCXxqhTM352HGfO2JKAF/Kjf5OrPn2QpECAwEAAaOCAYIwggF+MBIGA1UdEwEB/wQIMAYBAf8C\r\nAQAwHQYDVR0OBBYEFAyBfpQ5X8d3on8XFnk46DWWjn+UMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP\r\n+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\r\ndgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYI\r\nKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH\r\nMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0\r\nR2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwCATAHBgVngQwBATAIBgZngQwB\r\nAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOCAQEAdYWmf+ABklEQShTbhGPQ\r\nmH1c9BfnEgUFMJsNpzo9dvRj1Uek+L9WfI3kBQn97oUtf25BQsfckIIvTlE3WhA2Cg2yWLTVjH0N\r\ny03dGsqoFYIypnuAwhOWUPHAu++vaUMcPUTUpQCbeC1h4YW4CCSTYN37D2Q555wxnni0elPj9O0p\r\nymWS8gZnsfoKjvoYi/qDPZw1/TSRpenOgI6XjmlmPLBrk4LIw7P7PPg4uXUpCzzeybvARG/NIIkF\r\nv1eRYIbDF+bIkZbJQFdB9BjjlA4ukAg2YkOyCiB8eXTBi2APaceh3+uBLIgLk8ysy52g2U3gP7Q2\r\n6Jlgq/xKzj3O9hFh/g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAAC/68G9ml+JGnAAAAAAALzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM1WhcN\r\nMjYwNjI0MjA1NzM1WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKAYz8zB6I+LeiWYURf1QUaISydvRgxWfcc6UvEiwvry\r\nj2UsRfFuREo2ErLTvP9qQ9E0YBTyWEqI2TXn4jo2uZ2cpGODiQQWlixeaAFcYgSqLzidFXj401vz\r\nQsz4E0zylD/ZeY+xkQ6xrdg5312x2u2Ap7AWLzqolZHZgR0aicn9gcO6M4qn6Uuge8mOve1N7U6j\r\n8ebhSiw0KlkzY9ha1Kvrez+NXQdeLC+VPDWPPPlBWeysTnIM6dusbV1v2/C7Ooz9TuGb8wiXRriP\r\npI7+igSIPqBebF00rHGJDmx9eN3g78VF9JpTrrRkV8alpMYVZKAh9IzMp9NWVZsw5wgZaX2W05Sa\r\nXkSHP3zROBANhKzwkBkCcDMbmF1LFOk+wgkcEtFlKEnfgvOQVHTp02gTzyhSxstw0buon4CyZAm1\r\nL+6bJJ+puNL8HuLTJxq1mqiaY0T50olJeySSX5uJBo/l29Pz+0WjANnhRLVqe5xdxPV11QGHDxnv\r\nsXaMgC4y/5sLo5v4UEZT+4VDcKiRHReusJD+kUt92FSYqWTKxs6zwuxf25as/rJbZT99o9QVFLfH\r\nEs6DgHKNIqQuVxZxH0T3M6XqfmnRTo1FrD8ip/93Q4zQta5S9whe/sAxpizwyMw/9fhBDHGVHfgF\r\nV1C0EP9zxkyHEya0CGAMhbzp+0Y/ZYxrAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFOtMMXw9PzK4g9fF23va5HjanBRXMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQAkucWkMrgs2ahYrG7y4sY2yZno4f9TGyk7p+Srg4Yz/g7LmVeyOob9o579Omw9\r\nAiyeDK8Y/dXnTTof+sKJrlNTpIzyEBkzCiGGkWtp7x2yxLCm12L65wtmD/6OAV9Bm1kOhf3p7v+d\r\n3gtFt7cw46W35lr+fguy62s7uuytTV9hfhQ0pp2E2E9F6B7U71jR4bC+6zGq+34AmqTirjKHwXOh\r\nWDRDpEJIkaFAh+qdz/nqJktZj3n5GdC94jfWrMUJjClGjlc4+Ws3AxN46oFpx8oIXDG9wIPfFhUf\r\n0SdnCYJL8TD5+qBNp0H5q/V2R31Wi8rijHGQ4CxHqzP5VJbjgvRQgxAp39BrmLQ+JSvf9e5VqQqa\r\nH4NYgpB1WObq12B73BJHjBOvpRrULFjPqDW8sPRBzBTRXkXOPEdZbzQj6O/CWEFsg6ilO4thk3n3\r\ndrb9FEJjVh9uGtRXV6Ea5bNaPvJppZNXb7M9mORk3mddx/K1FgOETQE3quh+mU4ojbSRUWMVmjcb\r\n6bKF5oQd+Q0do4yaEIfH1oVnIas/FIE/xu3Z4fvBs0qdiNLCeNT6uS26vqD2PEvVlFWb683Do3Ls\r\n59MMCxhy6Erb7kFQgu1oUWXGFhbMQkeLN4TXGi6X3loXYfING9omnWa/udxvPRwAZmcHU2l2W8cw\r\nVXiy6uucsh3kPQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw\r\nNzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw\r\nggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml\r\n7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e\r\nS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7\r\n1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+\r\ndkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F\r\nyGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS\r\nMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr\r\nlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ\r\n0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ\r\nClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw\r\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC\r\nNxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og\r\n6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80\r\ndK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk\r\n+ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex\r\n/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy\r\nAmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW\r\nZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE\r\n7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT\r\nc0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D\r\n5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADJETXUhNBSWqQAAAAAAMjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzQwWhcN\r\nMjYwNjI0MjA1NzQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL28YfGMKaaA3aFSX4S0CqcMBgt6nWcNV3mlKE9XH2yi\r\nEQJf3xOAW+22DPRcbpjMkfj7m88h4GbKblK2VTyhjdHDCnHwi7f1Q5zY/H8XWLqiPYfKPAuq53QD\r\n5o5wPjyfMCouFwOzEkUBAN7xlpkiRkN0G4OI2miP3Jx7GecbmyqJnbdL6C84iKH4j8PN10KNLtTR\r\na6W0LjZHEQFoIrIQ/+VqXpBW/AoSGek6+anEZkRBtZ5AxRV0P/aQXhE5+Mxiv18T3aYXB5+cImcx\r\ncWXIlITDydAYO+P8RgM2PZ95QjUagR33+4zkoopss/XH0FtdjmdTLa9pyXXIFjy94jnqZbo1sGgF\r\nVyFx2vdcnk0ssH8VbS20amKsRsbhBfVaFQX1j0KRgepL+KW50EYhoTXEiB7TgT7agqpDivWJ5o5s\r\n7f9/YrHi/+gNQLyVdsvBovL6N6lzjXpy0wTlQv+IIHwzDu7mRu+aFR+gwsB/LF+VtTtxbK3l9deI\r\nqikgyRrQHcjFhkeF26R9bmgPgV4vGOEJBlctLiJ29Ihiy4y00tu346bSnvxDGSxKHQz+KE4fTYyR\r\n/XgIasIUwmW12sB6NhdkCJTE9KBPrN3tWzaiPNvKnvcGG2vZ2jXvmBOXsq46R9iiQ6e3ywU9+lLe\r\nOeXMvMeIxSUCEX89F1vL4+vwe9/CIf6BAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFMmEljhzpi5LGGptRNWUo300psf3MB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCdEQ+ePCPMaq87pCqCJKdniTeRKIYI/jv15KRw89WoYi7H+XWz8v2MawuffAuF\r\n/LS+CKq9pIh2RlR7oLeymU6ZKQ+HKLDNkKAyEbSqvVjg0sQGOYDNu1SIOwywkZFLowWtzetCOzhN\r\nE/ujq2H0Lz6biPK7cgK+2afg5iJfy2N9bftR7MKV1jcidk5JbMyMJWPnHirS4erYiQymmvive2mr\r\njewZAykUkqTuGtNuumnQtaDm+aW7c+SJkn7uhTavShnLZeH8LfA5+I+obJg22ZNvg5KSQ0Sglsi2\r\n0uSuVnzAvIjaOvWlIxcBnhLIKuxUChPcT9+3shfmvEa0iJEArOI8m9YJ4H54Xu0sI6VVdSQA23BW\r\nkA6uLQU9EPzJ+oSAumXUXKV/MeHmU3iai2Guf1EMf3JdaIdGlAU9o/seIUa/Ht98xo7oao8Ge/kT\r\nQG0IQTGUhIloQzjMALlNrcmekKVwVTFTVKEWil1XKckDWr0UaeTghY2YXItR8qznKNPIwCKOiEYy\r\npQ05uZRpTT5YmBR28/ffac8OLr1avAlK8N52nkg319gMYbtwkjpjCitTnZkmis8LDfafRxq+DD0R\r\nsLbH1B6Ajbthiz6KN3GnG6GpNw2vuKVYohLQ2of+f2f/cMwjFU79PQGL7+70lverGFlpuhcdt7XZ\r\nEzawCYwdiBi+KA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADDHVsyI9cHn6wAAAAAAMDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM3WhcN\r\nMjYwNjI0MjA1NzM3WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBALMPi6Bpg5qJHcamm8fFfU2hj27RSRFp614v82PPoLeK\r\neJwRetr+Up5NAi7FN1EO/zu9b4TU4i7HRaDKnVrPMQdWkh5BcKQxicpXgnMvN0FRtMA7Bo7WVTJz\r\nw6THkB88ARRYlQz9HdctBd+AfL27oWZ9MJo2lJ8v+3jxj3BMaKbiYVLmabDn/Arm5J7ThYaRduhy\r\nu22/kMFtVk5bqhg+jg7GPvdCaLnRuV1SvEdb+ZkQ8dT/bEWYugnoDfX8x10b+jFT1G1wpnNK7bWM\r\nU3NVJL1y8h7/ZNBNloyjqdrn0NeUdaqp95EI6ER5CRpGyNq7/tCjr2vhJIumZzr+abEZfBq6ML2m\r\ngoa83jwcR6xMkmSOwPeE7F6MlVN5MrTx1Fco3VMIrzOLfzwUkZ2385grAjY7S10olouk//xOwo7c\r\nkVTZKVBlL2jAtDVXCYwrTPdyx9SLfJrYVAN+kfa1wqR4/I7xgK6gXhf+Gn5PBktIYiY7QX7Q/CdF\r\nrSFIKrZOWyqj9okUC+pMOu7AKbQHeBJDz//UsS7cxkCzptBPmta5AH69PlgJdZEFYOFT8PHfF/EF\r\nbIlHwP+vyKzg1EMnRsCB5tt4RZ8Bw44Md6mtR5PYbSBGnQFxcr6BBZJl6cVdQZGzk6FvoYM3uhQV\r\nrxBEbVUfBweskghG+kyBd0fAB3ZshGJ5AgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFIqWwoENV4pCzjD5uMGdDB5Tpk/lMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQCKnn44AnDZSahvJeSdxx3trgl8XI+IiQ/+O9Uj55D32IO8PN2AWoSDhmgiWXyw\r\nN3WdM6HrJoJAaJgiZitql68aNdqcW2VILRdvNdWj25may+YQY4GIfAmrfLEHJXLZNljfOi+BvLS7\r\nRyk2fmNx6E2Pi8+ZGWwJeBVpfHuFsWG2gmiD3ZpTryOPZLs2+nwiHTmnwUQRp4jX5Zxq3d6Ee/Zp\r\nPNO0u0SAJ4fE5WXiec1uzpbcAtziMG1weo3fW4apTHffzdzuJ/VSoQSgcvCko/SYLthxNYVDyA9D\r\nbYJPLAiVkaqQXOMl39BD/cD8DrOrAoTA/M1Sdx9G+gcXtXkgBa1wLzQ3vaKysOyRuBsIXvjyU8oe\r\n7iEX9N3JAe8qqSZVgqtyb5x/st23PzdnfeH95ExT/EyQevOIN9mfTCs0ywkU2A1ruL/wgHhKl5AK\r\n2aEzdoYqcueYG0BZxCcc4jWUaKwKpLXk1xP+EALGgJnSrPaqwOIGRu5s7ER5ZMkrKEQQDboa83Pz\r\nyIXeKWyLyiqztRZ4KZTmIbe5le4u+QWhPZ57Hv4BP6HKH+R41Fy5iXq7oXNeW9d9dumNzsk1rKow\r\n+LkotQfC9Owgoi4+aZpLW9lrwt3n41hfHu5GlNhv0f3J1XQFoimVPqas7J793+QfvhL9weeouO4m\r\nRj8ZD6RQFn5qjA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmDCCBYCgAwIBAgITMwAAADEMSRSxjI8zmgAAAAAAMTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MjA1NzM5WhcN\r\nMjYwNjI0MjA1NzM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMSwwKgYDVQQDEyNNaWNyb3NvZnQgUlNBIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTCCAiIwDQYJ\r\nKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL7Z8OMcWj3FKKBLKIQ2CBoe0HICBLmagHZmQpECgsmD\r\nRXqA6QcLQPzwZUvQLUvRITLaGshy0zuL27fT9hD0YRFFQyUcVDVWVyOaChL0H2Lhsie3nnKe2ivo\r\nenWrPx00CSU9ONVlyihtur7Jga1lA8nxYmmZTONVGilZoBrQ3kJBfJmrdTPbcjQtqi+8ok/cvY0f\r\n5UdMtGroBJOwFtwRDCckV/qExILfI/9bibWlYBX1iecZF2JwGxEWD8qP8BV+cVleMB5rhIIcs9DH\r\n2SFMwok+lctQB68WYEskbhXfIrS4xHldcHrYxMWdPrdKPLFXHUaE7UJIovyBDvzDfoGRMzSy5DOE\r\nTnghTByzz/87GB0aM2k17oLGafN2yHRUT7+XxNFqoSSLt2siuBbwelsnaGitq40HCLbfrNTWjRv5\r\nFiAuqygpgBF+RclWH8HHHii7lLHGsPARssdlffk7J7+Nb7x5SOo8J6sSTrqk4N/nP7Z1FPqUG6qU\r\n2tcCDVsRh4qb5LzqHl7SpoJzAP+vIBGkRH4At1gRpkJzdg8FWqtzQ5wX5MQnB62OPnYTyFByStAQ\r\nC3puN8FCtlurm74gqdIdR6fYURbpH9OXag8Fa4qbmYbmnCQF/A2cLB1EOhjk4MGlmfp/aDdCTC+z\r\nMr9VTNTt5KkowSSWZ0wUpjUNZ9bRPzZPAgMBAAGjggJJMIICRTAOBgNVHQ8BAf8EBAMCAYYwEAYJ\r\nKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFHMIeJP51amco3d+ETR0/0UycbeDMB0GA1UdJQQWMBQG\r\nCCsGAQUFBwMBBggrBgEFBQcDAjAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTASBgNVHRMBAf8E\r\nCDAGAQH/AgEAMB8GA1UdIwQYMBaAFAnLWX+GsnCPGsM548DZ6b+7TbIjMHAGA1UdHwRpMGcwZaBj\r\noGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFJTQSUy\r\nMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcuY3JsMIGuBggrBgEFBQcBAQSB\r\noTCBnjBtBggrBgEFBQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9N\r\naWNyb3NvZnQlMjBSU0ElMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDE3LmNy\r\ndDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNvbS9vY3NwMHAGA1UdIARp\r\nMGcwCAYGZ4EMAQIBMAgGBmeBDAECAjBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0\r\ncDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMA0GCSqGSIb3\r\nDQEBDAUAA4ICAQBw7zk6D2kKZzdRQNSGTtOtfssB4MjYgEKeeTtzmgz8B2HO654S0WPHIn2EFV5s\r\nJgn3WzMKGCRizxKq00ulUOBJQpPx3x1DnW2LgWXNBWtcXzSBpAyeQf2BWa08BzqbmQ2uG8k96A4x\r\nUvYk2HmQioyDk+f9+o5tlHXlf8IKx1joSahaLEmGwBOCQFC6JbUYIVgOeS1hf7gNRyM8QWPR5D5M\r\n9qMVyGNoTt3fIXHxgbDuNHhEGPpiv9FWlzMT8jKFtURutEYmhg3Y6Qr/QXbbeaN4Ow5UiS5/Tr4A\r\nQEaU6Yoc3qvKFdoOV9Fjp7Ze4UmRv81LoQrzuS7vAP5iW3mB/n2jzCHdNIKX/qHDYU4qjC+aZFqq\r\nT9rUpWnYW9qsPhTi8LORsn7fvPuL1ecVgkUB3F/1z9udnfjhG1sjt3hj0NXJc1qnYGDhiKLJHeU9\r\nMSFUlBieVUSV2m+0q8WHPjLiJBHiZbt/gleHbdTb+WPCFa3LCPbLuqiK+KKAsWvtuJs26KegodyE\r\nfvFz753D3fLWMfRZBZgRTKJODA5Vb899QyzsUSXBMX7+oYE4A9o9yc8rvzTWoMuEw3UhCdfTKrE0\r\nuKg4FSYi1W5UMdjlMdACoCh2aCp7jNiLt6wtSZIzG27MNIz/bWTFmcRoN9xh4Lbj7b5tfuIop8cZ\r\ndKuCtnRBx5mK8w==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACgr/SPn0a3XBwAAAAAAKDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM2WhcNMjYw\r\nNjI0MTk1ODM2WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABMBXcHExvrYrhw7v30oPR4aBaMne5o0FtTtbMV7iqVhTJDQSWDEJhr528nyS\r\n6jcLLu9pLXQMJYxVd7bz4wWXgVtZnnbQ7trAAIPWVh5B6f5eJf5OQ7w7AwJgz3snP5Hx16OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUMVu5zlEbfNGq\r\nA8Dr7TZdwp3TieEwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxANmPydUjlgj/2K77UnMeMkSGIgXzOhcT\r\nsixzZL+NmTR1Bq2hSPeA6Y3mn3lMlwxZmAIwIio6KrgItH4YmLWKd8QClIrE9QjbDlR7oFqaU3J3\r\n4bWbMlAEjRARdZhhQlNwdORe\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV\r\nUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND\r\nIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4\r\nMjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw\r\nNAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ\r\nBgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6\r\nthaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB\r\neMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM\r\n+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf\r\nXu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR\r\neNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESDCCA8+gAwIBAgITMwAAACkPimIi72pWlQAAAAAAKTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM4WhcNMjYw\r\nNjI0MTk1ODM4WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEFPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABI7Zgbmjd2OumgotYraLtAF/obAK54drz/RFV2lzPGE0f3js0+CUCGTEOGdO\r\naB+7fODrVJ84rKJPRPS/pEc8k80WepwWMYri+yoA7OlAQFiyIqk900jUel2o9LBoBNr72qOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU3tzXbCOZQ+qs\r\n7ci3HRhYgDZLjfQwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDZwAwZAIwSiB+6RshdjasB841Y6l6wCivxxnEBvxn\r\n6GCYIjk22EJa1p6B4w+Qf5seGf20/SsXAjBxv8F+Qz6CfnpQNxIGRby0UfKq36vne88PuoQCHdxY\r\nLnjkUiveg2NRTNiAFWXqhUg=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACvmkCg4ZytmeQAAAAAAKzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODQwWhcNMjYw\r\nNjI0MTk1ODQwWjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMjB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABCnY32N9ck71DA0aFNh3TJUp5baxIf9K2kh2RJOvnsU82Epig+iwGtsdLbmm\r\nnQCis9VR8E0KfKUUBnNSdmtUneh36lhFwxDZ4NzmfdUjG24K8zbbMd/qTAVztrcDvdlhxqOCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUv9gyNCuhlTu0\r\ntdS5QC1ySpwaAIYwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIwGfSjP75G6tGRAEfRAnzF8zX82samzvpm\r\nHzL0nZtkAZbAAl94dP1iB4XNrmJjcSVxAjEA013gOWgrzozfn7vuDKDvI2xo+sQXBCJhagE/gJz8\r\niO6Hk1vZbEK2xVGQc0yBqBlO\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESTCCA8+gAwIBAgITMwAAACotAGSF/ay/6wAAAAAAKjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjEwNjI0MTk1ODM5WhcNMjYw\r\nNjI0MTk1ODM5WjBbMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMSwwKgYDVQQDEyNNaWNyb3NvZnQgRUNDIFRMUyBJc3N1aW5nIEVPQyBDQSAwMTB2MBAGByqGSM49\r\nAgEGBSuBBAAiA2IABOJbIiS8pUiOCaUql10Yl6GbIflaGVxiZRG9Ot/zChiB74DcUfHk/wQXn4CQ\r\nlaml9yi80zVAzt5DlpmJ9nKGPZwAXEEYQ15WqfjuLmKRnUXJA8Z69uql5GUmyna4GnWuI6OCAkkw\r\nggJFMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUuxzt0Ihxqcr7\r\nzZNfcXkiNXjGmsowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQM\r\nHgoAUwB1AGIAQwBBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUyMuZcnBSDPjmvrIE\r\nVykqz0IQ7TUwcAYDVR0fBGkwZzBloGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w\r\ncy9jcmwvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIw\r\nMjAxNy5jcmwwga4GCCsGAQUFBwEBBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jv\r\nc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMEVDQyUyMFJvb3QlMjBDZXJ0aWZpY2F0\r\nZSUyMEF1dGhvcml0eSUyMDIwMTcuY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNy\r\nb3NvZnQuY29tL29jc3AwcAYDVR0gBGkwZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdM\r\ng30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv\r\nUmVwb3NpdG9yeS5odG0wCgYIKoZIzj0EAwMDaAAwZQIxALsVA16qVCnS2LXK0EFRtQCFStOvrTmi\r\n+aBoWaiCqf6i/m7t3+Uhnxe5bYKhUM/LMAIwOJ1jHlVIe0xLjV6LZQo4eZA/bgQaDwIoUECkuW9D\r\nzwJORmfzm5h1e+oMay+Bb/mm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQDx8VdYLNzTNzS9xfzZQaMzAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDcwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATokm9hNnECQj2lbZM9is6plTI2rgjbWOkOLqclsWYe7hly1d9YsaivU9rwQAhByBfx\r\nuBIAOuvgcUoYhihMsGuzwe8REVxJzkNIvQMi6cyUZL4bSMkZa/9R8qt9eAlQ2XKjggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTDXqxAdsAGTeMrlJkwYHM0mCnGUTAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQD4NlZZatULuw0uN/yBMq9WikJwL8IHljJyU1EyPmv3\r\nXOKab+TbGSFWK/x6QeCH4lkCMGnBJi1rXgd9ieBW4PSmq1v0Jd5YrBptoNMGk5J+dDOj7L3ItN16\r\nLyjk9coSKgZSzw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXTCCAuOgAwIBAgIQAVKe6DaPC11yukM+LY6mLTAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDMwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAASWQZj7wTifz52AAaZuhd5vnHlA6omsawVbdr1pX7FP6cPvZ8ABw/JX24u10nk6VWg7\r\naC2Ey3cwi4mcSJWG4MOcb/ymon7q0iHlnLFjB3wKOZDbNafqe6E3fyAyf2QcREijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRy4JahUeowDFi19RmrmnzNl1UQLjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2gAMGUCMQC2v2Br7lTZJSweZMFP38SguGYcoFeKFb9TA3KAxeuG\r\nbAk5BnKY0DohnJiFncj8GFkCMGHYkSqHik6yPbKi1OaJkVl9grldr+Y+z+jgUwWIaJ6ljXXj8cPX\r\npyFgz3UEDnipEg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQDvLl2DaBUgJV6Sxgj7wv9DAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDgwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAATlQzoKIJQIe8bd4sX2x9XBtFvoh5m7Neph3MYORvv/rg2Ew7Cfb00eZ+zSnjUosyOU\r\nCspenehe0PyKtmq6pPshLu5Ww/hLEoQT3drwxZ5PaYHmGEGoy2aPBeXa23k5ruijggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBStVB0DVHHGL17WWxhYzm4kxdaiCjAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMD+q5Uq1fSGZSKRhrnWKKXlp4DvfZCEU/MF3rbdwAaXI\r\n/KVM65YRO9HvRbfDpV3x1wIwCHvqqpg/8YJPDn8NJIS/Rg+lYraOseXeuNYzkjeY6RLxIDB+nLVD\r\ns9QJ3/co89Cd\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIDXDCCAuOgAwIBAgIQAjk9SNcCQlp8tBwACw7XyjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV\r\nUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD\r\nVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUyMzU5\r\nNTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNV\r\nBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDQwdjAQBgcqhkjOPQIBBgUr\r\ngQQAIgNiAARPTjQp1si15xHY4NHuaYml1SVS2WNRqzy5Pe5cjp4gxINQbtjyKSJL2KknPFcl+Q65\r\n7jLtO7gW5Oo2U4SrPf0KryBIzmpxdIWFv7OIRW/DsNpBY27x1kkcLfMaVlD41KejggFiMIIBXjAS\r\nBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQ18ecRMmjmssjaceZw8+g8uA4HGzAfBgNVHSME\r\nGDAWgBSz20ik+aHF2K42QcwRY2liKbxLxjAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3Au\r\nZGlnaWNlcnQuY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzMuY3J0MEIGA1UdHwQ7MDkwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMy5jcmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYG\r\nZ4EMAQICMAoGCCqGSM49BAMDA2cAMGQCMFrbS3clttzDrBUuwHuTyZPgSxVR4ShEvcjfJFFzv8n4\r\nTRORvsHt730s9ki6IB37+AIwIT4LyBa6AKnYLFZZG7vGPF+exAK0qvyQ1Vw60KLBatMs+QpGXXWE\r\nrmWRerrVGsYi\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQDvt+VH7fD/EGmu5XaW17oDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDgwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCy7oIFzcDVZVbomWZtSwrAX8LiKXsbCcwuFL7FHkD5m67olmOd\r\nTueOKhNER5ykFs/meKG1fwzd35/+Q1+KTxcV89IIXmErtSsj8EWu7rdEAVYnYMFbstqwkIVNEoz4\r\nOIM82hn+N5p57zkHGPogzF6TOPRUOK8yYyCPeqnHvoVpE5b0kZL4QT8bdyhSRQbUsUiSaOuF5y3e\r\nZ9Vc92baDkhY7CFZE2ThLLv5PQ0WxzLot3t18d2vQP5x29I0n6NFsj37J2d/EH/Z6a/lhAVzKjfY\r\nloGcQ1IPyDEIGh9gYJnMLFZiUbm/GBmlpKVr8M03OWKCR0thRbfnU6UoskrwGrECAnnojFEUw+j8\r\ni6gFLBNWXtBOtYvgl8SHCCVKUUUl4YOfR5zF4OkKirJuUbOmB2AOmLjYJIcabDvxMcmryhQinog+\r\n/+jgHJnY62opgStkdaImMPzyLB7ZaWVnxpRdtFKO1ZvGkZeRNvbPAUKR2kNeknuh3NtFvz2dY3xP\r\n7AfhyLE/t8vW72nAzlRKz++L70CgCvj/yeObPwaAPDd2sZ0oj2u/N+k6egGq04e+GBW+QYCSoJ5e\r\nAY36il0fu7dYSHYDo7RB5aPTLqnybp8wMeAatcagc8U9OM42ghELTaWFARuyoCmgqR7y8fAU9Njh\r\ncqrm6+0Xzv/vzMfhL4Ulpf1G7wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAloABcB94CeH6DWKwa4550BTzLxlTHVNseQJ5SetnPpBuPNLPgOLe9Y7ZMn4ZK6mhfeK7RiMz\r\nan4UF9CD5rF3TcCevo3IxrdV+YfBwvlbGYv+6JmX3mAMlaUb23Y2pONoixFJEOcAMKKR55mSC5W4\r\nnQ6jDfp7Qy/504MQpdjJflk90RHsIZGXVPw/JdbBp0w6pDb4o5CqydmZqZMrEvbGk1p8kegFkBek\r\np/5WVfd86BdH2xs+GKO3hyiA8iBrBCGJfqrijbRnZm7q5+ydXF3jhJDJWfxW5EBYZBJrUz/a+8K/\r\n78BjwI8z2VYJpG4t6r4otOGB5sEyDPDwqx00Rouu8g==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCkOpUJsBNS+JlXnscgi6UDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDcwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQC1ZF7KYus5OO3GWqJoR4xznLDNCjocogqeCIVdi4eEBmF3zIYe\r\nuXXNoJAUF+mn86NBt3yMM0559JZDkiSDi9MpA2By4yqQlTHzfbOrvs7I4LWsOYTEClVFQgzXqa2p\r\ns2g855HPQW1hZXVh/yfmbtrCNVa//G7FPDqSdrAQ+M8w0364kyZApds/RPcqGORjZNokrNzYcGub\r\n27vqE6BGP6XeQO5YDFobi9BvvTOO+ZA9HGIU7FbdLhRm6YP+FO8NRpvterfqZrRt3bTn8GT5LsOT\r\nzIQgJMt4/RWLF4EKNc97CXOSCZFn7mFNx4SzTvy23B46z9dQPfWBfTFaxU5pIa0uVWv+jFjG7l1o\r\ndu0WZqBdj0xnvXggu564CXmLz8F3draOH6XS7Ys9sTVM3Ow20MJyHtuA3hBDv+tgRhrGvNRDMbSz\r\nTO6axNWvL46HWVEChHYlxVBCTfSQmpbcAdZOQtUfs9E4sCFrqKcRPdg7ryhYfGbj3q0SLh55559I\r\nTttdyYE+wE4RhODgILQ3MaYZoyiL1E/4jqCOoRaFhF5R++vbYpemcpWx7unptfOpPRRnnN4U3pqZ\r\nDj4yXexcyS52Rd8BthFY/cBg8XIR42BPeVRlOckZ+ttduvKVbvmGf+rFCSUoy1tyRwQNXzqeZTLr\r\nX+REqgFDOMVe0I49Frc2/Avw3wIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAbbV8m4/LCSvb0nBF9jb7MVLH/9JjHGbn0QjB4R4bMlGHbDXDWtW9pFqMPrRh2Q76Bqm+yrrg\r\nX83jPZAcvOd7F7+lzDxZnYoFEWhxW9WnuM8Te5x6HBPCPRbIuzf9pSUT/ozvbKFCDxxgC2xKmgp6\r\nNwxRuGcy5KQQh4xkq/hJrnnF3RLakrkUBYFPUneip+wSBzAfK3jHXnkNCPNvKeLIXfLMsffEzP/j\r\n8hFkjWL3oh5yaj1HmlW8RE4Tl/GdUVzQD1x42VSusQuRGtuSxLhzBNBeJtyD//2u7wY2uLYpgK0o\r\n3X0iIJmwpt7Ovp6Bs4tIE/peia+Qcdk9Qsr+1VgCGA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQCfluwpVVXyR0nq8eXc7UnTANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDQwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQDBeUy13eRZ/QC5bN7/IOGxodny7Xm2BFc88d3cca3yHyyVx1Y6\r\n0+afY6DAo/2Ls1uzAfbDfMzAVWJazPH4tckaItDv//htEbbNJnAGvZPB4VqNviwDEmlAWT/MTAmz\r\nXfTgWXuUNgRlzZbjoFaPm+t6iJ6HdvDpWQAJbsBUZCgat257tM28JnAHUTWdiDBn+2z6EGh2DA6B\r\nCx04zHDKVSegLY8+5P80Lqze0d6i3T2JJ7rfxCmxUXfCGOv9iQIUZfhv4vCb8hsm/JdNUMiomJhS\r\nPa0bi3rda/swuJHCH//dwz2AGzZRRGdj7Kna4t6ToxK17lAF3Q6Qp368C9cE6JLMj+3UbY3umWCP\r\nRA5/Dms4/wl3GvDEw7HpyKsvRNPpjDZyiFzZGC2HZmGMsrZMT3hxmyQwmz1O3eGYdO5EIq1SW/vT\r\n1yShZTSusqmICQo5gWWRZTwCENekSbVX9qRr77o0pjKtuBMZTGQTixwpT/rgUl7Mr4M2nqK55Kov\r\ny/kUN1znfPdW/Fj9iCuvPKwKFdyt2RVgxJDvgIF/bNoRkRxhwVB6qRgs4EiTrNbRoZAHEFF5wRBf\r\n9gWn9HeoI66VtdMZvJRH+0/FDWB4/zwxS16nnADJaVPXh6JHJFYs9p0wZmvct3GNdWrOLRAG2yzb\r\nfFZS8fJcX1PYxXXo4By16yGWhQIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAo9sJvBNLQSJ1e7VaG3cSZHBz6zjS70A1gVO1pqsmX34BWDPz1TAlOyJiLlA+eUF4B2OWHd3F\r\n//dJJ/3TaCFunjBhZudv3busl7flz42K/BG/eOdlg0kiUf07PCYY5/FKYTIch51j1moFlBqbglwk\r\ndNIVae2tOu0OdX2JiA+bprYcGxa7eayLetvPiA77ynTcUNMKOqYB41FZHOXe5IXDI5t2RsDM9dME\r\nZv4+cOb9G9qXcgDar1AzPHEt/39335zCHofQ0QuItCDCDzahWZci9Nn9hb/SvAtPWHZLkLBG6I0i\r\nwGxvMwcTTc9Jnb4FlysrmQlwKsS2MphOoI23Qq3cSA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIFrDCCBJSgAwIBAgIQBRllJkSaXj0aOHSPXc/rzDANBgkqhkiG9w0BAQwFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMzA2MDgwMDAwMDBaFw0yNjA4MjUy\r\nMzU5NTlaMF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAs\r\nBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBSU0EgVExTIElzc3VpbmcgQ0EgMDMwggIiMA0GCSqGSIb3\r\nDQEBAQUAA4ICDwAwggIKAoICAQCUaitvevlZirydcTjMIt2fr5ei7LvQx7bdIVobgEZ1Qlqf3BH6\r\netKdmZChydkN0XXAb8Ysew8aCixKtrVeDCe5xRRCnKaFcEvqg2cSfbpXFevXDvfbTK2ed7YASOJ/\r\npv31stqHd9m0xWZLCmsXZ8x6yIxgEGVHjIAOCyTAgcQy8ItIjmxn3Vu2FFVBemtP38Nzur/8id85\r\nuY7QPspI8Er8qVBBBHp6PhxTIKxAZpZbXtBf2VxIKbvUGEvCxWCrKNfv+j0oEqDpXOqGFpVBK28Q\r\n48u/0F+YBUY8FKP4rfgFI4lG9mnzMmCL76k+HjyBtU5zikDGqgm4mlPXgSRqEh0CvQS7zyrBRWiJ\r\nCfK0g67f69CVGa7fji8pz99J59s8bYW7jgyro93LCGb4N3QfJLurB//ehDp33XdIhizJtopjUoFU\r\nGLnomVnMRTUNtMSAy7J4r1yjJDLufgnrPZ0yjYo6nyMiFswCaMmFfclUKtGzzbPDpIBuf0hmvJAt\r\n0LyWlYUst5geusPxbkM5XOhLn7px+/y+R0wMT3zNZYQxlsLDbXGYsRdE9jxcIts+IQwWZGnmHhhC\r\n1kvKC/nAYcqBZctMQB5q/qsPH652dc73zOx6Bp2gTZqokGCv5PGxiXcrwouOUIlYgizBDYGBDU02\r\nS4BRDM3oW9motVUonBnF8JHVRwIDAQABo4IBYjCCAV4wEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNV\r\nHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwHwYDVR0jBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYX\r\njzkwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB2BggrBgEF\r\nBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBABggrBgEFBQcw\r\nAoY0aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNydDBC\r\nBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxS\r\nb290RzIuY3JsMB0GA1UdIAQWMBQwCAYGZ4EMAQIBMAgGBmeBDAECAjANBgkqhkiG9w0BAQwFAAOC\r\nAQEAAQkxu6RRPlD3yrYhxg9jIlVZKjAnC9H+D0SSq4j1I8dNImZ4QjexTEv+224CSvy4zfp9gmeR\r\nfC8rnrr4FN4UFppYIgqR4H7jIUVMG9ECUcQj2Ef11RXqKOg5LK3fkoFz/Nb9CYvg4Ws9zv8xmE1M\r\nr2N6WDgLuTBIwul2/7oakjj8MA5EeijIjHgB1/0r5mPmeFYVx8xCuX/j7+q4tH4PiHzzBcfqb3k0\r\niR4DlhiZfDmy4FuNWXGM8ZoMM43EnRN/meqAcMkABZhY4gqeWZbOgxber297PnGOCcIplOwpPfLu\r\n1A1K9frVwDzAG096a8L0+ItQCmz7TjRH4ptX5Zh9pw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADv5gLDIN4NDFwAAAAAAOzANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMwWhcN\r\nMjgwNTI1MjM0OTMwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA3MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtWReymLrOTjtxlqiaEeMc5ywzQo6HKIKngiFXYuH\r\nhAZhd8yGHrl1zaCQFBfpp/OjQbd8jDNOefSWQ5Ikg4vTKQNgcuMqkJUx832zq77OyOC1rDmExApV\r\nRUIM16mtqbNoPOeRz0FtYWV1Yf8n5m7awjVWv/xuxTw6knawEPjPMNN+uJMmQKXbP0T3KhjkY2Ta\r\nJKzc2HBrm9u76hOgRj+l3kDuWAxaG4vQb70zjvmQPRxiFOxW3S4UZumD/hTvDUab7Xq36ma0bd20\r\n5/Bk+S7Dk8yEICTLeP0VixeBCjXPewlzkgmRZ+5hTceEs078ttweOs/XUD31gX0xWsVOaSGtLlVr\r\n/oxYxu5daHbtFmagXY9MZ714ILueuAl5i8/Bd3a2jh+l0u2LPbE1TNzsNtDCch7bgN4QQ7/rYEYa\r\nxrzUQzG0s0zumsTVry+Oh1lRAoR2JcVQQk30kJqW3AHWTkLVH7PROLAha6inET3YO68oWHxm496t\r\nEi4eeeefSE7bXcmBPsBOEYTg4CC0NzGmGaMoi9RP+I6gjqEWhYReUfvr22KXpnKVse7p6bXzqT0U\r\nZ5zeFN6amQ4+Ml3sXMkudkXfAbYRWP3AYPFyEeNgT3lUZTnJGfrbXbrylW75hn/qxQklKMtbckcE\r\nDV86nmUy61/kRKoBQzjFXtCOPRa3NvwL8N8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUzhUWO+oCo6Zr2tkr/eWMUr56UKgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAEW/RtXCtcIo+mufeVjQIGgqX5/nHrS9aMMoI1WHA2pqqeW2NrbAcq7cwjLV\r\nDhbRu22IItJZliVUVCeufXgmkXErYr8IU0sEtS+nP5M+yvr359N30d/eJi1h63qI1n3buWO6iJ1r\r\nN6s45v0NSrQf6SJNmQ40Aio53vVfsAYr2RA5mrDcT4zYSHLt9nrVtY3k/3F1xYNRJX26xZSP7/hr\r\njhI/gbBvJBCw9fto6WCrURno4UHsvU9GkG3sa9Rr5fCl1hqMcAiVq+txoRX4cZQwo3dIDiALiP/7\r\n8D9EayM3MwpuF5jKx6D5Vd4ZNArsNWoisAiBJk/awtgfyodut1Jh2RlXBClapoxtfVNCrhOQMAQl\r\nSqhSOdqG/s/ugWCalxQaX9H/9lFUff5TH9vfe7v/kUlW2CaLTPzttRujCJs5G/2c/FVwWdy+LW1G\r\n7AsfvzrVIc5yw4UACFAbFR3yTW8A5YMrsccQVYiK/x1EfrdjIHnhnri6L2eELAcn7rQCEn1Hr8HF\r\nZ6wg7yKcLvxMtI2K0oU8vh5AGuhYXRJN/JHcFsGIOHVwbG0wX7Zs0rst6+s+cx4PSVHNX+lk8Ih1\r\ngyjac3xOnA9aseyTdR5uVs8FvJVcitkgcM0x9T+ji5yKRC3MAg2AWOiWb+WmldUq4yRSdubxtrRD\r\n7fkKtZqB7xv5FCYv\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADlo6lF9in4wzgAAAAAAOTANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI1WhcN\r\nMjgwNTI1MjM0OTI1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDAzMIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlGorb3r5WYq8nXE4zCLdn6+Xouy70Me23SFaG4BG\r\ndUJan9wR+nrSnZmQocnZDdF1wG/GLHsPGgosSra1XgwnucUUQpymhXBL6oNnEn26VxXr1w7320yt\r\nnne2AEjif6b99bLah3fZtMVmSwprF2fMesiMYBBlR4yADgskwIHEMvCLSI5sZ91bthRVQXprT9/D\r\nc7q//InfObmO0D7KSPBK/KlQQQR6ej4cUyCsQGaWW17QX9lcSCm71BhLwsVgqyjX7/o9KBKg6Vzq\r\nhhaVQStvEOPLv9BfmAVGPBSj+K34BSOJRvZp8zJgi++pPh48gbVOc4pAxqoJuJpT14EkahIdAr0E\r\nu88qwUVoiQnytIOu3+vQlRmu344vKc/fSefbPG2Fu44Mq6Pdywhm+Dd0HyS7qwf/3oQ6d913SIYs\r\nybaKY1KBVBi56JlZzEU1DbTEgMuyeK9coyQy7n4J6z2dMo2KOp8jIhbMAmjJhX3JVCrRs82zw6SA\r\nbn9IZryQLdC8lpWFLLeYHrrD8W5DOVzoS5+6cfv8vkdMDE98zWWEMZbCw21xmLEXRPY8XCLbPiEM\r\nFmRp5h4YQtZLygv5wGHKgWXLTEAeav6rDx+udnXO98zsegadoE2aqJBgr+TxsYl3K8KLjlCJWIIs\r\nwQ2BgQ1NNkuAUQzN6FvZqLVVKJwZxfCR1UcCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU/glxQFUFEETYpIF1uJ4a6UoGiMgwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAHyiyLZVKKprf5FiYxz+uj+wKd/ePFotiwQeV/2PTMvd2qtoa2UTtNGfBJiD\r\nO87NlGA1Mwo3UD/DgZiDDyvCraJ9o6pSXNqe/lv+9dKtYgUEWj/6Qx/od8JtB02z650i1L43XqeD\r\nmM3I5rABAodaQn+7fvj4Xm66X3iYJSFHwCKK/8uj+QTT1X7YK3crRfo6clvye04U8XqaMHHv0tBY\r\nPjEkNFw27DH7iMhd1lH2DJijjlSK/IJIsae0cR+4M8MWwR+3d7XbHNLN/txCovwzMbWVx8FeudVW\r\n/Zt1G3hak5+NHTVqwFH8JoA/NgEJlh88/Sr2lXs/0ue825ocloNZcYm3W2sajYPIu20qlZ1ZujQm\r\nKcwS9oDoXceGiIvlMIfdqvpJEz34UdR3O5aysn9/m1/x62Wck9igbkuRCXvfYL60WFAFBuWMgcpV\r\nIfopkPyEc8OexsIEQNqHhrXqE2n4By6B6jS7V4iZw/K/w7VgfoOOBuV1e4UsPLjuPUVmhYVjdIbN\r\n+8m3qhJ59q81a46dajsyjjAUM9H8NWVRfFKjK7cZEUN2na8N9FvIUnI1YWIkT+fx/ZHmdfApTBJY\r\niqPekXE6HcOfGTNgS2mP1b8ylhBWXjWHswUW0riuJPSWXscQb9p3NUtzDWZY+mlsY1pbkrj8xBVr\r\nuJeZD9ypF4U7MSFn\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADpdwv/DIcFtmwAAAAAAOjANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTI4WhcN\r\nMjgwNTI1MjM0OTI4WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA4MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsu6CBc3A1WVW6JlmbUsKwF/C4il7GwnMLhS+xR5A\r\n+Zuu6JZjnU7njioTREecpBbP5nihtX8M3d+f/kNfik8XFfPSCF5hK7UrI/BFru63RAFWJ2DBW7La\r\nsJCFTRKM+DiDPNoZ/jeaee85Bxj6IMxekzj0VDivMmMgj3qpx76FaROW9JGS+EE/G3coUkUG1LFI\r\nkmjrhect3mfVXPdm2g5IWOwhWRNk4Sy7+T0NFscy6Ld7dfHdr0D+cdvSNJ+jRbI9+ydnfxB/2emv\r\n5YQFcyo32JaBnENSD8gxCBofYGCZzCxWYlG5vxgZpaSla/DNNzligkdLYUW351OlKLJK8BqxAgJ5\r\n6IxRFMPo/IuoBSwTVl7QTrWL4JfEhwglSlFFJeGDn0ecxeDpCoqyblGzpgdgDpi42CSHGmw78THJ\r\nq8oUIp6IPv/o4ByZ2OtqKYErZHWiJjD88iwe2WllZ8aUXbRSjtWbxpGXkTb2zwFCkdpDXpJ7odzb\r\nRb89nWN8T+wH4cixP7fL1u9pwM5USs/vi+9AoAr4/8njmz8GgDw3drGdKI9rvzfpOnoBqtOHvhgV\r\nvkGAkqCeXgGN+opdH7u3WEh2A6O0QeWj0y6p8m6fMDHgGrXGoHPFPTjONoIRC02lhQEbsqApoKke\r\n8vHwFPTY4XKq5uvtF87/78zH4S+FJaX9Ru8CAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU9n4vvYCjSrJwW+vfmh/Y7cphgAcwcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAJNWwOZZFWPoAhX05ITyUAnS+flKpEEbEeSa+F8qHSMSF3PGraaC7VrfX7lE\r\nAXDsaSyPs74NR1l9lImmZwh44npNs/R3F9cPnmLtw5I+632yoU8309a9Q6qmT4vZpQ28EMYtM6Sh\r\n2Howxfm+G2DM+3PRp8sBaMV2an+DSYAspm/sC1Pemn1mSASLRu/9fRW8AgILhqiI7ej5rE7uVrKY\r\nWCbIe4ZnUsUCzBb+zfVjn+lDWVCw7jhbO/sQLNWKCLoCaWV+zsSnTB5Pdz0ACmkVVKAI2rwoXgqo\r\nYbaET1H7LEnHLrrA7fx2VHtfzzJ6LcBMf9LW+CVdSkgBBHcpCOcRnXJE3w9VATb6IHcnhIdolsgW\r\n3rzLkAinjpoNpr+4boNUCeyY/zdppT/Ma5+YFNNlQcH7+R/+OjM8KkNWxThy1mAYY1jcmtQx4xq7\r\nA0FviFZ9HpdZ5vzyWEb7pVJpYqtsOMtAYz/5SXhq4RZH11EjqBpVQiqWfFcIY86Wm8TOWJ9wc4Gw\r\nI2joDUjRL4gebKe13mP1BIu4+QGJIt8Bj9QzNi5BNDrQJ6iPXknO7crFLRNNF5f4kBW2AixuRTgQ\r\nJrE5mTQQio5X8mdSatsM50bbJn/5VRA7smNKQeGobxrNGBSUOQ/4ip8TvL31krTRJQlArsprHPI2\r\nIKoixXfvT8+YRvie\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIHmjCCBYKgAwIBAgITMwAAADzXy0TuV5lh0AAAAAAAPDANBgkqhkiG9w0BAQwFADBlMQswCQYD\r\nVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3Nv\r\nZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0OTMzWhcN\r\nMjgwNTI1MjM0OTMzWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0\r\naW9uMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgUlNBIFRMUyBJc3N1aW5nIENBIDA0MIICIjAN\r\nBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwXlMtd3kWf0AuWze/yDhsaHZ8u15tgRXPPHd3HGt\r\n8h8slcdWOtPmn2OgwKP9i7NbswH2w3zMwFViWszx+LXJGiLQ7//4bRG2zSZwBr2TweFajb4sAxJp\r\nQFk/zEwJs1304Fl7lDYEZc2W46BWj5vreoieh3bw6VkACW7AVGQoGrdue7TNvCZwB1E1nYgwZ/ts\r\n+hBodgwOgQsdOMxwylUnoC2PPuT/NC6s3tHeot09iSe638QpsVF3whjr/YkCFGX4b+Lwm/IbJvyX\r\nTVDIqJiYUj2tG4t63Wv7MLiRwh//3cM9gBs2UURnY+yp2uLek6MSte5QBd0OkKd+vAvXBOiSzI/t\r\n1G2N7plgj0QOfw5rOP8JdxrwxMOx6cirL0TT6Yw2cohc2Rgth2ZhjLK2TE94cZskMJs9Tt3hmHTu\r\nRCKtUlv709ckoWU0rrKpiAkKOYFlkWU8AhDXpEm1V/aka++6NKYyrbgTGUxkE4scKU/64FJezK+D\r\nNp6iueSqL8v5FDdc53z3VvxY/YgrrzysChXcrdkVYMSQ74CBf2zaEZEcYcFQeqkYLOBIk6zW0aGQ\r\nBxBRecEQX/YFp/R3qCOulbXTGbyUR/tPxQ1geP88MUtep5wAyWlT14eiRyRWLPadMGZr3LdxjXVq\r\nzi0QBtss23xWUvHyXF9T2MV16OActeshloUCAwEAAaOCAkkwggJFMA4GA1UdDwEB/wQEAwIBhjAQ\r\nBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUO3DRU+l2JZ1gqMpmD8abrm9UFmowcAYDVR0gBGkw\r\nZzAIBgZngQwBAgEwCAYGZ4EMAQICMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRw\r\nOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wHQYDVR0lBBYw\r\nFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMBIGA1UdEwEB\r\n/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUCctZf4aycI8awznjwNnpv7tNsiMwcAYDVR0fBGkwZzBl\r\noGOgYYZfaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwUlNB\r\nJTIwUm9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcmwwga4GCCsGAQUFBwEB\r\nBIGhMIGeMG0GCCsGAQUFBzAChmFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz\r\nL01pY3Jvc29mdCUyMFJTQSUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhvcml0eSUyMDIwMTcu\r\nY3J0MC0GCCsGAQUFBzABhiFodHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwDQYJKoZI\r\nhvcNAQEMBQADggIBAMkvHcjGiFSCPKEW+slwSeYHk/2whInCVVkJDZRPgvLTY2E0GJcDZxMmuEEM\r\n8nYOp215Ji6DHKj4PWSY7VFlbH68AtEJT5qkxxMg/NO+8aUO+4WqjrX0ReQ7swPfs+Ub/PqJ3YoK\r\nxIvnvcMvus3in181GoBM0Lst+LMBRTPJe+epaiMdhcXYrGUAkuFJpC7dnAMri0LlIgcoraVPD/dK\r\n0UGSRsZa98qHOnuFoQziHx5YC17FkOKGTndialMvGqrLlKVAkLHMl4H9kUm8F2+rJMu7Carvr/2t\r\nc2A+ghnyxx6UMXN6i/kMEM14lk2Iq8UQM/fvxQ7RKUKUXfbQQLoZsaVQT8qX+4z4ZL80P3AjAv11\r\ngZNhAzEKH9HfDVvKlHMbkcKt42igdoxULAz7Au+sRVfGmp1BgTZZDfDYarQ+ul9RAKCBJq2TQ09T\r\ntIKtrtGvyJRd6pEyPvS9hs3jfhdkDx45WcPFKw1nVam38LRZ48I/jRotqu3frmVHrG8xqIdcFrPn\r\n3beeBWGQWnUpm6hIu+x6LtD12h1Yy6df5/Wtyb1Be+MU9p3QochYxHoaBfFbiw6rW3FHTsHHtaL6\r\n/Z7Stz/RYzHcrQUXiilRUl83erzxlOyQSiprXHvoJGjinCdP39ovtz9uFBpt+5MDdWfcBYF9cBoc\r\nwjbE/LXZ3Ct3XYiK\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESzCCA9GgAwIBAgITMwAAADIhZK7ath9QnQAAAAAAMjAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU1WhcNMjgw\r\nNTI1MjM0NzU1WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA0MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAET040KdbItecR2ODR7mmJpdUlUtljUas8uT3uXI6eIMSDUG7Y8ikiS9ip\r\nJzxXJfkOue4y7Tu4FuTqNlOEqz39Cq8gSM5qcXSFhb+ziEVvw7DaQWNu8dZJHC3zGlZQ+NSno4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQ18ecRMmjm\r\nssjaceZw8+g8uA4HGzBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNoADBlAjEA1SB/HtoX7pjOPx40LdzXyA5CU0QY\r\n4Y07Z0t1n2fyhKcLkoMoJVgaKqQKCaJg7pLsAjA7RkIVmERshpabUdXZRmhPPwb5oL88YMB9VNhQ\r\nhVXSs1flhj7zIi2giakDM3IN0ys=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADMiolebXmmLzAAAAAAAMzAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzU3WhcNMjgw\r\nNTI1MjM0NzU3WjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDAzMHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAElkGY+8E4n8+dgAGmboXeb5x5QOqJrGsFW3a9aV+xT+nD72fAAcPyV9uL\r\ntdJ5OlVoO2gthMt3MIuJnEiVhuDDnG/8pqJ+6tIh5ZyxYwd8CjmQ2zWn6nuhN38gMn9kHERIo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRy4JahUeow\r\nDFi19RmrmnzNl1UQLjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjAh6/sy0GWy7SNCwhVhtZehld3EgdBk\r\nParuyhpr0M6oUA0Gu88HnmWn16Eh9zbsdcUCMErxvcRe9iDAoGujs/G5/piXB0d9s0Fz84kc0toT\r\npKmOUsWWV3lXJVmr4I5XzRgFfg==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIESjCCA9GgAwIBAgITMwAAADTHMkNdsioKKwAAAAAANDAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0ODAwWhcNMjgw\r\nNTI1MjM0ODAwWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA3MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE6JJvYTZxAkI9pW2TPYrOqZUyNq4I21jpDi6nJbFmHu4ZctXfWLGor1Pa\r\n8EAIQcgX8bgSADrr4HFKGIYoTLBrs8HvERFcSc5DSL0DIunMlGS+G0jJGWv/UfKrfXgJUNlyo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTDXqxAdsAG\r\nTeMrlJkwYHM0mCnGUTBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNnADBkAjA2f+59vMft0qc0oo1L+ekiYqU0WhcJ\r\nY1g9Z2GgLodCoXxaKN+Kfd+tIsGERX6kRaYCMFE/ioq4S8Sm1NYlA0GHS5uPA36igf049QSxtpFT\r\ngVJUYTc370mmtTFvoz9LC8V6DQ==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIETDCCA9GgAwIBAgITMwAAADFSaXmER5i7uAAAAAAAMTAKBggqhkjOPQQDAzBlMQswCQYDVQQG\r\nEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg\r\nRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMjMwNTI1MjM0NzUxWhcNMjgw\r\nNTI1MjM0NzUxWjBdMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u\r\nMS4wLAYDVQQDEyVNaWNyb3NvZnQgQXp1cmUgRUNDIFRMUyBJc3N1aW5nIENBIDA4MHYwEAYHKoZI\r\nzj0CAQYFK4EEACIDYgAE5UM6CiCUCHvG3eLF9sfVwbRb6IeZuzXqYdzGDkb7/64NhMOwn29NHmfs\r\n0p41KLMjlArKXp3oXtD8irZquqT7IS7uVsP4SxKEE93a8MWeT2mB5hhBqMtmjwXl2tt5Oa7oo4IC\r\nSTCCAkUwDgYDVR0PAQH/BAQDAgGGMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBStVB0DVHHG\r\nL17WWxhYzm4kxdaiCjBwBgNVHSAEaTBnMAgGBmeBDAECATAIBgZngQwBAgIwUQYMKwYBBAGCN0yD\r\nfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9S\r\nZXBvc2l0b3J5Lmh0bTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGQYJKwYBBAGCNxQC\r\nBAweCgBTAHUAYgBDAEEwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBTIy5lycFIM+Oa+\r\nsgRXKSrPQhDtNTBwBgNVHR8EaTBnMGWgY6Bhhl9odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp\r\nb3BzL2NybC9NaWNyb3NvZnQlMjBFQ0MlMjBSb290JTIwQ2VydGlmaWNhdGUlMjBBdXRob3JpdHkl\r\nMjAyMDE3LmNybDCBrgYIKwYBBQUHAQEEgaEwgZ4wbQYIKwYBBQUHMAKGYWh0dHA6Ly93d3cubWlj\r\ncm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwRUNDJTIwUm9vdCUyMENlcnRpZmlj\r\nYXRlJTIwQXV0aG9yaXR5JTIwMjAxNy5jcnQwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1p\r\nY3Jvc29mdC5jb20vb2NzcDAKBggqhkjOPQQDAwNpADBmAjEAqmOiZxjGsxctrbBUl44sc6J3BUgv\r\n6dGP+JMAtr0YZtEQgtBRNBvMVxvJ9MGgySgNAjEA99C2jHSJwT0GHHGKu1jQsbyjFHhJM0QNz70b\r\n4090jtOYtaUptuK/uOjYBBhu5nME\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"-----BEGIN CERTIFICATE-----\r\nMIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG\r\nEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw\r\nHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjky\r\nMzU5NTlaMFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRp\r\nZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEB\r\nBQADggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEVcNsSAPon\r\nCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDyFuqrIvAxIhFhaZAmunjZ\r\nlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyI\r\nxfQTnJcVPAPooTncaQwywa8WV0yUR0J8osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr\r\n0UxJqyRewg2C/Uaoq2yTzGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+\r\nMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8GA1Ud\r\nIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr\r\nBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2Nz\r\ncC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9E\r\naWdpQ2VydEdsb2JhbFJvb3RHMi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGln\r\naWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC\r\nATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG9w0BAQsFAAOC\r\nAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+twcW1BSAuWdH/SvWgKtiwla3J\r\nLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVSslme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1\r\njs+aWNJXMX43AYGyZm0pGrFmCW3RbpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS\r\n58aI7Dd8KvvwVVo4chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZ\r\nkiMNJCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"backupRetentionPeriodInHours":24,"prometheusEndpoint":{"ipAddress":"10.0.0.4"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[{"ipAddress":"10.0.0.5"},{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"}],"cassandraAuditLoggingEnabled":false,"diagnosticSettingsId":"/SUBSCRIPTIONS/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/CLI_MANAGED_CASSANDRA2QNM3GJNUI66R3ZK4LRQBFAMCCHUF4RZDOBPQVZMVCQLLBFNB4IAJT/PROVIDERS/MICROSOFT.DOCUMENTDB/CASSANDRACLUSTERS/CLINGOHHN7","privateLinkAutoApproveSubscriptions":[],"scheduledEventStrategy":"Ignore"}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '91568' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:46 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 41AEAA8B5C7743979CFA4D1AC4604B66 Ref B: MNZ221060609049 Ref C: 2024-03-03T21:50:46Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2024-02-15-preview + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:47 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476557828&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=jUuEHXJjN2xQfEShZ9EVJL0sQh-4idsCzzb9VQZxX7WrFQmoa92dVs_W3deCelY7mzw8sZlfK5VYI0KD3ZBc5DTGzhSL9qqVpCf5AAMlDJrzhpo9oaf-2eCUAjQVGZFqDRxmIMNOpaDvAXB85vXVBJF0xHlm9kVtxEoFJkj3f_IFH-1SjinqqCKHb_FJBnO2QnGnVwBtZ7pqOA-y_JrVmUwLzXCgD2gqKwgyb1bvl93qcEK45-xRyvB-bo7nOv1ebEP9FTkuSmmCfHMG-uUZmG-ObrkZJWvvlG28C8DOeatidvEmwsFXfbcBwPjc4ut34dqjAcOEnNTbfasqdKmlsw&h=3I1oy89RsThv_UUpXYxvaUH6xIeWG5M-RaFh43RWhV8 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-msedge-ref: + - 'Ref A: 7233A07D12F749598487510164E68BAF Ref B: MNZ221060609037 Ref C: 2024-03-03T21:50:47Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Enqueued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:50:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 72641F3E11154310829DCDC29C984204 Ref B: MNZ221060608021 Ref C: 2024-03-03T21:50:47Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: DF629E8754F34F1A934B6F000E542746 Ref B: MNZ221060608039 Ref C: 2024-03-03T21:51:17Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:51:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 8AEE28E8BB29477CA4562BD4D290ECAB Ref B: MNZ221060610021 Ref C: 2024-03-03T21:51:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: A3F1BD9A40684B7F99B38DDCE728B1A3 Ref B: BL2AA2010204017 Ref C: 2024-03-03T21:52:18Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:52:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 66A8B76FBB0A499DBE2B04362E1C9219 Ref B: BL2AA2010201047 Ref C: 2024-03-03T21:52:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:53:17 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B47890E4FDFF46589EF6F26B5F2694C6 Ref B: BL2AA2030104039 Ref C: 2024-03-03T21:53:18Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:53:47 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 93B4CA0739D54502A6CBB42FDB2E17AE Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:53:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:54:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: B92EC4B23FC949D3BF1A29E8740DEF92 Ref B: BL2AA2010203005 Ref C: 2024-03-03T21:54:18Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:54:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: C1B75A8B7F2D4BBF921CCD00BF524951 Ref B: BL2AA2030102049 Ref C: 2024-03-03T21:54:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:55:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 37090324829C4516B2ED7BD2AF3A1A87 Ref B: BL2AA2010205029 Ref C: 2024-03-03T21:55:18Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:55:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 35E98F3F1E884454928EB0943F30C588 Ref B: BL2AA2010205033 Ref C: 2024-03-03T21:55:48Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:56:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 2D0FBD24D2BE4888942E3393B73C66E9 Ref B: BL2AA2010203025 Ref C: 2024-03-03T21:56:19Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:56:49 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 6B41916894134E85BE1280342CDB4C12 Ref B: BL2AA2030101045 Ref C: 2024-03-03T21:56:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:57:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: F0A1428A1FDC47F69E6A8177AD95FACE Ref B: BL2AA2010201007 Ref C: 2024-03-03T21:57:19Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:57:48 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: 234E18CA377B43F7A01FB2D9A9780327 Ref B: BL2AA2010202037 Ref C: 2024-03-03T21:57:49Z' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - managed-cassandra cluster delete + Connection: + - keep-alive + ParameterSetName: + - -c -g --yes + User-Agent: + - AZURECLI/2.57.0 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/eea46e5a-704c-4ac1-9c9e-b5253b793212?api-version=2024-02-15-preview&t=638450994476401576&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jn7UT4tb_mZLXEawEdkszAAqYLxcDbSeQr4scYzowHKTCH6Ry0BVCDlsgeSFy7henT1jowigpLjY6G3li82dzrytIlevfsUmLKO0VT3N-AA8_OGichWBXaoCqLjEFahBvaU3f_69vAVq2Bj873eNVhgJtXd5e-mRe8ku7sUtAwTtnRqURN5PVNf-F0CTKBRmGZPXbRJK99CLcOSb0JKAAsp2z13BPlRSYRPHw4Yzuugg7LwQiEMNpJXTCOvj1bV0yjcOk4r17c3FCGHbw2eEGtqCkbRSHgNvmPf-I7A5pomam5ydIw3A5gTrDory7OEIb95597nBpO8IoNrBWUH6BQ&h=-Y1f-YeWj1HsL98BR7oV_ClU5L1bfyNSZYZkHJXg8Ew + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Sun, 03 Mar 2024 21:58:18 GMT + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.14.0 + x-msedge-ref: + - 'Ref A: D2349154747E4D269BD55E23EFA89703 Ref B: MNZ221060609049 Ref C: 2024-03-03T21:58:19Z' + status: + code: 200 + message: Ok +version: 1